/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.x                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile {
  version     2.0;
  format      ascii;
  class       dictionary;
  object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers {
  p
  {
    solver          PCG;
    preconditioner  DIC;
    tolerance       1e-07;
    relTol          0;
  }


  pFinal
  {
    $p;
    relTol          0;
  }

  U
  {
    solver          smoothSolver;
    smoother        symGaussSeidel;
    tolerance       1e-07;
    relTol          0;
  }

  UFinal
  {
    $U;
    tolerance       1e-07;
    relTol          0;
  }
}

SIMPLE {
  residualControl
  {
    p               1e-6;
    U               1e-6;
  }
}

relaxationFactors {
  fields
  {
    p      0.3;
    pFinal 1;
  }

  equations
  {
    U      0.7;
    UFinal 1;
  }
}

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