ENH: caseDicts: add constraintTypes to pipeCyclic

This commit is contained in:
mattijs
2013-01-02 11:38:17 +00:00
parent 521797fa97
commit ab4ade1b1f
9 changed files with 32 additions and 30 deletions

View File

@ -11,6 +11,11 @@ cyclic
type cyclic; type cyclic;
} }
cyclicAMI
{
type cyclicAMI;
}
cyclicSlip cyclicSlip
{ {
type cyclicSlip; type cyclicSlip;

View File

@ -20,6 +20,9 @@ internalField uniform (1 0 0);
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type codedFixedValue; type codedFixedValue;
@ -48,11 +51,6 @@ boundaryField
type fixedValue; type fixedValue;
value uniform (0 0 0); value uniform (0 0 0);
} }
"side.*"
{
type cyclicAMI;
}
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -21,6 +21,9 @@ internalField uniform 1;
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type turbulentMixingLengthDissipationRateInlet; type turbulentMixingLengthDissipationRateInlet;
@ -39,11 +42,6 @@ boundaryField
type epsilonWallFunction; type epsilonWallFunction;
value uniform 0; value uniform 0;
} }
"side.*"
{
type cyclicAMI;
}
} }

View File

@ -21,6 +21,9 @@ internalField uniform 1;
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type turbulentIntensityKineticEnergyInlet; type turbulentIntensityKineticEnergyInlet;
@ -39,11 +42,6 @@ boundaryField
type kqRWallFunction; type kqRWallFunction;
value uniform 0; value uniform 0;
} }
"side.*"
{
type cyclicAMI;
}
} }

View File

@ -20,6 +20,9 @@ internalField uniform 0;
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type zeroGradient; type zeroGradient;
@ -34,11 +37,6 @@ boundaryField
{ {
type zeroGradient; type zeroGradient;
} }
"side.*"
{
type cyclicAMI;
}
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -21,6 +21,9 @@ internalField uniform 0;
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type calculated; type calculated;
@ -38,11 +41,6 @@ boundaryField
type nutkWallFunction; type nutkWallFunction;
value $internalField; value $internalField;
} }
"side.*"
{
type cyclicAMI;
}
} }

View File

@ -20,6 +20,9 @@ internalField uniform 0;
boundaryField boundaryField
{ {
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
inlet inlet
{ {
type zeroGradient; type zeroGradient;
@ -35,11 +38,6 @@ boundaryField
{ {
type zeroGradient; type zeroGradient;
} }
"side.*"
{
type cyclicAMI;
}
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -36,4 +36,6 @@ cp -r 0.org 0
runApplication decomposePar -cellDist runApplication decomposePar -cellDist
runParallel $application 5 runParallel $application 5
runApplication reconstructPar
# ----------------------------------------------------------------- end-of-file # ----------------------------------------------------------------- end-of-file

View File

@ -15,6 +15,13 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs
(
"libOpenFOAM.so"
"libincompressibleTurbulenceModel.so"
"libincompressibleRASModels.so"
);
application simpleFoam; application simpleFoam;
startFrom startTime; startFrom startTime;