diff --git a/tutorial/0/U b/tutorial/0/U new file mode 100644 index 0000000000000000000000000000000000000000..d4a31b34137cf4eb72e24aa086b3e55f4931d45f --- /dev/null +++ b/tutorial/0/U @@ -0,0 +1,58 @@ +/*--------------------------------*- 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); + +boundaryField +{ + inlet + { + type pressureInletOutletVelocity; + value $internalField; + } + + outlet + { + type zeroGradient; + } + + + top + { + type noSlip; + } + + + axis + { + type empty; + } + + front + { + type wedge; + } + + back + { + type wedge; + } + +} + +// ************************************************************************* //