Changed MixTransport::init(TransportParams& tr) to

MixTransport::initGas( GasTransportParams& tr )
This commit is contained in:
John Hewson 2009-09-19 00:26:33 +00:00
parent 00c36ac250
commit ecfc9a71f5
4 changed files with 6 additions and 6 deletions

View file

@ -50,7 +50,7 @@ namespace Cantera {
}
bool MixTransport::init(TransportParams& tr) {
bool MixTransport::initGas( GasTransportParams& tr ) {
// constant substance attributes
m_thermo = tr.thermo;

View file

@ -37,7 +37,7 @@ using namespace std;
namespace Cantera {
class TransportParams;
class GasTransportParams;
/**
* Class MixTransport implements mixture-averaged transport
@ -120,7 +120,7 @@ namespace Cantera {
* @param tr Transport parameters for all of the species
* in the phase.
*/
virtual bool init(TransportParams& tr);
virtual bool initGas( GasTransportParams& tr );
friend class TransportFactory;

View file

@ -142,7 +142,7 @@ namespace Cantera {
}
bool MultiTransport::init(TransportParams& tr) {
bool MultiTransport::initGas( GasTransportParams& tr ) {
// constant mixture attributes
//m_phase = tr.mix;

View file

@ -40,7 +40,7 @@ namespace Cantera {
TRANSOLVE_LU
};
class TransportParams;
class GasTransportParams;
/////////////////////////////////////////////////////////////
@ -162,7 +162,7 @@ namespace Cantera {
/**
* @internal
*/
virtual bool init(TransportParams& tr);
virtual bool initGas( GasTransportParams& tr );
/**