Removed some unused member variables from PDSS classes
This commit is contained in:
parent
436f38c6a6
commit
af10c288b4
4 changed files with 0 additions and 29 deletions
|
|
@ -419,21 +419,7 @@ public:
|
|||
virtual void initThermo();
|
||||
|
||||
//@}
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
//! Maximum temperature the standard states are good for
|
||||
doublereal m_tmin;
|
||||
|
||||
//! Minimum temperature the standard states are good for
|
||||
doublereal m_tmax;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -455,14 +455,6 @@ public:
|
|||
|
||||
|
||||
protected:
|
||||
|
||||
//! Maximum temperature the standard states are good for
|
||||
doublereal m_tmin;
|
||||
|
||||
//! Minimum temperature the standard states are good for
|
||||
doublereal m_tmax;
|
||||
|
||||
|
||||
//! Pointer to the Neutral Molecule ThermoPhase object
|
||||
/*!
|
||||
* This is a shallow pointer.
|
||||
|
|
|
|||
|
|
@ -76,10 +76,6 @@ PDSS_IdealGas& PDSS_IdealGas::operator=(const PDSS_IdealGas& b)
|
|||
return *this;
|
||||
}
|
||||
PDSS::operator=(b);
|
||||
|
||||
m_tmin = b.m_tmin;
|
||||
m_tmax = b.m_tmax;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,9 +87,6 @@ PDSS_IonsFromNeutral& PDSS_IonsFromNeutral::operator=(const PDSS_IonsFromNeutral
|
|||
|
||||
PDSS::operator=(b);
|
||||
|
||||
m_tmin = b.m_tmin;
|
||||
m_tmax = b.m_tmax;
|
||||
|
||||
/*
|
||||
* The shallow pointer copy in the next step will be insufficient in most cases. However, its
|
||||
* functionally the best we can do for this assignment operator. We fix up the pointer in the
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue