FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      T;
}

dimensions      [0 0 0 1 0 0 0];


internalField   uniform 0;

boundaryField
{
    DirichletBoundary
    {
        type            groovyBC;
        variables       "val=1+pow(pos().x,2)+(3*pow(pos().y,2))+1.3*time();";
        valueExpression "val";
        value           uniform 0;
        evaluateDuringConstruction 1;
    }

    defaultFaces
    {
        type            empty;
    }
}
