added scoping

This commit is contained in:
mattijs
2009-04-23 14:51:43 +01:00
parent 2c48a69e50
commit 93b5c53ef4
2 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -23,17 +23,17 @@ boundaryField
{
floor
{
type epsilonWallFunction;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
ceiling
{
type epsilonWallFunction;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
fixedWalls
{
type epsilonWallFunction;
type compressible::epsilonWallFunction;
value uniform 0.01;
}
}

View File

@ -1,8 +1,8 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.5 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
@ -23,17 +23,17 @@ boundaryField
{
floor
{
type kQRWallFunction;
type compressible::kQRWallFunction;
value uniform 0.1;
}
ceiling
{
type kQRWallFunction;
type compressible::kQRWallFunction;
value uniform 0.1;
}
fixedWalls
{
type kQRWallFunction;
type compressible::kQRWallFunction;
value uniform 0.1;
}
}