mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
- this corresponds to 'never match', which may be useful in combination
with -constant selection.
Eg,
surfaceMeshTriangulate -constant -time none
selects only the constant entry and suppresses any automatic time loop
STYLE: adjust help for the standard -times option
- indicate that times can be comma or space separated, since this is
otherwise not apparent. Don't mention semicolon separators in the help
since that just adds even more clutter.
28 lines
786 B
Bash
Executable File
28 lines
786 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
|
|
|
runApplication blockMesh
|
|
runApplication transformPoints -scale '(1.6666 1 1)'
|
|
|
|
runApplication changeDictionary -instance system -dict system/changeDictionaryDict.X
|
|
runApplication mirrorMesh -overwrite
|
|
rm -f log.mirrorMesh
|
|
rm -f log.changeDictionary
|
|
|
|
runApplication changeDictionary -instance system -dict system/changeDictionaryDict.Y
|
|
runApplication mirrorMesh -overwrite
|
|
|
|
restore0Dir
|
|
|
|
runApplication topoSet
|
|
|
|
runApplication createPatch -overwrite
|
|
|
|
runApplication surfaceMeshTriangulate \
|
|
-patches hole ppGeometry.vtp -constant -time none
|
|
|
|
echo "End"
|
|
|
|
#------------------------------------------------------------------------------
|