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

application     reactingPimpleCentralFoam;

startFrom       latestTime;

startTime       0;

stopAt          endTime;

endTime         2e-9;

deltaT          1e-9;

writeControl    adjustableRunTime;

writeInterval   1e-9;

purgeWrite      0;

writeFormat     ascii;

writePrecision  16;

writeCompression off;

timeFormat      general;

timePrecision   8;

graphFormat     raw;

runTimeModifiable true;

adjustTimeStep	true;

maxCo		0.1;

CourantType	cellCourant;

//monitor_psP		true;

isShockAttached		true;

nDimensions			2;

writeThermicity		true;

OptimisationSwitches
{
    //- Parallel IO file handler
    //  uncollated (default), collated or masterUncollated
    fileHandler collated;

    //- collated: thread buffer size for queued file writes.
    //  If set to 0 or not sufficient for the file size, threading is not used.
    //  Default: 1e9
    maxThreadFileBufferSize 1e11; // v1712 default is 0;

    //- collated | masterUncollated: non-blocking buffer size.
    //  If the file exceeds this buffer size scheduled transfer is used.
    //  Default: 1e9
    maxMasterFileBufferSize 1e11;
}


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