7167d46046
Using nutkWallFunction instead of nutWallFunction (this is abstract base now and nutkWallFunction is the same as previous nutWallFunction)
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 4.1 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0";
|
|
object nut;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 2 -1 0 0 0 0];
|
|
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
RUINLET
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
RUOUTLET
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
RUCYCLIC1
|
|
{
|
|
type cyclicGgi;
|
|
value uniform 0;
|
|
}
|
|
RUCYCLIC2
|
|
{
|
|
type cyclicGgi;
|
|
value uniform 0;
|
|
}
|
|
RUBLADE
|
|
{
|
|
type nutkWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0;
|
|
}
|
|
RUHUB
|
|
{
|
|
type nutkWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0;
|
|
}
|
|
RUSHROUD
|
|
{
|
|
type nutkWallFunction;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
value uniform 0;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|