Files
openfoam/tutorials/multiphase/interFoam/RAS/electrostaticDeposition/0.orig/nut
2021-11-24 18:05:58 +00:00

38 lines
1.1 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: 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 1e-05;
boundaryField
{
metalSheet
{
type nutkWallFunction;
value $internalField;
}
"side-.*"
{
type calculated;
value $internalField;
}
}
// ************************************************************************* //