66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 4.x |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/Fluid";
|
|
object O2;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 0 0 0 0];
|
|
|
|
internalField uniform 0.233;
|
|
|
|
boundaryField
|
|
{
|
|
axis
|
|
{
|
|
type symmetryPlane;
|
|
}
|
|
mainjet
|
|
{
|
|
type fixedValue;
|
|
value uniform 0.1966623;
|
|
}
|
|
pilot
|
|
{
|
|
type fixedValue;
|
|
value uniform 0.0540244;
|
|
}
|
|
coflow
|
|
{
|
|
type fixedValue;
|
|
value uniform 0.233;
|
|
}
|
|
outlet
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
burnerwall
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
slipwall
|
|
{
|
|
type slip;
|
|
}
|
|
front
|
|
{
|
|
type wedge;
|
|
}
|
|
back
|
|
{
|
|
type wedge;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|