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

#include "../parameters.txt"

solvers
{
    "h"
    {
        solver          PCG;
        preconditioner  DIC;
        tolerance       $h_tolerance;
        relTol          0;
        minIter         1;
    }
}

SIMPLE
{
    residualControl
    {
        h          $h_residualControl;
    }
}

relaxationFactors
{
    fields
    {
        h          $h_relaxationFactor;
    }
}

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