/*--------------------------------*- 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          $h_tolerance_relative;
        minIter         1;
    }
}

relaxationFactors
{
    fields
    {
        h   $h_relaxationFactor;
    }
}

Picard
{
    tolerance $picard_tolerance;
    maxIter   $picard_maxiter;
}

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