Files
openfoam/etc/caseDicts/createZeroDirectoryTemplates/boundaryConditions/fluid/wall
2015-12-09 15:03:05 +00:00

65 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "templates";
object wall;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
noSlip
{
p
{
type zeroGradient;
}
nut
{
type calculated;
value ${:VALUE.nut};
}
OPTIONS (wallFunction motion);
}
slip
{
U
{
type slip;
}
p
{
type zeroGradient;
}
nut
{
type calculated;
value ${:VALUE.nut};
}
k
{
type zeroGradient;
}
epsilon
{
type zeroGradient;
}
omega
{
type zeroGradient;
}
}
// ************************************************************************* //