Skip to content
Snippets Groups Projects
Tf 1.7 KiB
Newer Older
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{

    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0/filmRegion";
    object      Tf;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];

internalField   uniform  298;

boundaryField
{
    region0_to_filmRegion_coupledWall // Patch to pyrolysis
    {
        type            mappedField;
        sampleRegion    pyrolysisRegion;
        sampleMode      nearestPatchFace;
        samplePatch     region0_to_pyrolysisRegion_coupledWall;
        offset          (0 0 0);
        fieldName       T;
        setAverage      no;
        average         0;
        value           uniform 298;
    }

    coupledWall_top // Patch to Region0
    {
        type            zeroGradient;
    }

    "side.*"
    {
        type            inletOutlet;
        inletValue      uniform 298;
        value           uniform 298;
    }

    outlet
    {
        type            zeroGradient;
    }

    inlet
    {
        type            fixedValue;
        value           uniform 298.0;
    }
}

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