FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "20";
    object      k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 1 -3 -1 0 0 0];

internalField   uniform 0;

boundaryField
{
    "(interconnect0|interconnectSides|airOutlet|airSides|cathodeSides|electrolyteSides|anodeSides|fuelOutlet|fuelSides|interconnectSides|interconnect1)"
    {
        type         zeroGradient;
    }
    airInlet
    {
        type         fixedValue;
        value        uniform 1e-15;    // disallow outward diffusion at inlet
                                       // value 0 causes harmonic averaging FPE
    }
    fuelInlet
    {
        type         fixedValue;
        value        uniform 1e-15;    // disallow outward diffusion at inlet
                                       // value 0 causes harmonic averaging FPE
    }
    "procBoundary.*"
    {
        type         processor;
    }
}


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