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.
28 lines
461 B
Bash
Executable File
28 lines
461 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
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication renumberMesh -overwrite
|
|
|
|
cp -r 0.org 0
|
|
|
|
tar -xf ../../initFields.tar.xz
|
|
|
|
cp initFields/* 0/
|
|
|
|
runApplication $application
|
|
|
|
./createDataBase
|
|
|
|
#------------------------------------------------------------------------------
|