95 lines
2.7 KiB
Bash
Executable File
95 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#===================================================================#
|
|
# allrun script for testcase as part of test routine
|
|
# run settlingTest CFD part
|
|
# Christoph Goniva - May. 2011
|
|
#===================================================================#
|
|
|
|
#- source CFDEM env vars
|
|
. ~/.bashrc
|
|
|
|
#- include functions
|
|
source $CFDEM_SRC_DIR/lagrangian/cfdemParticle/etc/functions.sh
|
|
|
|
#--------------------------------------------------------------------------------#
|
|
#- define variables
|
|
casePath="$(dirname "$(readlink -f ${BASH_SOURCE[0]})")"
|
|
logpath=$casePath
|
|
headerText="run_parallel_cfdemSolverPisoSTM_packedBedTempParScale_CFDDEM"
|
|
logfileName="log_$headerText"
|
|
solverName="cfdemSolverPisoSTM"
|
|
nrProcs="2"
|
|
machineFileName="none" # yourMachinefileName | none
|
|
debugMode="off" # on | off| strict
|
|
testHarnessPath="$CFDEM_TEST_HARNESS_PATH"
|
|
runOctave="true"
|
|
postproc="false"
|
|
cleanup="true"
|
|
#--------------------------------------------------------------------------------#
|
|
|
|
#- call function to run a parallel CFD-DEM case
|
|
parCFDDEMrun $logpath $logfileName $casePath $headerText $solverName $nrProcs $machineFileName $debugMode
|
|
|
|
#------------------------------#
|
|
if [ $runOctave == "true" ]
|
|
then
|
|
|
|
#- change path
|
|
cd octave
|
|
|
|
#- rmove old graph
|
|
rm *.png
|
|
|
|
#- run octave
|
|
octave --no-gui totalPressureDropAndNusselt.m
|
|
|
|
#- show plots
|
|
eog cfdemSolverPisoSTM_Nusselt.png &
|
|
eog cfdemSolverPisoSTM_pressureDrop.png
|
|
#------------------------------#
|
|
|
|
#- copy log file to test harness
|
|
cp ../../$logfileName $testHarnessPath
|
|
cp cfdemSolverPisoSTM_Nusselt.png $testHarnessPath
|
|
cp cfdemSolverPisoSTM_pressureDrop.png $testHarnessPath
|
|
|
|
fi
|
|
|
|
#-------------------------------------------------------#
|
|
if [ $postproc == "true" ]
|
|
then
|
|
|
|
#- keep terminal open (if started in new terminal)
|
|
echo "simulation finished? ...press enter to proceed"
|
|
read
|
|
|
|
#- get VTK data from liggghts dump file
|
|
cd $casePath/DEM/post
|
|
python -i $CFDEM_LPP_DIR/lpp.py dump.liggghts_run
|
|
|
|
#- get VTK data from CFD sim
|
|
cd $casePath/CFD
|
|
foamToVTK #- serial run of foamToVTK
|
|
#source $CFDEM_SRC_DIR/lagrangian/cfdemParticle/etc/functions.sh #- include functions
|
|
#pseudoParallelRun "foamToVTK" $nrPostProcProcessors #- pseudo parallel run of foamToVTK
|
|
|
|
#- start paraview
|
|
paraview
|
|
|
|
#- keep terminal open (if started in new terminal)
|
|
echo "...press enter to clean up case"
|
|
echo "press Ctr+C to keep data"
|
|
read
|
|
fi
|
|
|
|
#- clean up case
|
|
if [ $cleanup == "true" ]
|
|
then
|
|
#- clean up case
|
|
keepDEMrestart="false"
|
|
cleanCFDEMcase $casePath/CFD $keepDEMrestart
|
|
fi
|
|
|
|
|