Cantera
2.2.1
|
Class LiquidTransportData holds transport parameters for a specific liquid-phase species. More...
#include <LiquidTransportData.h>
Public Member Functions | |
LiquidTransportData (const LiquidTransportData &right) | |
LiquidTransportData & | operator= (const LiquidTransportData &right) |
Public Attributes | |
std::string | speciesName |
A LiquidTransportData object is instantiated for each species. More... | |
LTPspecies * | hydroRadius |
Model type for the hydroradius. More... | |
LTPspecies * | viscosity |
Model type for the viscosity. More... | |
LTPspecies * | ionConductivity |
Model type for the ionic conductivity. More... | |
std::vector< LTPspecies * > | mobilityRatio |
Model type for the mobility ratio. More... | |
std::vector< LTPspecies * > | selfDiffusion |
Model type for the self diffusion coefficients. More... | |
LTPspecies * | thermalCond |
Model type for the thermal conductivity. More... | |
LTPspecies * | electCond |
Model type for the electrical conductivity. More... | |
LTPspecies * | speciesDiffusivity |
Model type for the speciesDiffusivity. More... | |
Class LiquidTransportData holds transport parameters for a specific liquid-phase species.
A LiquidTransportData object is created for each species.
This class is mainly used to collect transport properties from the parse phase in the TransportFactory and transfer them to the Transport class. Transport properties are expressed by subclasses of LTPspecies. One may need to be careful about deleting pointers to LTPspecies objects created in the TransportFactory.
All of the pointers in this class are shallow pointers. Therefore, this is a passthrough class, which keeps track of pointer ownership by zeroing pointers as we go. Yes, Yes, yes, this is not good.
Definition at line 29 of file LiquidTransportData.h.
std::string speciesName |
A LiquidTransportData object is instantiated for each species.
This is the species name for which this object is instantiated.
Definition at line 39 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), and AqueousTransport::getLiquidTransportData().
LTPspecies* hydroRadius |
Model type for the hydroradius.
shallow pointer that should be zero during destructor
Definition at line 45 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and SimpleTransport::initLiquid().
LTPspecies* viscosity |
Model type for the viscosity.
shallow pointer that should be zero during destructor
Definition at line 51 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and SimpleTransport::initLiquid().
LTPspecies* ionConductivity |
Model type for the ionic conductivity.
shallow pointer that should be zero during destructor
Definition at line 57 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and LTI_StefanMaxwell_PPN::setParameters().
std::vector<LTPspecies*> mobilityRatio |
Model type for the mobility ratio.
shallow pointers that should be zero during destructor
Definition at line 63 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and LTI_StefanMaxwell_PPN::setParameters().
std::vector<LTPspecies*> selfDiffusion |
Model type for the self diffusion coefficients.
shallow pointers that should be zero during destructor
Definition at line 69 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and LTI_StefanMaxwell_PPN::setParameters().
LTPspecies* thermalCond |
Model type for the thermal conductivity.
shallow pointer that should be zero during destructor
Definition at line 75 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), and SimpleTransport::initLiquid().
LTPspecies* electCond |
Model type for the electrical conductivity.
shallow pointer that should be zero during destructor
Definition at line 81 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData().
LTPspecies* speciesDiffusivity |
Model type for the speciesDiffusivity.
shallow pointer that should be zero during destructor
Definition at line 87 of file LiquidTransportData.h.
Referenced by TransportFactory::getLiquidSpeciesTransportData(), LiquidTransport::initLiquid(), SimpleTransport::initLiquid(), and LTI_Pairwise_Interaction::setParameters().