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.
14 lines
385 B
Bash
Executable File
14 lines
385 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication blockMesh
|
|
runApplication topoSet
|
|
runApplication subsetMesh -overwrite c0 -patch walls -noFields
|
|
runApplication setFields
|
|
runApplication $(getApplication)
|
|
|
|
#------------------------------------------------------------------------------
|