/*--------------------------------*- 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
{
    solidBottom
    {
        type            patch;
    }
    solidTop
    {
        type            patch;
    }
    frontAndBack
    {
       	type            empty;
    }
    
}

cellToRegion
{
    internalField   uniform 0;

boundaryField
{
    frontAndBack
    {
        type            empty;
    }
}
}

T
{
    internalField   uniform 296;

    boundaryField
    {
        
	".*"
        {
            type            zeroGradient;
            value           $internalField;
        }
	"solid_to_.*"
	{
            type            compressible::turbulentTemperatureRadCoupledMixed;//BaffleMixed;
            Tnbr            T;
            kappaMethod     solidThermo;
            value           $internalField;
	    qrNbr	    qr;
            qr		    none;
	}
	
	solidWall1
	{
	    type	fixedGradient;
	    gradient	uniform 2.109705;//4.219409;
	}
	frontAndBack
        {
       	type            empty;
    	}
    
	
        "procBoundary.*"
        {
            type            processor;
        }
    }

}

p
{
	internalField uniform 101325;

    boundaryField
    {
        frontAndBack
        {
       	type            empty;
    	}
    	
    }
}


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

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

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

 

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