damBreak

#!/bin/sh
cd “${0%/*}” || exit # Run from this directory
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
#——————————————————————————

setDamBreakFine ()
{
blockMeshDict=”system/blockMeshDict”
controlDict=”system/controlDict”
sed \r
-e s/”23 8″/”46 10″/g \r
-e s/”19 8″/”40 10″/g \r
-e s/”23 42(.*) 1 1)”/”46 761 2 1)”/g \r
-e s/”4 42(.*) 1 1)”/”4 761 2 1)”/g \r
-e s/”19 42(.*) 1 1)”/”40 761 2 1)”/g \r
“$blockMeshDict” > temp.$$
mv -f temp.$$ “$blockMeshDict”
sed \r
-e s/”(deltaT[ ]*) 0.001;”/”1 5e-04;”/g \r
-e s/”(endTime[ ]*) 1;”/”1 0.4;”/g \r
“$controlDict” > temp.$$
mv -f temp.$$ “$controlDict”
}

# Do damBreak
(cd damBreak && foamRunTutorials)

if notTest “$@”
then
# Clone case
cloneCase damBreak damBreakFine

(
cd damBreakFine || exit

# Modify case
setDamBreakFine
restore0Dir
# And execute
runApplication blockMesh
runApplication setFields
runApplication decomposePar
runParallel $(getApplication)
runApplication reconstructPar
)
fi

#——————————————————————————

実行年月:08/01/2021