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

solvers
{
    cellDisplacement
    {
        solver          PCG;
        preconditioner  DIC;

        tolerance       1e-06;
        relTol          0;
        maxIter         100;
    }
    
    yPsi
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-5;
        relTol          0.01;
    }
    
    p
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-6;
        relTol          0.01;
    }
    
    pcorr
    {
        $p;
        solver          PCG;
        preconditioner  DIC;
    }
    
    U
    {
        solver		PBiCGStab;
	preconditioner 	DILU;
	tolerance	1e-09;	
	relTol		0.1;

    }
    nuTilda
    {
	solver		PBiCGStab;
	preconditioner 	DILU;
	tolerance	1e-09;	
	relTol		0.1;
    }
    
}

SIMPLE
{
    nNonOrthogonalCorrectors		3;
    consistent      			yes;
    pRefCell				0;
    pRefValue 				0;

}

relaxationFactors
{
	fields
	{
		p		0.7;
	}

	equations
	{
		U		0.9;
		nuTilda 	0.9;
	}
}


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