anisotropy/src/simple-cubic/0/U

42 lines
1.1 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;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
2021-02-18 15:28:14 +05:00
boundaryField
{
inlet
{
type pressureInletVelocity;
2021-02-20 14:59:59 +05:00
value uniform (0 0 0);
2021-02-18 15:28:14 +05:00
}
outlet
{
type zeroGradient;
2021-02-18 15:28:14 +05:00
}
wall
{
type fixedValue;
value uniform (0 0 0);
2021-02-18 15:28:14 +05:00
}
}
// ************************************************************************* //