mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: handle partially attached master/slave faces (issue #608)
- addresses problems if faces are already partly attached (eg, on a single vertex or along an edge).
This commit is contained in:
50
tutorials/mesh/stitchMesh/simple-cube1/scripts/stitch
Executable file
50
tutorials/mesh/stitchMesh/simple-cube1/scripts/stitch
Executable file
@ -0,0 +1,50 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # Run from this directory
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
||||
|
||||
[ "$#" -gt 0 ] || {
|
||||
echo "provide x, y, z or -all directions"
|
||||
exit 1
|
||||
}
|
||||
|
||||
unset optAll
|
||||
for dir
|
||||
do
|
||||
case "$dir" in
|
||||
-x | x) rm -rf 1 2 3 ;;
|
||||
-y | y) rm -rf 2 3 ;;
|
||||
-z | z) rm -rf 3 ;;
|
||||
-all | all)
|
||||
optAll=true
|
||||
rm -rf 1 2 3
|
||||
;;
|
||||
*)
|
||||
echo "provide x, y, z or -all directions"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ "$optAll" = true ]
|
||||
then
|
||||
set -- x y z
|
||||
fi
|
||||
|
||||
stitch()
|
||||
{
|
||||
local dir=$1
|
||||
stitchMesh -partial outer$dir inner$dir | tee log.stitch-$dir
|
||||
}
|
||||
|
||||
|
||||
for dir
|
||||
do
|
||||
case "$dir" in
|
||||
-x | x) [ -d 1 ] || stitch x;;
|
||||
-y | y) [ -d 2 ] || stitch y;;
|
||||
-z | z) [ -d 3 ] || stitch z;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
Reference in New Issue
Block a user