Skip to content
Snippets Groups Projects
Commit 68e7c21d authored by Mark OLESEN's avatar Mark OLESEN
Browse files

COMP: resolve compilation issues for single-precision (closes #932)

parent fa026a13
No related branches found
No related tags found
No related merge requests found
...@@ -107,7 +107,7 @@ Foam::radiation::localDensityAbsorptionEmission::aCont(const label bandI) const ...@@ -107,7 +107,7 @@ Foam::radiation::localDensityAbsorptionEmission::aCont(const label bandI) const
forAll(alphaNames_, i) forAll(alphaNames_, i)
{ {
dimensionedScalar aPhase("a", dimless/dimLength, aCoeff_[i]); dimensionedScalar aPhase("a", dimless/dimLength, aCoeff_[i]);
a += max(alpha(alphaNames_[i]), 0.0)*aPhase; a += max(alpha(alphaNames_[i]), scalar(0))*aPhase;
} }
return ta; return ta;
...@@ -140,7 +140,7 @@ Foam::radiation::localDensityAbsorptionEmission::eCont(const label bandI) const ...@@ -140,7 +140,7 @@ Foam::radiation::localDensityAbsorptionEmission::eCont(const label bandI) const
forAll(alphaNames_, i) forAll(alphaNames_, i)
{ {
dimensionedScalar ePhase("e", dimless/dimLength, eCoeff_[i]); dimensionedScalar ePhase("e", dimless/dimLength, eCoeff_[i]);
e += max(alpha(alphaNames_[i]), 0.0)*ePhase; e += max(alpha(alphaNames_[i]), scalar(0))*ePhase;
} }
return te; return te;
...@@ -179,7 +179,7 @@ Foam::radiation::localDensityAbsorptionEmission::ECont(const label bandI) const ...@@ -179,7 +179,7 @@ Foam::radiation::localDensityAbsorptionEmission::ECont(const label bandI) const
ECoeff_[i] ECoeff_[i]
); );
E += max(alpha(alphaNames_[i]), 0.0)*EPhase; E += max(alpha(alphaNames_[i]), scalar(0))*EPhase;
} }
return tE; return tE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment