openfoam/tutorials/verificationAndValidation/atmosphericModels/atmForestStability/0.orig/leafAreaDensity
Kutalmis Bercin 1bc2ffad99 BUG: atm wall functions: fix double "value" entry issue (#1900)
STYLE: atm wall functions: use auto and bool types wherever possible
  TUT: atmosphericModels: changes for style consistency
2020-12-08 09:33:44 +00:00

43 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object leafAreaDensity;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 -1 0 0 0 0 0];
internalField uniform 0.14;
boundaryField
{
bottom
{
type fixedValue;
value $internalField;
}
top
{
type fixedValue;
value uniform 0;
}
"(inlet|outlet|left|right)"
{
type cyclic;
}
}
// ************************************************************************* //