With the -noFields option the mesh is subset but the fields are not changed. This is useful when the field fields have been created to correspond to the mesh after the mesh subset.
26 lines
583 B
Bash
Executable File
26 lines
583 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 -s 1 topoSet
|
|
|
|
runApplication subsetMesh -overwrite c0 -patch floatingObject -noFields
|
|
|
|
runApplication -s selectBottom \
|
|
topoSet -dict system/topoSetDict-selectBottom
|
|
|
|
runApplication createPatch -overwrite
|
|
|
|
cp -r 0.orig 0 > /dev/null 2>&1
|
|
|
|
runApplication $application
|
|
|
|
#------------------------------------------------------------------------------
|