/*--------------------------------*- C++ -*----------------------------------*\
Input file needed for the mesh motion solver. Please do not remove.
It is not advised to modify this file unless you need to modify the boundaryField names.
\*---------------------------------------------------------------------------*/

FoamFile {
  version         2.0;
  format          ascii;
  class           pointVectorField;
  object          pointMotionU;
}

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


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

internalField   uniform (0 0 0);

boundaryField {
  topWall
  {
    type    slip;
    value   $internalField;
  }

  bottomWall
  {
    type    slip;
    value   $internalField;
  }

  outlet
  {
    type    fixedValue;
    value   $internalField;
  }

  inlet
  {
    type    fixedValue;
    value   $internalField;
  }

  fluid_to_solid
  {
    type calculated;
  }
}


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