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

#include "../0/include"

defaultFieldValues
(
    volScalarFieldValue CH4 $:sleeve.CH4
    volScalarFieldValue N2 $:sleeve.N2
    volScalarFieldValue O2 $:sleeve.O2
);

regions
(
    zoneToCell
    {
        name pipe;
        fieldValues
        (
            volScalarFieldValue CH4 $:pipe.CH4
            volScalarFieldValue N2 $:pipe.N2
            volScalarFieldValue O2 $:pipe.O2
        );
    }
);


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