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

source1
{
    type            fixedTemperatureConstraint;
    active          false;
    timeStart       0.0;
    duration        0.1;
    selectionMode   cellSet;
    cellSet         ignitionCells;

    fixedTemperatureConstraintCoeffs
    {
        mode            uniform;
        temperature    table
            2
            (
             (0 300)
             (0.01 2000)
            )
            ;
    }
}

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