mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
29 lines
936 B
Bash
Executable File
29 lines
936 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Remove any small triangles (edges < 1e-4, sliver with Q < 1e-6) from surface
|
|
# (cvMesh will try to conform to every feature).
|
|
runApplication surfaceClean \
|
|
constant/triSurface/coneAndSphere.obj \
|
|
1e-4 1e-6 \
|
|
constant/triSurface/coneAndSphere_clean.obj
|
|
mv log.surfaceClean log.surfaceClean.coneAndSphere
|
|
# Orient so point to be meshed is inside surface
|
|
runApplication surfaceOrient \
|
|
constant/triSurface/coneAndSphere_clean.obj \
|
|
-inside '(0 -0.5 0)' \
|
|
constant/triSurface/coneAndSphere_clean_orient.obj
|
|
mv log.surfaceOrient log.surfaceOrient.coneAndSphere
|
|
|
|
unset FOAM_SIGFPE
|
|
|
|
# Generate aligned points (in constant/internalDelaunayVertices) and a
|
|
# mesh from that.
|
|
runApplication foamyHexMesh
|
|
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|