View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002716 | OpenFOAM | Bug | public | 2017-10-09 09:36 | 2017-10-09 12:24 |
Reporter | Shorty | Assigned To | henry | ||
Priority | low | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Fixed in Version | dev | ||||
Summary | 0002716: Tiny error in PCG.C | ||||
Description | Hi all, I just want to let you know that there is a tiny error in the PCG.C. If one specifies 100 maximum iterations for the solver, the PCG solver always uses one iteration more. The code line 185 can be changed as follows: ============================================ solverPerf.nIterations()++ < maxIter_ ============================================ Should be: ============================================ ++solverPerf.nIterations() < maxIter_ ============================================ Zappo from CFD-online posted that tiny error and I thought that it is worth to mention. Corresponding thread: https://www.cfd-online.com/Forums/openfoam-bugs/193957-tiny-error-linear-pcg-solver.html#post666844 Have a nice week Tobi | ||||
Tags | PCG, Solver | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2017-10-09 09:36 | Shorty | New Issue | |
2017-10-09 09:36 | Shorty | Tag Attached: Solver | |
2017-10-09 09:36 | Shorty | Tag Attached: PCG | |
2017-10-09 12:24 | henry | Assigned To | => henry |
2017-10-09 12:24 | henry | Status | new => resolved |
2017-10-09 12:24 | henry | Resolution | open => fixed |
2017-10-09 12:24 | henry | Fixed in Version | => dev |
2017-10-09 12:24 | henry | Note Added: 0008839 |