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

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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