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.
17 lines
443 B
Bash
Executable File
17 lines
443 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 -noFields
|
|
runApplication setFields
|
|
runApplication $application
|
|
|
|
#------------------------------------------------------------------------------
|