Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
64242fc0
Commit
64242fc0
authored
Nov 21, 2019
by
Kutalmis Bercin
Browse files
TUT: generalise planarPoiseuille for all laminar models (#1509)
parent
be235787
Changes
6
Hide whitespace changes
Inline
Side-by-side
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/Allclean
View file @
64242fc0
...
...
@@ -4,8 +4,7 @@ cd "${0%/*}" || exit # Run from this directory
#------------------------------------------------------------------------------
cleanCase
rm
-rf
*
.dat validation/
*
.eps
rm
-rf
*
.
{
dat,png,txt
}
system/controlDict constant/turbulenceProperties results
wclean validation/WatersKing
#------------------------------------------------------------------------------
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/Allrun
View file @
64242fc0
#!/bin/sh
cd
"
${
0
%/*
}
"
||
exit
# Run from this directory
.
${
WM_PROJECT_DIR
:?
}
/bin/tools/RunFunctions
# Tutorial run functions
.
${
WM_PROJECT_DIR
:?
}
/bin/tools/CleanFunctions
# Tutorial clean functions
#------------------------------------------------------------------------------
runApplication blockMesh
runApplication
$(
getApplication
)
models
=
"
Maxwell
Stokes
"
wmake validation/WatersKing
runApplication WatersKing
endTime
=
2
if
notTest
$@
then
endTime
=
25
fi
(
cd
validation
&&
./createGraph
)
#------------------------------------------------------------------------------
# Compute the case in 'serial' mode, and collect the data
#
# $1 = endTime
# $* = models
# ----
serialRun
()
{
endTime
=
$1
shift
1
models
=
$*
sed
"s|END_TIME|
$endTime
|g"
system/controlDict.template
\
>
system/controlDict
resultDir
=
"results"
runApplication blockMesh
wmake validation/WatersKing
for
model
in
$models
do
sed
"s|LAMINAR_MODEL|
$model
|g"
constant/turbulenceProperties.template
\
>
constant/turbulenceProperties
# Compute numerical data
runApplication
$(
getApplication
)
tail
-n
+4 postProcessing/probes/0/U |
\
tr
-s
" "
|
tr
-d
'('
|
cut
-d
" "
-f2-3
>
"
${
model
}
.txt"
# Collect numerical data
modelDir
=
"
$resultDir
/
$model
"
[
-d
"
$modelDir
"
]
||
mkdir
-p
"
$modelDir
"
mv
-f
postProcessing log.
*
"
$modelDir
"
cleanTimeDirectories
done
runApplication WatersKing
}
# Plot streamwise flow speed at y=1.0 [m] as a function of time
#
# $* = models
# ----
plot
()
{
# Require gnuplot
command
-v
gnuplot
>
/dev/null
||
{
echo
"gnuplot not found - skipping graph creation"
1>&2
exit
1
}
models
=
$*
endTime
=
$(
foamDictionary
-entry
endTime
-value
system/controlDict
)
gnuplot
<<
PLT
set terminal pngcairo font "helvetica,16" size 800,600
set output "planarPoiseuille.png"
set grid
set key right top
set xrange [0:"
$endTime
"]
set yrange [0:8]
set xlabel "t [s]"
set ylabel "U_x [m/s]" rotate by 0 offset 3,0,0
results=system("ls *.txt")
names="
${
models
[*]
}
"
plot
\
"WatersKing.dat" w lines t "Analytical" lt -1,
\
for [i=1:words(results)] word(results, i) t word(names, i)
\
w linespoints pointinterval 100 lt i pt 6 ps 1.5
PLT
}
#------------------------------------------------------------------------------
serialRun
$endTime
$models
plot
$models
#------------------------------------------------------------------------------
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/constant/turbulenceProperties
→
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/constant/turbulenceProperties
.template
View file @
64242fc0
...
...
@@ -18,7 +18,7 @@ simulationType laminar;
laminar
{
laminarModel
Maxwell
;
laminarModel
LAMINAR_MODEL
;
MaxwellCoeffs
{
...
...
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict
→
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/controlDict
.template
View file @
64242fc0
...
...
@@ -22,7 +22,7 @@ startTime 0;
stopAt endTime;
endTime
25
;
endTime
END_TIME
;
deltaT 5e-3;
...
...
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/fvSchemes
View file @
64242fc0
...
...
@@ -27,13 +27,12 @@ gradSchemes
divSchemes
{
default none;
div(phi,U) Gauss linearUpwind grad(U);
div(phi,sigma) Gauss vanAlbada;
div(sigma) Gauss linear;
div((nu*dev2(T(grad(U))))) Gauss linear;
div((nuM*grad(U))) Gauss linear;
div((nuEff*dev2(T(grad(U))))) Gauss linear;
}
laplacianSchemes
...
...
tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/validation/createGraph
deleted
100755 → 0
View file @
be235787
#!/bin/sh
tail
-n
+4 ../postProcessing/probes/0/U |
\
tr
-s
" "
|
tr
-d
'('
|
cut
-d
" "
-f2-3
>
../Numerical.dat
# Require gnuplot
command
-v
gnuplot
>
/dev/null
||
{
echo
"gnuplot not found - skipping graph creation"
1>&2
exit
1
}
gnuplot
<<
EOF
set terminal postscript eps color enhanced "Helvetica,20"
set output "planarPoiseuille.eps"
set xlabel "Time / [s]" font "Helvetica,24"
set ylabel "Velocity / [m/s]" font "Helvetica,24"
set grid
set key right top
set xrange [0:25]
set yrange [0:8]
plot
\
"../Numerical.dat" t "OpenFOAM (every 100 pts)"
\
with linespoints pointinterval 100 lt 1 pt 6 ps 1.5,
\
"../WatersKing.dat" with lines t "Analytical" lt -1
EOF
#------------------------------------------------------------------------------
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment