mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Corrected output of yPlusRAS/LES for parallel running - mantis #556
This commit is contained in:
@ -86,8 +86,8 @@ void calcIncompressibleYPlus
|
||||
|
||||
Info<< "Patch " << patchi
|
||||
<< " named " << nutPw.patch().name()
|
||||
<< " y+ : min: " << min(Yp) << " max: " << max(Yp)
|
||||
<< " average: " << average(Yp) << nl << endl;
|
||||
<< " y+ : min: " << gMin(Yp) << " max: " << gMax(Yp)
|
||||
<< " average: " << gAverage(Yp) << nl << endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -166,8 +166,8 @@ void calcCompressibleYPlus
|
||||
|
||||
Info<< "Patch " << patchi
|
||||
<< " named " << mutPw.patch().name()
|
||||
<< " y+ : min: " << min(Yp) << " max: " << max(Yp)
|
||||
<< " average: " << average(Yp) << nl << endl;
|
||||
<< " y+ : min: " << gMin(Yp) << " max: " << gMax(Yp)
|
||||
<< " average: " << gAverage(Yp) << nl << endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user