laminardiffusionflame/0.org/U
2019-02-18 06:55:20 +09:00

84 lines
2 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;
format ascii;
class volVectorField;
location "0";
object U;
}
dimensions [ 0 1 -1 0 0 0 0 ];
internalField uniform ( 0 0 0 );
boundaryField
{
nzLow
{
type uniformFixedValue;
uniformValue table
(
(0.0 (0 0.2 0))
(0.06 (0 0.2 0))
(0.2 ( 0.0 2 0 ))
);
// value uniform ( 0.0 4.34682536445 0 );
}
nzUpp
{
type fixedValue;
value uniform ( 0 -0.2 0 );
}
coLow
{
type uniformFixedValue;
uniformValue table
(
(0.0 (0 0.2 0))
(0.3 (0 0.2 0))
(0.5 ( 0.0 4.34682536445 0 ))
);
// type fixedValue;
// value uniform ( 0.0 4.34682536445 0 );
}
coUpp
{
type fixedValue;
value uniform ( 0 -0.2 0 );
}
waLow
{
type slip;
}
waUpp
{
type slip;
}
outlet
{
type pressureInletOutletVelocity;
value uniform ( 0 0 0 );
}
front
{
type wedge;
}
back
{
type wedge;
}
axis
{
type empty;
}
}
// ************************************************************************* //