/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1712                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      dummyLoadField;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include "${FOAM_CASE}/system/configDict"

dimensions      [0 2 -24 0 0 0 0]; // unit -2  instead of -24 !?

internalField   uniform $dummyLoadFieldValue;

boundaryField
{
    ".*"
    {
        type            fixedValue;
        value           uniform $dummyLoadFieldValue;
    }
    
    "fvSymmetryPlane.*"
    {
        type            symmetryPlane;
    }    
    "fvCyclic.*"
    {
        type            cyclic;
    }
}


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