View Issue Details

IDProjectCategoryView StatusLast Update
0000776OpenFOAMBugpublic2013-03-13 12:14
Reporteruser495Assigned Tohenry  
PrioritylowSeverityminorReproducibilityhave not tried
Status resolvedResolutionfixed 
Summary0000776: use of wrong "min" and "max" function for parallel cases in SLTSDdtScheme
Descriptionuse of wrong "min" and "max" function for parallel cases, gives only min and max value of the master cpu

file: SLTSDdtScheme.C, Line 390

current code:
Info<< "max/min rDeltaT " << max(rDeltaT) << " " << min(rDeltaT) <<endl;

correct code:
Info<< "max/min rDeltaT " << gMax(rDeltaT) << " " << gMin(rDeltaT) <<endl;
TagsNo tags attached.

Activities

henry

2013-03-13 12:14

manager   ~0001991

Thanks for the bug-report, fixed in OpenFOAM-2.2.x by
commit 9c957703718f2ce826438ba07a9c2b68fa2200c1

Issue History

Date Modified Username Field Change
2013-03-13 12:05 user495 New Issue
2013-03-13 12:14 henry Note Added: 0001991
2013-03-13 12:14 henry Status new => resolved
2013-03-13 12:14 henry Resolution open => fixed
2013-03-13 12:14 henry Assigned To => henry