The new automated <field>.orig reading has made 0.orig directories and associated scripting redundant.
21 lines
501 B
Bash
Executable File
21 lines
501 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ${0%/*} || exit 1 cd ${0%/*} || exit 1
|
|
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
cp \
|
|
$FOAM_TUTORIALS/resources/geometry/membrane-boundaries.stl.gz \
|
|
$FOAM_TUTORIALS/resources/geometry/membrane-membrane.stl.gz \
|
|
constant/triSurface
|
|
|
|
runApplication blockMesh
|
|
runApplication snappyHexMesh -overwrite
|
|
runApplication createBaffles -overwrite
|
|
|
|
runApplication setFields
|
|
|
|
runApplication reactingFoam
|
|
|
|
#------------------------------------------------------------------------------
|