Files
Gerhard Holzinger 137a4e8670 Recurrence-based turbulence: test case
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.
2018-05-17 15:47:46 +02:00

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
#------------------------------------------------------------------------------