mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Tutorials: updates to run with the latest developments
This commit is contained in:
@ -1,36 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
cd ${0%/*} || exit 1 # run from this directory
|
|
||||||
|
|
||||||
# Source tutorial clean functions
|
|
||||||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
||||||
|
|
||||||
cases=" \
|
|
||||||
shockTube \
|
|
||||||
wedge15Ma5 \
|
|
||||||
obliqueShock \
|
|
||||||
forwardStep \
|
|
||||||
LadenburgJet60psi \
|
|
||||||
biconic25-55Run35 \
|
|
||||||
"
|
|
||||||
|
|
||||||
for caseName in $cases
|
|
||||||
do
|
|
||||||
(
|
|
||||||
cd $caseName || exit
|
|
||||||
|
|
||||||
if [ "$caseName" = shockTube ]
|
|
||||||
then
|
|
||||||
rm -rf 0
|
|
||||||
cp -r 0.org 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
foamCleanTutorials && cleanSamples
|
|
||||||
|
|
||||||
if [ "$caseName" = "biconic25-55Run35" ]
|
|
||||||
then
|
|
||||||
rm -rf constant/polyMesh/boundary
|
|
||||||
fi
|
|
||||||
)
|
|
||||||
done
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------- end-of-file
|
|
||||||
@ -1,58 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
cd ${0%/*} || exit 1 # run from this directory
|
|
||||||
|
|
||||||
# Source tutorial run functions
|
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
||||||
|
|
||||||
cases=" \
|
|
||||||
shockTube \
|
|
||||||
wedge15Ma5 \
|
|
||||||
obliqueShock \
|
|
||||||
forwardStep \
|
|
||||||
LadenburgJet60psi \
|
|
||||||
biconic25-55Run35 \
|
|
||||||
"
|
|
||||||
|
|
||||||
moveTimeMeshToConstant()
|
|
||||||
{
|
|
||||||
DT=`foamInfoExec -times | tail -1`
|
|
||||||
if [ "$DT" != 0 ]
|
|
||||||
then
|
|
||||||
mv ${DT}/polyMesh/* constant/polyMesh
|
|
||||||
rm -rf ${DT}
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
for caseName in $cases
|
|
||||||
do
|
|
||||||
(
|
|
||||||
cd $caseName || exit
|
|
||||||
|
|
||||||
runApplication blockMesh
|
|
||||||
|
|
||||||
case "$caseName" in
|
|
||||||
shockTube)
|
|
||||||
runApplication setFields
|
|
||||||
;;
|
|
||||||
|
|
||||||
biconic25-55Run35)
|
|
||||||
runApplication datToFoam grid256.dat
|
|
||||||
|
|
||||||
CONST="constant"
|
|
||||||
cat $CONST/pointsHeader $CONST/points.tmp > $CONST/polyMesh/points
|
|
||||||
runApplication collapseEdges "2e-07" 5
|
|
||||||
moveTimeMeshToConstant
|
|
||||||
|
|
||||||
echo "Changing patch type to wedge type in boundary file"
|
|
||||||
mv $CONST/polyMesh/boundary $CONST/polyMesh/boundary.bak
|
|
||||||
sed -f $CONST/wedgeScr $CONST/polyMesh/boundary.bak > $CONST/polyMesh/boundary
|
|
||||||
rm $CONST/polyMesh/boundary.bak
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
runApplication `getApplication`
|
|
||||||
)
|
|
||||||
done
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------- end-of-file
|
|
||||||
@ -45,7 +45,7 @@ timePrecision 6;
|
|||||||
|
|
||||||
adjustTimeStep yes;
|
adjustTimeStep yes;
|
||||||
|
|
||||||
maxCo 0.5;
|
maxCo 0.4;
|
||||||
|
|
||||||
maxDeltaT 1;
|
maxDeltaT 1;
|
||||||
|
|
||||||
|
|||||||
@ -17,13 +17,13 @@ FoamFile
|
|||||||
|
|
||||||
application rhoPimpleFoam;
|
application rhoPimpleFoam;
|
||||||
|
|
||||||
startFrom startTime;
|
startFrom latestTime;
|
||||||
|
|
||||||
startTime 0;
|
startTime 0;
|
||||||
|
|
||||||
stopAt endTime;
|
stopAt endTime;
|
||||||
|
|
||||||
endTime 10;
|
endTime 0.3;
|
||||||
|
|
||||||
deltaT 1e-05;
|
deltaT 1e-05;
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@ solvers
|
|||||||
solver PCG;
|
solver PCG;
|
||||||
preconditioner DIC;
|
preconditioner DIC;
|
||||||
tolerance 1e-6;
|
tolerance 1e-6;
|
||||||
relTol 0;
|
relTol 0.01;
|
||||||
}
|
}
|
||||||
|
|
||||||
"(p|rho)Final"
|
"(p|rho)Final"
|
||||||
@ -36,7 +36,7 @@ solvers
|
|||||||
solver PBiCG;
|
solver PBiCG;
|
||||||
preconditioner DILU;
|
preconditioner DILU;
|
||||||
tolerance 1e-6;
|
tolerance 1e-6;
|
||||||
relTol 0;
|
relTol 0.01;
|
||||||
}
|
}
|
||||||
|
|
||||||
"(U|h|k|nuTilda)Final"
|
"(U|h|k|nuTilda)Final"
|
||||||
@ -49,7 +49,7 @@ solvers
|
|||||||
PIMPLE
|
PIMPLE
|
||||||
{
|
{
|
||||||
momentumPredictor yes;
|
momentumPredictor yes;
|
||||||
nOuterCorrectors 2;
|
nOuterCorrectors 3;
|
||||||
nCorrectors 1;
|
nCorrectors 1;
|
||||||
nNonOrthogonalCorrectors 0;
|
nNonOrthogonalCorrectors 0;
|
||||||
rhoMin rhoMin [ 1 -3 0 0 0 ] 0.5;
|
rhoMin rhoMin [ 1 -3 0 0 0 ] 0.5;
|
||||||
|
|||||||
@ -15,8 +15,15 @@ FoamFile
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
numberOfSubdomains 4;
|
numberOfSubdomains 2;
|
||||||
|
|
||||||
method ptscotch;
|
method hierarchical;
|
||||||
|
|
||||||
|
hierarchicalCoeffs
|
||||||
|
{
|
||||||
|
n (2 1 1);
|
||||||
|
delta 0.001;
|
||||||
|
order xyz;
|
||||||
|
}
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -15,19 +15,13 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
2
|
1
|
||||||
(
|
(
|
||||||
blob.stl_patch1
|
walls
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
nFaces 64564;
|
nFaces 638;
|
||||||
startFace 459986;
|
startFace 2948;
|
||||||
}
|
|
||||||
cvMesh_defaultPatch
|
|
||||||
{
|
|
||||||
type wall;
|
|
||||||
nFaces 0;
|
|
||||||
startFace 524550;
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
dimensions [ 1 -1 -2 0 0 0 0 ];
|
dimensions [1 -1 -2 0 0 0 0];
|
||||||
|
|
||||||
internalField uniform 0;
|
internalField uniform 0;
|
||||||
|
|
||||||
@ -53,7 +53,6 @@ boundaryField
|
|||||||
type porousBafflePressure;
|
type porousBafflePressure;
|
||||||
patchType cyclic;
|
patchType cyclic;
|
||||||
jump uniform 0;
|
jump uniform 0;
|
||||||
value uniform 0;
|
|
||||||
D 700;
|
D 700;
|
||||||
I 500;
|
I 500;
|
||||||
length 1.05;
|
length 1.05;
|
||||||
|
|||||||
@ -22,7 +22,7 @@ solvers
|
|||||||
solver PCG;
|
solver PCG;
|
||||||
preconditioner DIC;
|
preconditioner DIC;
|
||||||
tolerance 1e-07;
|
tolerance 1e-07;
|
||||||
relTol 0.1;
|
relTol 0.01;
|
||||||
}
|
}
|
||||||
|
|
||||||
p_rghFinal
|
p_rghFinal
|
||||||
|
|||||||
@ -22,7 +22,7 @@ solvers
|
|||||||
solver PCG;
|
solver PCG;
|
||||||
preconditioner DIC;
|
preconditioner DIC;
|
||||||
tolerance 1e-07;
|
tolerance 1e-07;
|
||||||
relTol 0.1;
|
relTol 0.01;
|
||||||
}
|
}
|
||||||
|
|
||||||
p_rghFinal
|
p_rghFinal
|
||||||
|
|||||||
Reference in New Issue
Block a user