anisotropy/openfoam/template/0/U

59 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-02-18 15:28:14 +05:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
2021-02-18 15:28:14 +05:00
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
2021-02-26 13:32:59 +05:00
internalField uniform (0 0 0);
2021-02-18 15:28:14 +05:00
boundaryField
{
inlet
{
type fixedValue;
2021-03-01 16:06:53 +05:00
value uniform (0 0 -6e-5);
2021-02-18 15:28:14 +05:00
}
outlet
{
type zeroGradient;
2021-02-18 15:28:14 +05:00
}
symetryPlane
{
type fixedValue;
value uniform (0 0 0);
}
2021-02-18 15:28:14 +05:00
wall
{
type fixedValue;
value uniform (0 0 0);
2021-02-18 15:28:14 +05:00
}
2021-06-20 18:04:12 +05:00
strips
{
type fixedValue;
value uniform (0 0 0);
}
defaultFaces
{
type fixedValue;
value uniform (0 0 0);
}
2021-02-18 15:28:14 +05:00
}
2021-02-18 15:28:14 +05:00
// ************************************************************************* //