/*--------------------------------*- 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          true;

    fixedTemperatureConstraintCoeffs
    {
        timeStart       0.0;
        duration        0.03;
        selectionMode   cellSet;
        cellSet         ignitionCells;

        mode            uniform;
        temperature     table
            2
            (
             (0 300)
             (0.015 2240)
            )
            ;
    }
}

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