The standard/previous general symmetry type is now named symmetry both in class and lookup name for consistency. The rigorous symmetryPlane type is needed for moving-mesh cases in which the motion it constrained by one or two planes.
52 lines
1.3 KiB
C++
52 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 kt;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 0 2 -2 0 0 0 0 ];
|
|
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type fixedValue;
|
|
value uniform 0;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 0;
|
|
value uniform 0;
|
|
}
|
|
up
|
|
{
|
|
type symmetry;
|
|
}
|
|
hole
|
|
{
|
|
type fixedValue;
|
|
value uniform 0;
|
|
}
|
|
frontAndBack
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|