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

boundary
{
    inlet 
    {
        type        patch;
    }
    outlet
    {
        type        patch;
    }
    frontAndBack
    {
        type        empty;
    }    
    solidWall2
    {
        type        wall;
    }
    

}

cellToRegion
{
    internalField   uniform 0;

boundaryField
{
    frontAndBack
    {
        type            empty;
    }
}
}
U
{
    internalField   uniform (0 0 0);

    boundaryField
    {
        ".*"
        {
            type            noSlip;
        }
        "procBoundary.*"
        {
            type            processor;
        }
	inlet
        {
            type            pressureInletVelocity;
            inletValue      uniform (0 0 0);
	     phi		    phi;
        }

        outlet
        {
            type            inletOutlet;
            inletValue      uniform (0 0 0);
	    pho		    phi;
        }
	frontAndBack
    	{
            type        empty;
    	}    
    }
}

T
{
    internalField   uniform 296;

    boundaryField
    {

	inlet
        {
            type            totalTemperature;//fixedValue;
            T0		     $internalField;
            gamma	     1.4;
        }

        outlet
        {
            type            inletOutlet;
            inletValue      $internalField;
	    value	    $internalField;
        }

        "procBoundary.*"
        {
            type            processor;
        }

        "fluid_to_.*"
        {
            type            compressible::turbulentTemperatureRadCoupledMixed;//BaffleMixed;
            Tnbr            T;
            kappaMethod     fluidThermo;
            value           $internalField;
            qrNbr           none;
            qr              qr;
        }
        frontAndBack
    	{
            type        empty;
    	}
	solidWall2
	{
		type            zeroGradient;
	}
    }
}



p_rgh
{
    internalField   uniform 101325;

    boundaryField
    {

	inlet
        {
            type            prghTotalPressure;
	    gamma		1.4;
	    p0		$internalField;
            value           $internalField;;
        }

        outlet
        {
            type            zeroGradient;
            value           $internalField;
        }
	
        ".*"
        {
            type            fixedFluxPressure;
            value           $internalField;
        }
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
            type            processor;
        }
    }
}

p
{
    internalField   uniform 101325;

    boundaryField
    {
        ".*"
        {
            type            calculated;
            value           $internalField;
        }
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
            type            processor;
        }
    }
}


k
{
    internalField   uniform 0.00375;

    boundaryField
    {
        ".*"
        {
            type            kqRWallFunction;
            value           $internalField;
        }
        inlet
        {
        type            turbulentIntensityKineticEnergyInlet;
        intensity       0.058;
        value           $internalField;
        //inletValue      $internalField;
        }
        outlet
        {
        type            inletOutlet;
        value           $internalField;
        inletValue      $internalField;
        }
	frontAndBack
    	{
            type        empty;
    	}
	
	"procBoundary.*"
        {
            type            processor;
        }
    }
}


epsilon
{
    internalField   uniform 0.00075;

    boundaryField
    {
    inlet
    {
        type            turbulentMixingLengthDissipationRateInlet;
        mixingLength    0.007;
        //inletOutlet;
        value           $internalField;
        //inletValue      $internalField;
    }
    outlet
    {
        type       	inletOutlet;
        value           $internalField;
        inletValue      $internalField;
    }
    fluid_to_solid
    {
        type            epsilonWallFunction;
        value           $internalField;
    }
    solidWall2
    {
        type            epsilonWallFunction;
        value           $internalField;
    }
    frontAndBack
    {
            type        empty;
    }
    "procBoundary.*"
        {
            type            processor;
        }

    }
}




alphat
{

    internalField       uniform 0;

    boundaryField
    {
        ".*"
        {
            type            calculated;
            value           $internalField;
        }

       "fluid_to_.*"
        {
            type            compressible::alphatWallFunction;
            Prt		    0.85;
	    value           uniform 0;
        }
        solidWall2
        {
        type            compressible::alphatWallFunction;
            Prt		    0.85;
	    value           uniform 0;
        }
        frontAndBack
    	{
            type        empty;
    	}
	"procBoundary.*"
        {
            type            processor;
        }


    }
}


nut
{

    internalField       uniform 0;

    boundaryField
    {
         ".*"
        {
            type            calculated;
            value           $internalField;
        }

       "fluid_to_.*"
        {
            type            nutkWallFunction;
            Cmu             0.09;
            kappa           0.41;
            E               9.8;
            value           uniform 0;
        }
        solidWall2
        {
            type            nutkWallFunction;
            Cmu             0.09;
            kappa           0.41;
            E               9.8;
            value           uniform 0;
        }
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
            type            processor;
        }

    }
}


G
{
    internalField   uniform 0;
    boundaryField
    {
  	".*"
        {
            type            MarshakRadiation;
            emissivityMode  lookup;
            emissivity      uniform 1.0;
            value           uniform 0;
        }

        "fluid_to_.*"
        {
            type            MarshakRadiation;
            emissivityMode  solidRadiation;
            value           uniform 0;
        }
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
        	type	processor;
        }
    }
}


IDefault
{
    internalField   uniform 0;
    boundaryField
    {
        ".*"
        {
            type            greyDiffusiveRadiation;
            emissivityMode  lookup;
            emissivity      uniform 1.0;
            value           uniform 0;
        }

        "fluid_to_.*"
        {
            type            greyDiffusiveRadiation;
            emissivityMode  solidRadiation;
            value           uniform 0;
        }
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
            type            processor;
        }
    }
}


qr
{
    internalField   uniform 0;
    boundaryField
    {
       
        frontAndBack
    	{
            type        empty;
    	}
        "procBoundary.*"
        {
            type            processor;
        }
    }
}












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