ENH: Adding clipping information for limitTemperature FO

This commit is contained in:
sergio
2020-03-30 10:28:14 -07:00
parent 69861df91d
commit e50b2c04e1

View File

@ -6,7 +6,7 @@
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Copyright (C) 2012-2017 OpenFOAM Foundation Copyright (C) 2012-2017 OpenFOAM Foundation
Copyright (C) 2018 OpenCFD Ltd. Copyright (C) 2018-2020 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -109,12 +109,47 @@ void Foam::fv::limitTemperature::correct(volScalarField& he)
scalarField& hec = he.primitiveFieldRef(); scalarField& hec = he.primitiveFieldRef();
const scalarField& T = thermo.T();
scalar Tmin0 = min(T);
scalar Tmax0 = max(T);
label nOverTmax = 0;
label nLowerTmin = 0;
forAll(cells_, i) forAll(cells_, i)
{ {
const label celli = cells_[i]; const label celli = cells_[i];
if (hec[celli] < heMin[i])
{
nLowerTmin++;
}
else if (hec[celli] > heMax[i])
{
nOverTmax++;
}
hec[celli]= max(min(hec[celli], heMax[i]), heMin[i]); hec[celli]= max(min(hec[celli], heMax[i]), heMin[i]);
} }
reduce(nOverTmax, sumOp<label>());
reduce(nLowerTmin, sumOp<label>());
reduce(Tmin0, minOp<scalar>());
reduce(Tmax0, maxOp<scalar>());
Info<< type() << " " << name_ << " Lower limited "
<< nLowerTmin << " ("
<< 100*scalar(nLowerTmin)/mesh_.globalData().nTotalCells()
<< "%) of cells" << endl;
Info<< type() << " " << name_ << " Upper limited "
<< nOverTmax << " ("
<< 100*scalar(nOverTmax)/mesh_.globalData().nTotalCells()
<< "%) of cells" << endl;
Info<< type() << " " << name_ << " Unlimited Tmax " << Tmax0 << nl
<< "Unlimited Tmin " << Tmin0 << endl;
// handle boundaries in the case of 'all' // handle boundaries in the case of 'all'
if (selectionMode_ == smAll) if (selectionMode_ == smAll)
{ {