23 lines
611 B
Bash
Executable File
23 lines
611 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
runApplication blockMesh
|
|
|
|
runApplication topoSet
|
|
|
|
# Restore initial fields
|
|
restore0Dir
|
|
|
|
runApplication splitMeshRegions -cellZonesOnly -overwrite
|
|
|
|
runApplication setFields -region water
|
|
|
|
echo
|
|
echo "Use paraFoam -touch-all to create files for paraview post-processing"
|
|
echo
|
|
echo "End"
|
|
|
|
#------------------------------------------------------------------------------
|