Converting tutorial basic/laplacianFoam/twoBlocksMixingPlane to new mixing plane syntax

This commit is contained in:
Philippose Rajan 2013-08-19 23:01:38 +02:00
parent e8836c5a4f
commit f6b31402bf
3 changed files with 18 additions and 4 deletions

View file

@ -23,8 +23,10 @@ then
echo "Using pyFoamChangeMixingPlaneBoundary.py" echo "Using pyFoamChangeMixingPlaneBoundary.py"
pyFoamChangeMixingPlaneBoundary.py . mixpLeftOut \ pyFoamChangeMixingPlaneBoundary.py . mixpLeftOut \
--shadowPatch mixpRightIn \ --shadowPatch mixpRightIn \
--assembly both \ --zone mixpLeftOutZone \
--orientation dirY_spanZ \ --ribbonPatchDiscretisation bothPatches \
--ribbonPatchStackAxis Y \
--ribbonPatchSweepAxis Z \
--coordinateSystemType coordinateSystem \ --coordinateSystemType coordinateSystem \
--coordinateSystemOrigin "(0 0 0.005)" \ --coordinateSystemOrigin "(0 0 0.005)" \
--coordinateSystemE1 "(1 0 0)" \ --coordinateSystemE1 "(1 0 0)" \
@ -32,8 +34,10 @@ then
pyFoamChangeMixingPlaneBoundary.py . mixpRightIn \ pyFoamChangeMixingPlaneBoundary.py . mixpRightIn \
--shadowPatch mixpLeftOut \ --shadowPatch mixpLeftOut \
--assembly both \ --zone mixpRightInZone \
--orientation dirY_spanZ \ --ribbonPatchDiscretisation bothPatches \
--ribbonPatchStackAxis Y \
--ribbonPatchSweepAxis Z \
--coordinateSystemType coordinateSystem \ --coordinateSystemType coordinateSystem \
--coordinateSystemOrigin "(0 0 0.005)" \ --coordinateSystemOrigin "(0 0 0.005)" \
--coordinateSystemE1 "(1 0 0)" \ --coordinateSystemE1 "(1 0 0)" \
@ -43,6 +47,9 @@ else
cp constant/polyMesh/boundary.preconfigured constant/polyMesh/boundary cp constant/polyMesh/boundary.preconfigured constant/polyMesh/boundary
fi fi
echo "$caseName: Creating zones for the mixingPlane"
runApplicationAndReportOnError setSet -batch setBatch
runApplicationAndReportOnError setsToZones -noFlipMap
echo "$caseName: Creating the starting time directory" echo "$caseName: Creating the starting time directory"
cp -r 0_orig 0 cp -r 0_orig 0

View file

@ -0,0 +1,3 @@
faceSet mixpLeftOutZone new patchToFace mixpLeftOut
faceSet mixpRightInZone new patchToFace mixpRightIn
quit

View file

@ -52,4 +52,8 @@ fluxRequired
T; T;
} }
mixingPlane
{
default zeroGradient;
}
// ************************************************************************* // // ************************************************************************* //