/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | faSavageHutterFOAM                              |
|   \\  /    A nd           | Copyright (C) 2017 Matthias Rauter              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      faSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    Us
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }

    h
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }

    loss
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }
}

nOuterCorrectors 30;
minCorrectors 1;
hResidualMax 1e-6;
UsResidualMax 1e-1;

relaxationFactors
{
    h 0.5;
    Us 0.5;
}

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