mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/air";
|
|
object nut;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 2 -1 0 0 0 0];
|
|
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
minX
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
maxX
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
minY
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
maxZ
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
air_to_floor
|
|
{
|
|
type nutkWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0;
|
|
}
|
|
air_to_solid
|
|
{
|
|
type nutkWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|