rhoPimpleFoam: Added run-time selectable LTS support replacing rhoLTSPimpleFoam

Select LTS via the ddtScheme:

        ddtSchemes
        {
            default         localEuler rDeltaT;
        }
This commit is contained in:
Henry Weller
2015-06-27 22:08:43 +01:00
parent 60cffb2fc3
commit 4180b6857d
37 changed files with 189 additions and 1327 deletions

View File

@ -17,39 +17,39 @@ FoamFile
dimensions [1 -1 -1 0 0 0 0];
internalField uniform 0;
internalField uniform 1e-3;
boundaryField
{
front
{
type compressible::alphatWallFunction;
value uniform 0;
value $internalField;
}
back
{
type compressible::alphatWallFunction;
value uniform 0;
value $internalField;
}
walls
{
type compressible::alphatWallFunction;
value uniform 0;
value $internalField;
}
porosityWall
{
type compressible::alphatWallFunction;
value uniform 0;
value $internalField;
}
inlet
{
type calculated;
value uniform 0;
value $internalField;
}
outlet
{
type calculated;
value uniform 0;
value $internalField;
}
}