#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions# Convert mesh from resources directory
runApplication star4ToFoam -scale 1 \r
$FOAM_TUTORIALS/resources/geometry/nacaAirfoil/nacaAirfoil# Symmetry plane -> empy
sed -i -e ‘s/symmetry([)]*;)/empty1/’ constant/polyMesh/boundary# Don’t need these extra files (from star4ToFoam conversion)
rm -f \r
constant/cellTable \r
constant/polyMesh/cellTableId \r
constant/polyMesh/interfaces \r
constant/polyMesh/origCellId > /dev/null 2>&1if isParallel “$@”
then# Parallel
runApplication decomposePar
runParallel $(getApplication)else
# Serial
runApplication $(getApplication)fi
#——————————————————————————
実行年月:05/01/2017