mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
added scoping
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user