/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2306                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include        "include/initialConditions"

dimensions      [0 0 -1 0 0 0 0];

internalField   uniform $turbulentOmega;

boundaryField
{
    #includeEtc "caseDicts/setConstraintTypes"

	"(inletPipe|inletCapillary)"
	{
		type			fixedValue;
		value			$internalField;
	}
	
    outletPipe
    {
        type            inletOutlet;
        inletValue      $internalField;
        value           $internalField;
    }

    "(wallPipe|latticeStructure|left|right|top|bottom)"
    {
        type            omegaWallFunction;
        value           $internalField;
    }
}


// ************************************************************************* //
