Skip to content
Snippets Groups Projects
Commit caf3c353 authored by Henry Weller's avatar Henry Weller
Browse files

tutorials: Simplified the Allrun and Allclean scripts

parent 9cf419dc
No related branches found
No related tags found
No related merge requests found
Showing
with 8874 additions and 82 deletions
#!/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 \
-e s/"23 8"/"46 10"/g \
-e s/"19 8"/"40 10"/g \
-e s/"23 42\(.*\) 1 1)"/"46 76\1 2 1)"/g \
-e s/"4 42\(.*\) 1 1)"/"4 76\1 2 1)"/g \
-e s/"19 42\(.*\) 1 1)"/"40 76\1 2 1)"/g \
$blockMeshDict > temp.$$
mv temp.$$ $blockMeshDict
sed \
-e s/"\(deltaT[ \t]*\) 0.001;"/"\1 5e-04;"/g \
-e s/"\(endTime[ \t]*\) 1;"/"\1 0.4;"/g \
$controlDict > temp.$$
mv temp.$$ $controlDict
}
# Do damBreak
(
cd damBreak || exit
runApplication blockMesh
cp 0/alpha.water.org 0/alpha.water
runApplication setFields
runApplication `getApplication`
)
# Clone case
cloneCase damBreak damBreakFine
(
cd damBreakFine || exit
# Modify case
setDamBreakFine
# And execute
runApplication blockMesh
cp ../damBreak/0/alpha.water.org 0/alpha.water
runApplication setFields
runApplication decomposePar
runParallel `getApplication`
runApplication reconstructPar
)
# Do capillaryRise
(cd capillaryRise && foamRunTutorials)
# Do mixerVessel2D
(cd mixerVessel2D && foamRunTutorials)
# ----------------------------------------------------------------- end-of-file
This diff is collapsed.
...@@ -4,12 +4,12 @@ cd ${0%/*} || exit 1 # Run from this directory ...@@ -4,12 +4,12 @@ cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions # Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions . $WM_PROJECT_DIR/bin/tools/CleanFunctions
keepCases="damBreak capillaryRise mixerVessel2D" keepCases="damBreak"
loseCases="damBreakFine" loseCases="damBreakFine"
for case in $keepCases for case in $keepCases
do do
(cd $case && foamCleanTutorials && rm -rf 0/alpha.water) (cd $case && foamCleanTutorials)
done done
for case in $loseCases for case in $loseCases
......
...@@ -43,13 +43,4 @@ cloneCase damBreak damBreakFine ...@@ -43,13 +43,4 @@ cloneCase damBreak damBreakFine
runApplication reconstructPar runApplication reconstructPar
) )
# Do damBreakPorousBaffle
(cd damBreakPorousBaffle && foamRunTutorials)
# Do weirOverflow
(cd weirOverflow && foamRunTutorials)
# Do waterChannel
(cd waterChannel && foamRunTutorials)
# ----------------------------------------------------------------- end-of-file # ----------------------------------------------------------------- end-of-file
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
cp 0/alpha.water.org 0/alpha.water
# ----------------------------------------------------------------- end-of-file
#!/bin/sh #!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial run functions # Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions . $WM_PROJECT_DIR/bin/tools/RunFunctions
for caseName in periodicCubeArgon periodicCubeWater # Get application name
do application=`getApplication`
(
cd $caseName || exit runApplication blockMesh
runApplication setFields
runApplication $application
runApplication blockMesh
runApplication mdInitialise
runApplication `getApplication`
)
done
# ----------------------------------------------------------------- end-of-file # ----------------------------------------------------------------- end-of-file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment