67 lines
1.4 KiB
Text
67 lines
1.4 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.4 |
|
||
|
| \\ / A nd | Web: http://www.openfoam.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class volScalarField;
|
||
|
object T;
|
||
|
}
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
|
||
|
dimensions [0 0 0 0 1 0 0];
|
||
|
|
||
|
internalField uniform 0;
|
||
|
|
||
|
boundaryField
|
||
|
{
|
||
|
ibCylinder
|
||
|
{
|
||
|
type immersedBoundary;
|
||
|
refValue uniform 0;
|
||
|
refGradient uniform 0;
|
||
|
fixesValue no;
|
||
|
value uniform 0;
|
||
|
|
||
|
setDeadCellValue yes;
|
||
|
deadCellValue 0;
|
||
|
}
|
||
|
in
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform 1;
|
||
|
}
|
||
|
out
|
||
|
{
|
||
|
type zeroGradient;
|
||
|
}
|
||
|
|
||
|
top
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform 0;
|
||
|
}
|
||
|
|
||
|
bottom
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform 0;
|
||
|
}
|
||
|
|
||
|
frontAndBack
|
||
|
{
|
||
|
type empty;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|