/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.x                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile {
  version     2.0;
  format      ascii;
  class       dictionary;
  location    "system";
  object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     PATOx;

startFrom       latestTime;

startTime       0;

stopAt          endTime;

endTime         10;

deltaT          1e-3;

writeControl    adjustableRunTime;

writeInterval   .1;

purgeWrite      0;

writeFormat     ascii;

writePrecision  12;

writeCompression uncompressed;

timeFormat      general;

timePrecision   6;

graphFormat     xmgr;

runTimeModifiable yes;

/* Adjustable time step - based on a limiter on the max. pressure gradient and on species mass-fraction variations */
adjustTimeStep  no; // you can turn it off but it's going to be very slow

adjustStartTime 0;

maxCo           0.5;

maxDeltaT   1e-4; // reduce it if the surface temperature starts oscilliating

minDeltaT   1e-8;

REVlength   1e3;

/* End adjustable time step */

// For cfd coupled simulation, allow the flow to adjust to the solid temperature
delaySolid 0; // time in seconds

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