Files
OpenFOAM-12/tutorials/incompressible/simpleFoam/drivaerFastback/0/nut
2021-02-18 19:43:45 +00:00

49 lines
1.1 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField uniform 0;
boundaryField
{
inlet
{
type calculated;
value uniform 0;
}
freestream
{
type calculated;
value uniform 0;
}
wall
{
type nutUSpaldingWallFunction;
value uniform 0;
}
processor
{
type processor;
value uniform 0;
}
}
// ************************************************************************* //