Files
openfoam/tutorials/multiphase/driftFluxFoam/ras/tank3D/0/nut
OpenFOAM-admin 9fb26d59d3 GIT: Repo update
2014-12-11 08:35:10 +00:00

50 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.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
{
SYMP3
{
type slip;
}
INLE1
{
type calculated;
value $internalField;
}
"OUTL.*"
{
type calculated;
value $internalField;
}
"WALL.*"
{
type nutkWallFunction;
value $internalField;
}
}
// ************************************************************************* //