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

/* This file is necessary both for the membrane and for the plate solution.
 * As (until now) the displacement is simply fixed to be zero at the boundary,
 * the same condition applies in both cases.
 */

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

dimensions          [0 1 0 0 0 0 0];

internalField       uniform $icDeflection;

boundaryField
{
    faBoundary
    {
        type    fixedValue;
        value   uniform 0;
    }
    
    "faSymmetry.*"
    {
        type            symmetry;
    }
    
    "faCyclic.*"
    {
        type            cyclic;
    }
}

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