diff --git a/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/plot_data.m b/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/CFD/octave/plot_data.m similarity index 69% rename from tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/plot_data.m rename to tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/CFD/octave/plot_data.m index 32d48a75..660a7b61 100644 --- a/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/plot_data.m +++ b/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/CFD/octave/plot_data.m @@ -3,10 +3,10 @@ clc; %% Script to plot the angular velocities and the particle positions -A = importdata('DEM/angular_velocity_no_coupling.txt',' ',1); -B = importdata('DEM/position_no_coupling.txt',' ',1); -C = importdata('DEM/angular_velocity.txt',' ',1); -D = importdata('DEM/position.txt',' ',1); +A = importdata('../../DEM/post/angular_velocity_no_coupling.txt',' ',1); +B = importdata('../../DEM/post/position_no_coupling.txt',' ',1); +C = importdata('../../DEM/post/angular_velocity.txt',' ',1); +D = importdata('../../DEM/post/position.txt',' ',1); pos1 = B.data(); omega1 = A.data(); diff --git a/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/parCFDDEMrun.sh b/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/parCFDDEMrun.sh index c06a1e8a..8b1c61ac 100644 --- a/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/parCFDDEMrun.sh +++ b/tutorials/cfdemSolverIBTorque/falling_sphere_two_way_coupling/parCFDDEMrun.sh @@ -23,7 +23,7 @@ nrProcs="4" machineFileName="none" # yourMachinefileName | none debugMode="off" # on | off| strict testHarnessPath="$CFDEM_TEST_HARNESS_PATH" -runOctave="true" +runOctave="false" postproc="false" #--------------------------------------------------------------------------------# @@ -60,7 +60,7 @@ if [ $postproc == "true" ] fi #- copy log file to test harness -cp ../../$logfileName $testHarnessPath +cp $casePath/$logfileName $testHarnessPath #- clean up case echo "deleting data at: $casePath"