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

application     buoyantSimpleFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         20000;

deltaT          1;

writeControl    timeStep;
//writeControl	writeTime;

writeInterval   500;

purgeWrite      0;

writeFormat     ascii;

writePrecision  8;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable false;

functions
{
	heatTransferCoeff1
		{
			type            heatTransferCoeff;
			libs            ("libfieldFunctionObjects.so");
			field           T;
			patches         ("wall");
			htcModel        ReynoldsAnalogy;
			UInf            (1e-4 0 0);
			Cp              CpInf;
			CpInf           1000;
			rho             rhoInf;
			rhoInf          1.2;				
		}
}


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