|
[Sponsors] |
best values for GAMG solver (nCellsInCoarsestLevel , nPreSweeps 0, nPostSweeps) |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 5, 2013, 14:52 |
best values for GAMG solver (nCellsInCoarsestLevel , nPreSweeps 0, nPostSweeps)
|
#1 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
what is the best values for GAMG parameters specially for
nCellsInCoarsestLevel , nPreSweeps 0, nPostSweeps is there a formula to calculate those based on the number of cells ? Regards |
|
May 9, 2013, 12:17 |
|
#2 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
Try this
http://www.cfd-online.com/Forums/ope...on-meshes.html There are several other threads, but the settings and concepts from this thread I use with my own simulations. |
|
May 10, 2013, 13:09 |
|
#3 |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Dear Daniel
thanks so much for your answer. in most of OF tutorials the value of nCellsInCoarsestLevel is set to 10 (or 20) but in your link it is set to 500 (or sqrt(#cell)) do you know why OF used the 10 or 20 values ? Regards |
|
May 10, 2013, 13:23 |
|
#4 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
This is one of those situations where something has been tested and found to work for a particular situation. You can always try the sqrt(ncells), 10, 20, 50 or 100 and then see which one is the best for your case.
I have read that 10 or 20 for larger cases is too low and can be inefficient. Hence why I stay a bit higher with sqrt(nCells). However, its a case by case change. |
|
May 11, 2013, 13:24 |
|
#5 |
Senior Member
Kyle Mooney
Join Date: Jul 2009
Location: San Francisco, CA USA
Posts: 323
Rep Power: 18 |
I've seen similar changes in convergence speed by altering the nCellsInCoarsestLevel setting. In once case I had pressure converge twice as fast for a relatively large case @ 600k cells on about 50 processors. I don't have the solver settings on hand unfortunately.
It is definitely worth investigating before starting big parametric or large parallel cases. |
|
May 12, 2013, 02:09 |
|
#6 | |
Senior Member
Join Date: Jun 2011
Posts: 163
Rep Power: 15 |
Quote:
Hi Daniel by increasing the nCellsInCoarsestLevel value, the convergency increased but the high value of nCellsInCoarsestLevel may be increase the cpu time for solution in other word by the high value of nCellsInCoarsestLevel solution converged, certainly am I right ? Regards |
||
February 9, 2017, 08:42 |
|
#7 | |
Senior Member
Join Date: Mar 2015
Posts: 250
Rep Power: 12 |
Quote:
Best regards, Kate |
||
October 5, 2019, 10:46 |
|
#8 |
Member
Arthur
Join Date: Aug 2014
Location: Italy
Posts: 47
Rep Power: 12 |
Remember that the OF tutorials are only demo tutorials. In openFoam there is no default options like in Fluent or any other commercial software; don't take the tutorial options as the one that work for sure!
|
|
October 7, 2019, 06:34 |
|
#9 |
New Member
Trevor Kahan
Join Date: Oct 2019
Posts: 1
Rep Power: 0 |
In most of OF tutorials the value of nCellsInCoarsestLevel is set to 10 (or 20).
basketball legends |
|
December 10, 2019, 20:26 |
Test on the nCellsInCoarsestLevel value
|
#10 |
Member
Geon-Hong Kim
Join Date: Feb 2010
Location: Ulsan, Republic of Korea
Posts: 36
Rep Power: 16 |
I tested the parameter nCellsInCoarsestLevel and would like to share it here:
First of all, I tested using a ship simulation case with 5 Mil. Cells., which is a moderately large case. The GAMG solver was used to solve the pressure poisson equation. The test has been conducted three times for each case to measure the elapsed time for the first 100 iterations and then averaged. The domain was decomposed into 64, 128, and 256 subdomains. All the rest parameters, such as nPresweeps, nPostsweeps, etc., remained as the default values. Additionally, I also run the simulation by using a PCG solver with the DIC preconditioner to compare the results. Code:
Elapsed Time(in seconds): Solver 256 128 64 ------- ------- ------- ------- PCG 177.88 425.11 987.52 10 953.95 1102.91 1421.36 100 1426.52 1441.30 1592.25 200 1721.87 1657.35 1706.38 400 2043.28 1976.25 1901.76 800 2603.98 2530.56 2274.23 1600 3235.37 3445.93 2897.09 3200 4751.91 4750.79 3962.82 Before I started this test, I expected that there should be an optimum point of the nCellsInCoarsestLevel parameter, but it wasn't. Rather the computational time gradually increased with the parameter. So I doubt if the sqrt(#Cells) is the optimum setup for the nCellsInCoarsestLevel (where does this recommendation come from?) Even the GAMG solver showed worse performance relative to the DICPCG solver. (So I do not use the GAMG solver any longer) Interestingly, the GAMG showed less degrade in speed performance than the DICPCG though the number of subdomains increased. Even lower subdomains showed faster performances in cases nCellsInCoarsestLevel>=200. I hope to discuss this result with you and hear your opinion on it. If you have any suggestions or things to test, please let me know. Regards, Geon-Hong |
|
February 5, 2021, 06:21 |
|
#11 | |
Senior Member
|
Nice test Geon-Hong!
I have extended that for my self, and can report you that the optimum here will be which level of tolerance you get. For my case (some MHD flow) the CG stopped converging and with 400 iterations remained at 1e-07. Despite faster CG iterations, the GAMG allowed easily to get the convergence to 1e-14 in 15-20 iterations. So, when comparing GAMG with CG solvers, you should check what you actually get for the solution of your problem. Cheers, Alexander Quote:
__________________
Best regards, Dr. Alexander VAKHRUSHEV Christian Doppler Laboratory for "Metallurgical Applications of Magnetohydrodynamics" Simulation and Modelling of Metallurgical Processes Department of Metallurgy University of Leoben http://smmp.unileoben.ac.at |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[waves2Foam] Waves2Foam Related Topics | ngj | OpenFOAM Community Contributions | 660 | August 20, 2018 13:39 |
Using a user-defined solver in OF | ozzythewise | OpenFOAM Running, Solving & CFD | 3 | February 8, 2011 16:28 |
CFX 5.5 | Roued | CFX | 1 | October 2, 2001 17:49 |
Setting a B.C using UserFortran in 4.3 | tokai | CFX | 10 | July 17, 2001 17:25 |
Error during Solver | cfd guy | CFX | 4 | May 8, 2001 07:04 |