CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   How to control the convergence? (https://www.cfd-online.com/Forums/openfoam-solving/70446-how-control-convergence.html)

titio November 24, 2009 17:08

How to control the convergence?
 
Hi Foamers,

One of the limitations of OpenFoam is the lack of a suitable convergence control, to avoid doing calculations after the simulation has already converged.

Does anyone know of some code, or form to implement convergence control in OpenFoam, based on pre determined criteria defined by the user?

Regards,

Titio

camoesas August 23, 2011 03:03

Is there really no answer to this important question?

chegdan September 9, 2011 11:09

There is an answer and it exists in simpleFoam. Specifically, look at the headers initConvergenceCheck.H and convergenceCheck.H int eh simpleFoam solver directory. They can be used in conjunction with the word "convergence" followed by your desired level of convergence (eg. 1e-6;) in your SIMPLE subdictionary in fvSolution. There are a few threads on the forum about this. Hope this helps.

Dan

camoesas September 21, 2011 11:16

HI Daniel,

Thanks for the answer, as you said I've found some threads on this topic

Camoesas

chegdan September 21, 2011 11:29

Also, The convergence control has changed for 2.0.x version of OpenFOAM to something like:


Code:

SIMPLE
{
    nNonOrthogonalCorrectors 2;
    convergence              1.0e-6;//old way of specifying convergence criteria
 
    residualControl//OF 2.0.x
    {
        p              1e-5;
        U              1e-5;
        "(k|epsilon)" 1e-5;
    }
}



All times are GMT -4. The time now is 14:11.