|
[Sponsors] |
Improving convergence - high viscosity problem |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 31, 2020, 07:25 |
Improving convergence - high viscosity problem
|
#1 |
New Member
Julia Fed
Join Date: Jul 2020
Location: UK
Posts: 4
Rep Power: 6 |
Hi,
I have been having problems with convergence while running OpenFOAM simulations. I have made my mesh in ANSYS (refined it a few times), converted it to OpenFOAM, and it works for low viscosities. The problem is that I need to reach very high values of viscosity (about 3000). Decreasing the timestep doesn't help and the Courant number explodes pretty quickly. At the moment, I am using icoFoam, a uniform inlet velocity of 0.00023 m/s, Timestep = 0.005. my fvSchemes file is:
and fvSolution: Maybe I can improve something here? Thank you, Julia |
|
July 31, 2020, 10:59 |
|
#3 | |
Senior Member
Santiago Lopez Castano
Join Date: Nov 2012
Posts: 354
Rep Power: 16 |
Quote:
|
||
July 31, 2020, 17:43 |
|
#4 |
Senior Member
Join Date: Sep 2013
Posts: 353
Rep Power: 21 |
These mandate a really orthogonal high quality grid. If your checkMesh output has a nonOrthogonality above let's say 5 you should probably consider switching those out, or you'll loose accuracy. Going from orthogonal to uncorrected to corrected and limited results in higher accuracy on bad meshes. Solving with uncorrected or orthogonal will result in better convergence at the cost of accuracy if the mesh does not allow for it.
Code:
laplacianSchemes { default Gauss linear orthogonal; -> corrected } snGradSchemes { default orthogonal; -> corrected } Code:
divSchemes { default none; div(phi,U) Gauss linear; -> limitedLinear 1 or linearUpwind grad(U) } Code:
PISO { nCorrectors 4; --> increase these nNonOrthogonalCorrectors 0; -> maybe go up to 1 here } Code:
solvers { p { solver PCG; preconditioner DIC; tolerance 1e-06; relTol 0.05; } pFinal { $p; relTol 0; } U { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-05; relTol 0; } } |
|
Tags |
convergen |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convergence Problem in Multiphase problem (three phases) | m.uzair | FLUENT | 0 | August 2, 2018 09:23 |
handling of high viscosity | Jim87 | FLUENT | 8 | July 19, 2013 06:43 |
High turbulent viscosity, problem with BC | Narmin | FLUENT | 2 | May 8, 2007 04:17 |
convergence problem | limseokmin | FLUENT | 3 | November 14, 2004 13:43 |
convergence problem with SIMPLER | NURAY KAYAKOL | Main CFD Forum | 1 | February 24, 1999 14:43 |