View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002620 | OpenFOAM | Bug | public | 2017-07-19 04:43 | 2017-07-19 12:47 |
Reporter | karlvirgil | Assigned To | henry | ||
Priority | high | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Linux | OS | CentOS | OS Version | 7 |
Product Version | dev | ||||
Fixed in Version | dev | ||||
Summary | 0002620: pyrolysis model yields inconsistent info for serial vs. parallel runs | ||||
Description | reactingOneDim.C uses min() and max() functions for reporting temperature bounds of pyrolysis region. In parallel and serial this gives different results. gMin and gMax should be used instead to give consistent results. | ||||
Steps To Reproduce | reactingOneDim.C 716 Info<< "pyrolysis min/max(T) = " 717 << min(solidThermo_.T().primitiveField()) 718 << ", " 719 << max(solidThermo_.T().primitiveField()) should be changed to 716 Info<< "pyrolysis min/max(T) = " 717 << gMin(solidThermo_.T().primitiveField()) 718 << ", " 719 << gMax(solidThermo_.T().primitiveField()) | ||||
Tags | gMax, gMin, pyrolysis | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2017-07-19 04:43 | karlvirgil | New Issue | |
2017-07-19 04:43 | karlvirgil | Tag Attached: gMax | |
2017-07-19 04:43 | karlvirgil | Tag Attached: gMin | |
2017-07-19 04:43 | karlvirgil | Tag Attached: pyrolysis | |
2017-07-19 12:47 | henry | Assigned To | => henry |
2017-07-19 12:47 | henry | Status | new => resolved |
2017-07-19 12:47 | henry | Resolution | open => fixed |
2017-07-19 12:47 | henry | Fixed in Version | => dev |
2017-07-19 12:47 | henry | Note Added: 0008415 |