Merge remote-tracking branch 'origin/hotfix/bound_BC' into nextRelease
This commit is contained in:
commit
aab85044e9
2 changed files with 10 additions and 2 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -125,4 +125,12 @@ src/lduSolvers/amg/amgPolicy/samgPolicy.H
|
||||||
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
|
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
|
||||||
src/lduSolvers/amg/amgPolicy/aamgPolicy.H
|
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
|
# end-of-file
|
||||||
|
|
|
@ -73,8 +73,8 @@ void Foam::boundMinMax
|
||||||
if (minVsf < vsf0.value() || maxVsf > vsf1.value())
|
if (minVsf < vsf0.value() || maxVsf > vsf1.value())
|
||||||
{
|
{
|
||||||
Info<< "bounding " << vsf.name()
|
Info<< "bounding " << vsf.name()
|
||||||
<< ", min: " << gMin(vsf.internalField())
|
<< ", min: " << minVsf
|
||||||
<< " max: " << gMax(vsf.internalField())
|
<< " max: " << maxVsf
|
||||||
<< " average: " << gAverage(vsf.internalField())
|
<< " average: " << gAverage(vsf.internalField())
|
||||||
<< endl;
|
<< endl;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue