[Transport] Deprecate non-functional AqueousTransport class

This class has been broken since 2009. Note the vectors m_visccoeffs,
m_condcoeffs, and m_diffcoeffs, which are used but never initialized.
This commit is contained in:
Ray Speth 2015-04-09 18:54:05 -04:00
parent b495262aff
commit 23ad04f882
2 changed files with 3 additions and 0 deletions

View file

@ -97,6 +97,7 @@ namespace Cantera
* In the second part, a mixing rule is applied, based on the
* Wilkes correlation, to yield the mixture viscosity.
* @ingroup tranprops
* @deprecated Non-functional. To be removed after Cantera 2.2.
*/
class AqueousTransport : public Transport
{

View file

@ -36,6 +36,8 @@ AqueousTransport::AqueousTransport() :
m_debug(false),
m_nDim(1)
{
warn_deprecated("class AqueousTransport",
"Non-functional. To be removed after Cantera 2.2.");
}
bool AqueousTransport::initLiquid(LiquidTransportParams& tr)