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

omegaInlet      631.1995;

mixingLengthInlet 0.00343;

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

internalField   uniform $omegaInlet;

boundaryField
{
    exposed1   
    {    
        type            omegaWallFunction;
        value           $internalField;
    }

    exposed2 
    {    
        type            omegaWallFunction;
        value           $internalField;
    }
	
    wallRhoC    
    {   
        type            omegaWallFunction;
        value           $internalField;
    }
    
    front     
    {
	type            empty; 
    }
   
    back 
    {
	type            empty;  	
    }
	
    wall
    {
	type            omegaWallFunction;
        value           $internalField;
    }

    inlet
    {
        type            turbulentMixingLengthFrequencyInlet;
        value           uniform $omegaInlet;
        mixingLength    $mixingLengthInlet;
    }
	
    outlet
    {
        type            inletOutlet;
        value           uniform $omegaInlet;
        inletValue      uniform $omegaInlet;
    }
}

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