/*--------------------------------*- 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";
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

kelecyPletcher
{
    maxPseudoIters      100000;

    rhoTol              0.01;
    rhoUTol             0.01;
    pTol                0.1;
      
    nRungeKuttaSteps    1;
        
    beta                1100.0;

    deltaTauCoNum       0.2;
    deltaTCoNum         1.0;

    deltaTau            0.000001;
    deltaT              0.01;

    transient           no;
    specialGradp        yes;
}

solvers
{
    cellDisplacement //snappyHexMesh
    {
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-08;
        relTol          0;
    }
}

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