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

dimensions      [0 1 0 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    leftWall
    {
        type            fixedValue; 
         value           uniform (0 0 0); 
        
    }
    rightWall
    {
        type            fixedValue; 
         value           uniform (0 0 0); 
        
    }
    
    lowerWall
    {
        type            fixedValue; 
         value           uniform (0 0 0); 
    }
    topWall
    {
         type            fixedValue; 
         value           uniform (0 0 0); 
    }
    cylinder
    {
        type timeVaryingUniformFixedValue;
        value uniform (0 0 0); 
        file "topWallDisplacement.dat";
    }
    defaultFaces
    {
        type            empty;
    }

   
}

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