Files
OpenFOAM-6/tutorials/mesh/foamyHexMesh/simpleShapes/Allrun
Chris Greenshields da6b1bf361 Surface utilities: standardised argument naming and ordering
for input and output surface files
2017-05-12 14:43:10 +01:00

33 lines
966 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 -s cone \
surfaceOrient constant/triSurface/cone.stl \
constant/triSurface/cone_orient.stl \
-inside '(0 -0.5 0)'
runApplication -s sphere \
surfaceOrient constant/triSurface/sphere.stl \
constant/triSurface/sphere_orient.stl \
-inside '(0 -0.5 0)'
runApplication \
surfaceBooleanFeatures \
constant/triSurface/cone_orient.stl \
constant/triSurface/sphere_orient.stl \
intersection
runApplication foamyHexMesh
runApplication -s collapseFaceSet \
collapseEdges -latestTime -collapseFaceSet indirectPatchFaces
runApplication -s collapseFaces \
collapseEdges -latestTime -collapseFaces
#------------------------------------------------------------------------------