The new automated <field>.orig reading has made 0.orig directories and associated scripting redundant.
17 lines
408 B
Bash
Executable File
17 lines
408 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`
|
|
|
|
runApplication blockMesh
|
|
runApplication topoSet
|
|
runApplication subsetMesh -overwrite c0 -patch floatingObject
|
|
|
|
runApplication $application
|
|
|
|
#------------------------------------------------------------------------------
|