FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    p
    {
        solver           GAMG;
        tolerance        1e-7;
        relTol           0.01;

        smoother         GaussSeidel;

        cacheAgglomeration true;
        nCellsInCoarsestLevel 10;
        agglomerator     faceAreaPair;
        mergeLevels      1;

        maxIter          100;
    }

    pFinal
    {
        $p;
        tolerance        1e-7;
        relTol           0;
    }

    U
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance        1e-7;
        relTol           0.0;
    }

    UFinal
    {
        $U;
        tolerance        1e-7;
        relTol           0;
    }


    B0
    {
        solver           PCG;
	biotsavart	 volume;
        preconditioner
        {
            preconditioner  GAMG;
            tolerance       1e-05;
            relTol          0;
            smoother        GaussSeidel;
        }

        smoother        GaussSeidel;
        tolerance       1e-07;
        nCellsInCoarsestLevel 5;
        relTol          0;
        maxIter         1000;
    }

    B0Final
    {
        $B0;
        tolerance        1e-7;
        relTol           0;
    }

    b
    {
        solver           PCG;
        biotsavart       pascal;
        preconditioner
        {
            preconditioner  GAMG;
            tolerance       1e-05;
            relTol          0;
            smoother        GaussSeidel;
        }

        smoother        GaussSeidel;
        tolerance       1e-07;
        nCellsInCoarsestLevel 5;
        relTol          0;
        maxIter         1000;
    }

    bFinal
    {
        $b;
        tolerance        1e-7;
        relTol           0;
    }

}

PIMPLE
{
    pRefCell    0;
    pRefValue   0;
}

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