added scoping

This commit is contained in:
mattijs
2009-04-23 14:54:04 +01:00
parent 93b5c53ef4
commit c0f131eab5
2 changed files with 14 additions and 18 deletions

View File

@ -15,7 +15,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [ 0 2 -3 0 0 0 0 ]; dimensions [0 2 -3 0 0 0 0];
internalField uniform 0.01; internalField uniform 0.01;
@ -23,20 +23,18 @@ boundaryField
{ {
floor floor
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0; value uniform 0.01;
} }
ceiling ceiling
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0; value uniform 0.01;
} }
fixedWalls fixedWalls
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0; value uniform 0.01;
} }
} }

View File

@ -15,7 +15,7 @@ FoamFile
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [ 0 2 -2 0 0 0 0 ]; dimensions [0 2 -2 0 0 0 0];
internalField uniform 0.1; internalField uniform 0.1;
@ -23,20 +23,18 @@ boundaryField
{ {
floor floor
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0; value uniform 0.1;
} }
ceiling ceiling
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0; value uniform 0.1;
} }
fixedWalls fixedWalls
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0; value uniform 0.1;
} }
} }