solidThermo: Add rhoThermo interface
The old fluid-specific rhoThermo has been split into a non-fluid specific part which is still called rhoThermo, and a fluid-specific part called rhoFluidThermo. The rhoThermo interface has been added to the solidThermo model. This permits models and solvers that access the density to operate on both solid and fluid thermophysical models.
This commit is contained in:
@ -62,13 +62,13 @@ template<class ThermoModel>
|
||||
struct MovingPhaseModelTransportThermoModel;
|
||||
|
||||
template<>
|
||||
struct MovingPhaseModelTransportThermoModel<rhoThermo>
|
||||
struct MovingPhaseModelTransportThermoModel<rhoFluidThermo>
|
||||
{
|
||||
typedef fluidThermo type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct MovingPhaseModelTransportThermoModel<rhoMulticomponentThermo>
|
||||
struct MovingPhaseModelTransportThermoModel<rhoFluidMulticomponentThermo>
|
||||
{
|
||||
typedef fluidMulticomponentThermo type;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user