Skip to content
Snippets Groups Projects
fvSolution 1.63 KiB
Newer Older
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
Andrew Heather's avatar
Andrew Heather committed
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
Andrew Heather's avatar
Andrew Heather committed
    format      binary;
Andrew Heather's avatar
Andrew Heather committed
    location    "system";
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
Andrew Heather's avatar
Andrew Heather committed
    pcorr
Andrew Heather's avatar
Andrew Heather committed
        solver          PCG;
        preconditioner  DIC;
        tolerance       0.01;
        relTol          0;
    }
Andrew Heather's avatar
Andrew Heather committed
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-06;
        relTol          0.05;
    }
Andrew Heather's avatar
Andrew Heather committed
    pFinal
Andrew Heather's avatar
Andrew Heather committed
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-06;
        relTol          0;
    }
Andrew Heather's avatar
Andrew Heather committed
        solver          PBiCG;
        preconditioner  DILU;
        tolerance       1e-05;
        relTol          0;
    }
Andrew Heather's avatar
Andrew Heather committed
    cellMotionUx
Andrew Heather's avatar
Andrew Heather committed
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-08;
        relTol          0;
    }
mattijs's avatar
mattijs committed
PIMPLE
mattijs's avatar
mattijs committed
    nOuterCorrectors    2;
    nCorrectors         1;
    nNonOrthogonalCorrectors 0;
}

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