Skip to content
Snippets Groups Projects
Commit a701c9a6 authored by sergio's avatar sergio
Browse files

ENH: Change fatal Error to warning for absorption coeffs

parent 6915df23
Branches
Tags
No related merge requests found
......@@ -59,12 +59,12 @@ void Foam::radiation::absorptionCoeffs::checkT(const scalar T) const
{
if (T < Tlow_ || T > Thigh_)
{
FatalErrorIn
WarningIn
(
"absorptionCoeffs::checkT(const scalar T) const"
) << "attempt to use absCoeff out of temperature range:" << nl
) << "usinf absCoeff out of temperature range:" << nl
<< " " << Tlow_ << " -> " << Thigh_ << "; T = " << T
<< nl << abort(FatalError);
<< nl << endl;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment