/*---------------------------------------------------------------------------*\
| =========                 |                                                 |
| \\      /  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          BiCGStab;
        preconditioner  ILU0;
        tolerance       1e-07;
        relTol          0.01;
    }

    h
    {
        solver          BiCGStab;
        preconditioner  ILU0;
        tolerance       1e-07;
        relTol          0.01;
    }

    hentrain
    {
        solver          BiCGStab;
        preconditioner  ILU0;
        tolerance       1e-07;
        relTol          0.01;
    }

    pw
    {
        solver          BiCGStab;
        preconditioner  ILU0;
        tolerance       1e-07;
        relTol          0.01;
    }

    loss
    {
        solver          BiCGStab;
        preconditioner  ILU0;
        tolerance       1e-07;
        relTol          0.01;
    }
}

nOuterCorrectors 100;
minCorrectors 1;
hResidualMax 1e-5;
UsResidualMax 1e-5;

relaxationFactors
{
    h 0.3;
    Us 0.7;
}

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