Files
openfoam/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/0.orig/nut
2017-06-14 14:15:22 +02:00

51 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: plus-overset |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [ 0 2 -1 0 0 0 0 ];
internalField uniform 0;
boundaryField
{
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
"(walls|hole)"
{
type nutkWallFunction;
value uniform 0;
}
// left1
// {
// type calculated;
// value uniform 0;
// }
//
// right1
// {
// type calculated;
// value uniform 0;
// }
overset
{
type overset;
}
}
// ************************************************************************* //