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

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 1;

boundaryField
{
    copperInlet
    {
        type            zeroGradient;
    }
    copperOutlet
    {
        type            zeroGradient;
    }
    copperWalls
    {
        type            zeroGradient;
    }
    copper_to_fluid
    {
        type            calculated;
        value           uniform 0;
    }
    copper_to_insulation
    {
        type            calculated;
        value           uniform 0;
    }
    copper_to_tpt
    {
        type            calculated;
        value           uniform 0;
    }
}


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