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

added scoping

parent 2c48a69e
No related branches found
No related tags found
No related merge requests found
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: dev |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
...@@ -23,17 +23,17 @@ boundaryField ...@@ -23,17 +23,17 @@ boundaryField
{ {
floor floor
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0.01; value uniform 0.01;
} }
ceiling ceiling
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0.01; value uniform 0.01;
} }
fixedWalls fixedWalls
{ {
type epsilonWallFunction; type compressible::epsilonWallFunction;
value uniform 0.01; value uniform 0.01;
} }
} }
......
/*--------------------------------*- C++ -*----------------------------------*\ /*--------------------------------*- C++ -*----------------------------------*\
| ========= | | | ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 | | \\ / O peration | Version: dev |
| \\ / A nd | Web: http://www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile FoamFile
...@@ -23,17 +23,17 @@ boundaryField ...@@ -23,17 +23,17 @@ boundaryField
{ {
floor floor
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0.1; value uniform 0.1;
} }
ceiling ceiling
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0.1; value uniform 0.1;
} }
fixedWalls fixedWalls
{ {
type kQRWallFunction; type compressible::kQRWallFunction;
value uniform 0.1; value uniform 0.1;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment