mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
#===================================================================#
|
|
# run settings for case
|
|
# Tim MJ Nijssen - September 2021
|
|
#===================================================================#
|
|
|
|
#- decide what run settings to use
|
|
if [ -z "$1" ]; then
|
|
#- ask runtype if not specified
|
|
echo "Please specify runtype (DEM/CFDDEM):"
|
|
read runType
|
|
else
|
|
#- use specified type
|
|
runType=$1
|
|
fi
|
|
|
|
#- check runType
|
|
if [ "$runType" == DEM ] || [ "$runType" == CFDDEM ]; then
|
|
echo "Running settings for $runType"
|
|
else
|
|
echo "Error: invalid runType"
|
|
read
|
|
fi
|
|
|
|
if [ "$runType" == DEM ]; then
|
|
#- DEM run settings
|
|
nrProcs="8"
|
|
runTitle="DEMrun"
|
|
headerText="$runTitle"
|
|
logfileName="log_DEM"
|
|
solverName="in.liggghts_init"
|
|
machineFileName="none" # yourMachinefileName | none
|
|
debugMode="off"
|
|
fi
|
|
|
|
if [ "$runType" == CFDDEM ]; then
|
|
#- CFDDEM run settings
|
|
nrProcs="8"
|
|
headerText="$runTitle"
|
|
logfileName="log_CFDDEM"
|
|
solverName="cfdemSolverMultiphaseScalar"
|
|
machineFileName="none" # yourMachinefileName | none
|
|
debugMode="off" # on | off| strict
|
|
testHarnessPath="$CFDEM_TEST_HARNESS_PATH"
|
|
fi
|