/*--------------------------------*- 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;
  location    "system";
  object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers {
  "(D|T)"
  {
    solver          GAMG;
    tolerance       1e-06;
    relTol          0.9;
    smoother        GaussSeidel;
    nCellsInCoarsestLevel 20;
  }
  Chi
  {
    solver 		 PBiCGStab; // asymmetric matrix solver (for mesh motion)
    preconditioner   DILU;
    tolerance        1e-06;
    relTol           1e-06;
  };
}

stressAnalysis {
  compactNormalStress yes;
  nCorrectors     1;
  D               1e-06;
}


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