Skip to content
Snippets Groups Projects
fvSolution 1.47 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    |  \\    /   O peration     | Version:  v2506                                 |
    
    |   \\  /    A nd           | Website:  www.openfoam.com                      |
    
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    FoamFile
    {
        version     2.0;
        format      ascii;
        class       dictionary;
        object      fvSolution;
    }
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    solvers
    {
        "(p|pcorr)"
        {
            solver          GAMG;
            smoother        DICGaussSeidel;
            tolerance       1e-06;
            relTol          0.1;
        }
    
        "(p|pcorr)Final"
        {
            $p;
            tolerance       1e-06;
            relTol          0;
        }
    
        "(U|k|omega)"
        {
            solver          smoothSolver;
            smoother        symGaussSeidel;
            tolerance       1e-06;
            relTol          0.1;
        }
    
        "(U|k|omega)Final"
        {
            $U;
            tolerance       1e-06;
            relTol          0;
        }
    }
    
    PIMPLE
    {
        momentumPredictor   yes;
        nOuterCorrectors    3;
        nCorrectors     1;
        nNonOrthogonalCorrectors 0;
    }
    
    
    // ************************************************************************* //