multicomponentThermo: Dimensioned constant specie properties

The specie molecular mass (Wi) and formation enthalpy (hfi) methods now
return dimensioned scalars. This permits their direct inclusion into
dimensioned field expressions. Non-dimensioned methods have been
retained with a "Value" suffix (i.e., WiValue and hfiValue).
This commit is contained in:
Will Bainbridge
2023-12-06 17:13:25 +00:00
parent 2bc91ecff0
commit 947dd44188
26 changed files with 107 additions and 103 deletions

View File

@ -32,7 +32,7 @@ scalarList W(const fluidMulticomponentThermo& thermo)
forAll(W, i)
{
W[i] = thermo.Wi(i);
W[i] = thermo.Wi(i).value();
}
return W;