mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
The test case consists of an initialisation part to build a small dataBase and a recurrence run. In the init case the kEpsilon turbulence model is used for the liquid phase. In the recurrence run the corresponding recurrence-based kEpsilon model "recurrenceKEpsilon" is used.
22 lines
369 B
Bash
Executable File
22 lines
369 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Set application name
|
|
application=`getApplication`
|
|
|
|
|
|
rm -rf 0
|
|
cp -r 0.org 0
|
|
|
|
./checkOrCreateMesh
|
|
|
|
./checkOrCreateDataBase
|
|
|
|
runApplication $application
|
|
|
|
|
|
#------------------------------------------------------------------------------
|