Merge remote-tracking branch 'origin/hotfix/bound_BC' into nextRelease

This commit is contained in:
Dominik Christ 2013-07-08 13:00:58 +01:00
commit aab85044e9
2 changed files with 10 additions and 2 deletions

8
.gitignore vendored
View file

@ -125,4 +125,12 @@ src/lduSolvers/amg/amgPolicy/samgPolicy.H
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
src/lduSolvers/amg/amgPolicy/aamgPolicy.H
# The following files are blacklisted because of a DMCA complaint by ANSYS.
src/lduSolvers/tools/PriorityArray.C
src/lduSolvers/tools/PriorityArray.H
src/lduSolvers/amg/amgPolicy/samgPolicy.C
src/lduSolvers/amg/amgPolicy/samgPolicy.H
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
src/lduSolvers/amg/amgPolicy/aamgPolicy.H
# end-of-file

View file

@ -73,8 +73,8 @@ void Foam::boundMinMax
if (minVsf < vsf0.value() || maxVsf > vsf1.value())
{
Info<< "bounding " << vsf.name()
<< ", min: " << gMin(vsf.internalField())
<< " max: " << gMax(vsf.internalField())
<< ", min: " << minVsf
<< " max: " << maxVsf
<< " average: " << gAverage(vsf.internalField())
<< endl;
}