59 lines
1.4 KiB
Text
59 lines
1.4 KiB
Text
|
/*---------------------------------------------------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.2 |
|
||
|
| \\ / A nd | Web: http://www.openfoam.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
// Field Dictionary
|
||
|
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
|
||
|
root "/home/coyote/hjasak/OpenFOAM/hjasak-1.2/run/test";
|
||
|
case "cavity";
|
||
|
instance "0";
|
||
|
local "";
|
||
|
|
||
|
class volVectorField;
|
||
|
object U;
|
||
|
}
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
|
||
|
dimensions [0 1 -1 0 0 0 0];
|
||
|
|
||
|
internalField uniform (0 0 0);
|
||
|
|
||
|
boundaryField
|
||
|
{
|
||
|
in
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform (1 0 0);
|
||
|
}
|
||
|
|
||
|
out
|
||
|
{
|
||
|
type zeroGradient;
|
||
|
}
|
||
|
|
||
|
topAndBottom
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform (0 0 0);
|
||
|
}
|
||
|
|
||
|
frontAndBack
|
||
|
{
|
||
|
type empty;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|