Skip to content
Snippets Groups Projects
Commit c0f131ea authored by mattijs's avatar mattijs
Browse files

added scoping

parent 93b5c53e
No related merge requests found
......@@ -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;
......@@ -23,20 +23,18 @@ boundaryField
{
floor
{
type epsilonWallFunction;
value uniform 0;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
ceiling
{
type epsilonWallFunction;
value uniform 0;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
fixedWalls
{
type epsilonWallFunction;
value uniform 0;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
}
......
......@@ -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;
......@@ -23,20 +23,18 @@ boundaryField
{
floor
{
type kQRWallFunction;
value uniform 0;
type compressible::kQRWallFunction;
value uniform 0.1;
}
ceiling
{
type kQRWallFunction;
value uniform 0;
type compressible::kQRWallFunction;
value uniform 0.1;
}
fixedWalls
{
type kQRWallFunction;
value uniform 0;
type compressible::kQRWallFunction;
value uniform 0.1;
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment