/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system/solid";
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    "e.*"
    {
        solver           PCG;
        preconditioner  DIC;
        tolerance        1e-8;
        relTol           0.01;
    }
    
    "h.*"
    {
        solver           PCG;
        preconditioner  DIC;
        tolerance        1e-8;
        relTol           0.01;
    }

}

"(PIMPLE|SIMPLE)"
{
    nNonOrthogonalCorrectors 3;
}
relaxationFactors
{
    

    equations
    {
        "(h|e).*"         0.8;
   }
}
// ************************************************************************* //
