diff --git a/tutorial/0/alphat b/tutorial/0/alphat new file mode 100644 index 0000000000000000000000000000000000000000..5dbd1d739e7ed5799deab383a35270bd059c3cc6 --- /dev/null +++ b/tutorial/0/alphat @@ -0,0 +1,59 @@ +/*--------------------------------*- 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 volScalarField; + object alphat; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [1 -1 -1 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + inlet + { + type calculated; + value uniform 0; + } + + outlet + { + type calculated; + value uniform 0; + } + + top + { + type compressible::alphatWallFunction; + value $internalField; + } + + axis + { + type empty; + } + + front + { + type wedge; + } + + back + { + type wedge; + } + +} + + +// ************************************************************************* //