[Transport] Remove unused private members of WaterTransport

This commit is contained in:
Ray Speth 2018-09-19 18:54:01 -04:00
parent 680af58950
commit 1acb00bc99

View file

@ -23,9 +23,6 @@ const int LDIFF_MIXDIFF_FLUXCORRECTED = 1;
const int LDIFF_MULTICOMP_STEFANMAXWELL = 2;
//! @}
class WaterProps;
class PDSS_Water;
//! Transport Parameters for pure water
//! @ingroup tranprops
class WaterTransport : public Transport
@ -82,30 +79,6 @@ public:
virtual doublereal thermalConductivity();
virtual void init(thermo_t* thermo, int mode=0, int log_level=0);
private:
//! Pointer to the WaterPropsIAPWS object, which does the actual calculations
//! for the real equation of state
/*!
* This object owns m_sub
*/
mutable WaterPropsIAPWS* m_sub;
//! Pointer to the WaterProps object
/*!
* This class is used to house several approximation routines for properties
* of water.
*
* This object owns m_waterProps, and the WaterPropsIAPWS object used by
* WaterProps is m_sub, which is defined above.
*/
WaterProps* m_waterProps;
//! Pressure dependent standard state object for water
/*!
* We assume that species 0 is water, with a PDSS_Water object.
*/
PDSS_Water* m_waterPDSS;
};
}
#endif