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

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{


    COLD_WALL
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }
    TOP_SPLIT
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }
    HEATING_ZONE
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }
    SIDE_WALL
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }
    BOTTOM
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }
    TOP
    {
		type 	fixedFluxPressure;
		rho 	rhok;
		value 	uniform 0;
    }  



	
/*floor
{
type fixedFluxPressure;
rho rhok;
value uniform 0;
}

ceiling
{
type fixedFluxPressure;
rho rhok;
value uniform 0;
}

fixedWalls
{
type fixedFluxPressure;
rho rhok;
value uniform 0;
}*/
}

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