damBreak

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory

# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions

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 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 temp.$$ $controlDict
}

# Do damBreak
(cd damBreak && foamRunTutorials)

# Clone case
cloneCase damBreak damBreakFine

(
cd damBreakFine || exit

# Modify case
setDamBreakFine
cp ../damBreak/0/alpha.water.orig 0/alpha.water
# And execute
runApplication blockMesh
runApplication setFields
runApplication decomposePar
runParallel $(getApplication)
runApplication reconstructPar
)

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

実行年月:10/01/2020