LTS is selected by the ddt scheme e.g. in the tutorials/multiphase/interFoam/ras/DTCHull case: ddtSchemes { default localEuler rDeltaT; } LTSInterFoam is no longer needed now that interFoam includes LTS support.
18 lines
544 B
Bash
Executable File
18 lines
544 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
# remove surface
|
|
\rm -f constant/triSurface/DTC-scaled.stl.gz > /dev/null 2>&1
|
|
\rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
|
|
\rm -f constant/triSurface/DTC-scaled.eMesh > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
\rm constant/polyMesh/boundary > /dev/null 2>&1
|
|
\rm -rf 0 > /dev/null 2>&1
|
|
\rm system/topoSetDict > /dev/null 2>&1
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|