Cantera
2.0
|
Class SolidTransport implements transport properties for solids. More...
#include <SolidTransport.h>
Public Member Functions | |
SolidTransport () | |
Default constructor. | |
SolidTransport (const SolidTransport &right) | |
Copy Constructor. | |
virtual | ~SolidTransport () |
Destructor. | |
SolidTransport & | operator= (const SolidTransport &right) |
Assignment operator. | |
virtual Transport * | duplMyselfAsTransport () const |
Duplication routine for objects which inherit from Transport. | |
virtual int | model () const |
Transport model. | |
virtual doublereal | thermalConductivity () |
Returns the mixture thermal conductivity in W/m/K. | |
virtual void | getMixDiffCoeffs (doublereal *const d) |
Returns a vector of mixture averaged diffusion coefficients. | |
virtual void | getMobilities (doublereal *const mobil) |
Compute the electrical mobilities of the species from the diffusion coefficients, using the Einstein relation. | |
virtual void | setParameters (const int n, const int k, const doublereal *const p) |
Set model parameters for derived classes. | |
virtual doublereal | electricalConductivity () |
The electrical conductivity (Siemens/m). | |
thermo_t & | thermo () |
Phase object. | |
bool | ready () |
Returns true if the transport manager is ready for use. | |
void | setNDim (const int ndim) |
Set the number of dimensions to be expected in flux expressions. | |
size_t | nDim () const |
Return the number of dimensions in flux expressions. | |
void | checkSpeciesIndex (size_t k) const |
Check that the specified species index is in range Throws an exception if k is greater than nSpecies() | |
void | checkSpeciesArraySize (size_t kk) const |
Check that an array size is at least nSpecies() Throws an exception if kk is less than nSpecies(). | |
virtual doublereal | getElectricConduct () |
Compute the mixture electrical conductivity (S m-1) at the current conditions of the phase (Siemens m-1) | |
virtual void | getElectricCurrent (int ndim, const doublereal *grad_T, int ldx, const doublereal *grad_X, int ldf, const doublereal *grad_V, doublereal *current) |
Compute the electric current density in A/m^2. | |
virtual void | getSpeciesFluxes (size_t ndim, const doublereal *const grad_T, size_t ldx, const doublereal *const grad_X, size_t ldf, doublereal *const fluxes) |
Get the species diffusive mass fluxes wrt to the specified solution averaged velocity, given the gradients in mole fraction and temperature. | |
virtual void | getSpeciesFluxesES (size_t ndim, const doublereal *grad_T, size_t ldx, const doublereal *grad_X, size_t ldf, const doublereal *grad_Phi, doublereal *fluxes) |
Get the species diffusive mass fluxes wrt to the mass averaged velocity, given the gradients in mole fraction, temperature and electrostatic potential. | |
virtual void | getSpeciesVdiff (size_t ndim, const doublereal *grad_T, int ldx, const doublereal *grad_X, int ldf, doublereal *Vdiff) |
Get the species diffusive velocities wrt to the mass averaged velocity, given the gradients in mole fraction and temperature. | |
virtual void | getSpeciesVdiffES (size_t ndim, const doublereal *grad_T, int ldx, const doublereal *grad_X, int ldf, const doublereal *grad_Phi, doublereal *Vdiff) |
Get the species diffusive velocities wrt to the mass averaged velocity, given the gradients in mole fraction, temperature, and electrostatic potential. | |
virtual void | getMolarFluxes (const doublereal *const state1, const doublereal *const state2, const doublereal delta, doublereal *const cfluxes) |
Get the molar fluxes [kmol/m^2/s], given the thermodynamic state at two nearby points. | |
virtual void | getMassFluxes (const doublereal *state1, const doublereal *state2, doublereal delta, doublereal *mfluxes) |
Get the mass fluxes [kg/m^2/s], given the thermodynamic state at two nearby points. | |
virtual void | getThermalDiffCoeffs (doublereal *const dt) |
Return a vector of Thermal diffusion coefficients [kg/m/sec]. | |
virtual void | getBinaryDiffCoeffs (const size_t ld, doublereal *const d) |
Returns the matrix of binary diffusion coefficients [m^2/s]. | |
virtual void | getMultiDiffCoeffs (const size_t ld, doublereal *const d) |
Return the Multicomponent diffusion coefficients. Units: [m^2/s]. | |
virtual void | getMixDiffCoeffsMole (doublereal *const d) |
Returns a vector of mixture averaged diffusion coefficients. | |
virtual void | getMixDiffCoeffsMass (doublereal *const d) |
Returns a vector of mixture averaged diffusion coefficients. | |
void | setVelocityBasis (VelocityBasis ivb) |
Sets the velocity basis. | |
VelocityBasis | getVelocityBasis () const |
Gets the velocity basis. | |
Transport Properties | |
virtual doublereal | viscosity () |
The viscosity in Pa-s. | |
virtual void | getSpeciesViscosities (doublereal *const visc) |
Returns the pure species viscosities. | |
virtual doublereal | bulkViscosity () |
The bulk viscosity in Pa-s. | |
virtual doublereal | ionConductivity () |
The ionic conductivity in 1/ohm/m. | |
virtual void | getSpeciesIonConductivity (doublereal *const ionCond) |
Returns the pure species ionic conductivity. | |
virtual void | mobilityRatio (double *mobRat) |
Returns the pointer to the mobility ratios of the species in the phase. | |
virtual void | getSpeciesMobilityRatio (double **mobRat) |
Returns the pure species limit of the mobility ratios. | |
virtual void | selfDiffusion (doublereal *const selfDiff) |
Returns the self diffusion coefficients of the species in the phase. | |
virtual void | getSpeciesSelfDiffusion (double **selfDiff) |
Returns the pure species self diffusion in solution of each species. | |
virtual void | getFluidMobilities (doublereal *const mobil_f) |
Get the fluid mobilities (s kmol/kg). | |
Protected Member Functions | |
Transport manager construction | |
These methods are used internally during construction. | |
virtual bool | initGas (GasTransportParams &tr) |
Called by TransportFactory to set parameters. | |
virtual bool | initLiquid (LiquidTransportParams &tr) |
Called by TransportFactory to set parameters. | |
void | setThermo (thermo_t &thermo) |
Specifies the ThermPhase object. | |
void | finalize () |
Enable the transport object for use. | |
Protected Attributes | |
thermo_t * | m_thermo |
pointer to the object representing the phase | |
bool | m_ready |
true if finalize has been called | |
size_t | m_nsp |
Number of species. | |
size_t | m_nDim |
Number of dimensions used in flux expressions. | |
int | m_velocityBasis |
Velocity basis from which diffusion velocities are computed. | |
Private Attributes | |
size_t | m_nmobile |
number of mobile species | |
vector_fp | m_Adiff |
Coefficient for the diffusivity of species within a solid. | |
vector_fp | m_Ndiff |
Temperature power coefficient for the diffusivity of species in a solid. | |
vector_fp | m_Ediff |
Arrhenius factor for the species diffusivities of a solid. | |
vector_int | m_sp |
Index of mobile species to global species. | |
doublereal | m_Alam |
Coefficient for the thermal conductivity of a solid. | |
doublereal | m_Nlam |
Temperature power coefficient for the thermal conductivity of a solid. | |
doublereal | m_Elam |
Arrhenius factor for the thermal conductivity of a solid. | |
vector_fp | m_work |
extra fp array of length nSpecies() | |
Friends | |
class | TransportFactory |
Class SolidTransport implements transport properties for solids.
Definition at line 27 of file SolidTransport.h.
SolidTransport | ( | ) |
Default constructor.
Definition at line 21 of file SolidTransport.cpp.
Referenced by SolidTransport::duplMyselfAsTransport().
SolidTransport | ( | const SolidTransport & | right | ) |
Copy Constructor.
right | Object to be copied |
Definition at line 38 of file SolidTransport.cpp.
|
virtual |
Destructor.
Definition at line 34 of file SolidTransport.cpp.
SolidTransport & operator= | ( | const SolidTransport & | right | ) |
Assignment operator.
This is NOT a virtual function.
right | Reference to Transport object to be copied into the current one. |
Definition at line 56 of file SolidTransport.cpp.
References SolidTransport::m_Adiff, SolidTransport::m_Alam, SolidTransport::m_Ediff, SolidTransport::m_Elam, SolidTransport::m_Ndiff, SolidTransport::m_Nlam, SolidTransport::m_nmobile, SolidTransport::m_sp, and Transport::operator=().
|
virtual |
Duplication routine for objects which inherit from Transport.
This virtual routine can be used to duplicate Transport objects inherited from Transport even if the application only has a pointer to Transport to work with.
These routines are basically wrappers around the derived copy constructor.
Reimplemented from Transport.
Definition at line 75 of file SolidTransport.cpp.
References SolidTransport::SolidTransport().
|
inlinevirtual |
Transport model.
The transport model is the set of equations used to compute the transport properties. This virtual method returns an integer flag that identifies the transport model implemented. The base class returns 0.
Reimplemented from Transport.
Definition at line 66 of file SolidTransport.h.
|
virtual |
Returns the mixture thermal conductivity in W/m/K.
Units are in W / m K or equivalently kg m / s3 K
Reimplemented from Transport.
Definition at line 129 of file SolidTransport.cpp.
References SolidTransport::m_Alam, SolidTransport::m_Elam, SolidTransport::m_Nlam, Transport::m_thermo, and Phase::temperature().
|
virtual |
Returns a vector of mixture averaged diffusion coefficients.
Mixture-averaged diffusion coefficients [m^2/s]. If the
transport manager implements a mixture-averaged diffusion model, then this method returns the array of mixture-averaged diffusion coefficients. Otherwise it throws an exception.
d | Return vector of mixture averaged diffusion coefficients Units = m2/s. Length = n_sp |
Reimplemented from Transport.
Definition at line 146 of file SolidTransport.cpp.
References SolidTransport::m_Adiff, SolidTransport::m_Ediff, SolidTransport::m_Ndiff, SolidTransport::m_nmobile, SolidTransport::m_sp, Transport::m_thermo, Phase::nSpecies(), and Phase::temperature().
Referenced by SolidTransport::getMobilities().
|
virtual |
Compute the electrical mobilities of the species from the diffusion coefficients, using the Einstein relation.
Frequently, but not always, the mobility is calculated from the diffusion coefficient using the Einstein relation
\[ \mu^e_k = \frac{F D_k}{R T} \]
units (m^2/V/s).
mobil | Returns the mobilities of the species in array mobil_e . The array must be dimensioned at least as large as the number of species. |
Reimplemented from Transport.
Definition at line 113 of file SolidTransport.cpp.
References Cantera::Boltzmann, SolidTransport::getMixDiffCoeffs(), Transport::m_thermo, Phase::nSpecies(), and Phase::temperature().
Referenced by SolidTransport::electricalConductivity().
|
virtual |
Set model parameters for derived classes.
This method may be derived in subclasses to set model-specific parameters. The primary use of this class is to set parameters while in the middle of a calculation without actually having to dynamically cast the base Transport pointer.
type | Specifies the type of parameters to set 0 : Diffusion coefficient 1 : Thermal Conductivity The rest are currently unused. |
k | Species index to set the parameters on |
p | Vector of parameters. The length of the vector varies with the parameterization |
Reimplemented from Transport.
Definition at line 81 of file SolidTransport.cpp.
References SolidTransport::m_Adiff, SolidTransport::m_Alam, SolidTransport::m_Ediff, SolidTransport::m_Elam, SolidTransport::m_Ndiff, SolidTransport::m_Nlam, SolidTransport::m_nmobile, SolidTransport::m_sp, Transport::m_thermo, SolidTransport::m_work, and Phase::nSpecies().
|
virtual |
The electrical conductivity (Siemens/m).
Reimplemented from Transport.
Definition at line 159 of file SolidTransport.cpp.
References Phase::charge(), SolidTransport::getMobilities(), Transport::m_thermo, SolidTransport::m_work, Phase::molarDensity(), Phase::moleFraction(), and Phase::nSpecies().
|
inlineinherited |
Phase object.
Every transport manager is designed to compute properties for a specific phase of a mixture, which might be a liquid solution, a gas mixture, a surface, etc. This method returns a reference to the object representing the phase itself.
Definition at line 239 of file TransportBase.h.
References Transport::m_thermo.
Referenced by Transport::setThermo().
|
inherited |
Returns true if the transport manager is ready for use.
Definition at line 75 of file TransportBase.cpp.
References Transport::m_ready.
Referenced by Transport::finalize(), and Transport::setThermo().
|
inherited |
Set the number of dimensions to be expected in flux expressions.
Internal memory will be set with this value.
ndim | Number of dimensions in flux expressions |
Definition at line 83 of file TransportBase.cpp.
References Transport::m_nDim.
|
inlineinherited |
Return the number of dimensions in flux expressions.
Definition at line 261 of file TransportBase.h.
References Transport::m_nDim.
|
inherited |
Check that the specified species index is in range Throws an exception if k is greater than nSpecies()
Definition at line 88 of file TransportBase.cpp.
References Transport::m_nsp.
|
inherited |
Check that an array size is at least nSpecies() Throws an exception if kk is less than nSpecies().
Used before calls which take an array pointer.
Definition at line 95 of file TransportBase.cpp.
References Transport::m_nsp.
|
inlinevirtualinherited |
The viscosity in Pa-s.
Reimplemented in SimpleTransport, LiquidTransport, AqueousTransport, WaterTransport, FtnTransport, and GasTransport.
Definition at line 283 of file TransportBase.h.
References Transport::err().
Referenced by DustyGasTransport::getMolarFluxes(), and StFlow::updateTransport().
|
inlinevirtualinherited |
Returns the pure species viscosities.
The units are Pa-s and the length is the number of species
visc | Vector of viscosities |
Reimplemented in SimpleTransport, LiquidTransport, AqueousTransport, and GasTransport.
Definition at line 293 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
The bulk viscosity in Pa-s.
The bulk viscosity is only non-zero in rare cases. Most transport managers either overload this method to return zero, or do not implement it, in which case an exception is thrown if called.
Reimplemented in WaterTransport, and FtnTransport.
Definition at line 303 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
The ionic conductivity in 1/ohm/m.
Reimplemented in LiquidTransport.
Definition at line 310 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns the pure species ionic conductivity.
The units are 1/ohm/m and the length is the number of species
ionCond | Vector of ionic conductivities |
Reimplemented in LiquidTransport.
Definition at line 320 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns the pointer to the mobility ratios of the species in the phase.
mobRat | Returns a matrix of mobility ratios for the current problem. The mobility ratio mobRat(i,j) is defined as the ratio of the mobility of species i to species j. |
mobRat(i,j) = mu_i / mu_j
It is returned in fortran-ordering format. ie. it is returned as mobRat[k], where
k = j * nsp + i
The size of mobRat must be at least equal to nsp*nsp
Reimplemented in LiquidTransport.
Definition at line 342 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns the pure species limit of the mobility ratios.
The value is dimensionless and the length is the number of species
mobRat | Vector of mobility ratios |
Reimplemented in LiquidTransport.
Definition at line 352 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns the self diffusion coefficients of the species in the phase.
The self diffusion coefficient is the diffusion coefficient of a tracer species at the current temperature and composition of the species. Therefore, the dilute limit of transport is assumed for the tracer species. The effective formula may be calculated from the stefan-maxwell formulation by adding another row for the tracer species, assigning all D's to be equal to the respective species D's, and then taking the limit as the tracer species mole fraction goes to zero. The corresponding flux equation for the tracer species k in units of kmol m-2 s-1 is.
\[ J_k = - D^{sd}_k \frac{C_k}{R T} \nabla \mu_k \]
The derivative is taken at constant T and P.
The self diffusion calculation is handled by subclasses of LiquidTranInteraction as specified in the input file. These in turn employ subclasses of LTPspecies to determine the individual species self diffusion coeffs.
selfDiff | Vector of self-diffusion coefficients Length = number of species in phase units = m**2 s-1 |
Reimplemented in LiquidTransport.
Definition at line 382 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns the pure species self diffusion in solution of each species.
The pure species molar volumes are evaluated using the appropriate subclasses of LTPspecies as specified in the input file.
selfDiff | array of length "number of species" to hold returned self diffusion coeffs. |
Reimplemented in LiquidTransport.
Definition at line 396 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Get the fluid mobilities (s kmol/kg).
This function returns the fluid mobilities. Usually, you have to multiply Faraday's constant into the resulting expression to general a species flux expression.
Frequently, but not always, the mobility is calculated from the diffusion coefficient using the Einstein relation
\[ \mu^f_k = \frac{D_k}{R T} \]
mobil_f | Returns the mobilities of the species in array mobil . The array must be dimensioned at least as large as the number of species. |
Reimplemented in LiquidTransport, SimpleTransport, and AqueousTransport.
Definition at line 457 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Compute the mixture electrical conductivity (S m-1) at the current conditions of the phase (Siemens m-1)
The electrical conductivity, \( \sigma \), relates the electric current density, J, to the electric field, E.
\[ \vec{J} = \sigma \vec{E} \]
We assume here that the mixture electrical conductivity is an isotropic quantity, at this stage. Tensors may be included at a later time.
The conductivity is the reciprocal of the resistivity.
The units are Siemens m-1, where 1 S = 1 A / volt = 1 s^3 A^2 /kg /m^2
Reimplemented in LiquidTransport.
Definition at line 482 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Compute the electric current density in A/m^2.
Calculates the electric current density as a vector, given the gradients of the field variables.
ndim | The number of spatial dimensions (1, 2, or 3). |
grad_T | The temperature gradient (ignored in this model). |
ldx | Leading dimension of the grad_X array. |
grad_X | The gradient of the mole fraction |
ldf | Leading dimension of the grad_V and current vectors. |
grad_V | The electrostatic potential gradient. |
current | The electric current in A/m^2. This is a vector of length ndim |
Reimplemented in LiquidTransport.
Definition at line 500 of file TransportBase.h.
References Transport::err().
|
virtualinherited |
Get the species diffusive mass fluxes wrt to the specified solution averaged velocity, given the gradients in mole fraction and temperature.
Units for the returned fluxes are kg m-2 s-1.
Usually the specified solution average velocity is the mass averaged velocity. This is changed in some subclasses, however.
ndim | Number of dimensions in the flux expressions |
grad_T | Gradient of the temperature (length = ndim) |
ldx | Leading dimension of the grad_X array (usually equal to m_nsp but not always) |
grad_X | Gradients of the mole fraction Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
ldf | Leading dimension of the fluxes array (usually equal to m_nsp but not always) |
fluxes | Output of the diffusive mass fluxes Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
Reimplemented in LiquidTransport, SimpleTransport, AqueousTransport, MixTransport, and MultiTransport.
Definition at line 146 of file TransportBase.cpp.
References Transport::err().
Referenced by Transport::getSpeciesFluxesES().
|
inlinevirtualinherited |
Get the species diffusive mass fluxes wrt to the mass averaged velocity, given the gradients in mole fraction, temperature and electrostatic potential.
Units for the returned fluxes are kg m-2 s-1.
ndim | Number of dimensions in the flux expressions |
grad_T | Gradient of the temperature (length = ndim) |
ldx | Leading dimension of the grad_X array (usually equal to m_nsp but not always) |
grad_X | Gradients of the mole fraction Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
ldf | Leading dimension of the fluxes array (usually equal to m_nsp but not always) |
grad_Phi | Gradients of the electrostatic potential (length = ndim) |
fluxes | Output of the diffusive mass fluxes Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
Definition at line 560 of file TransportBase.h.
References Transport::getSpeciesFluxes().
|
inlinevirtualinherited |
Get the species diffusive velocities wrt to the mass averaged velocity, given the gradients in mole fraction and temperature.
Units for the returned velocities are m s-1
ndim | Number of dimensions in the flux expressions |
grad_T | Gradient of the temperature (length = ndim) |
ldx | Leading dimension of the grad_X array (usually equal to m_nsp but not always) |
grad_X | Gradients of the mole fraction Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
ldf | Leading dimension of the fluxes array (usually equal to m_nsp but not always) |
Vdiff | Output of the diffusive velocities wrt the mass-averaged velocity Flat vector with the m_nsp in the inner loop. length = ldx * ndim units are m / s. |
Reimplemented in LiquidTransport, and SimpleTransport.
Definition at line 593 of file TransportBase.h.
References Transport::err().
Referenced by Transport::getSpeciesVdiffES().
|
inlinevirtualinherited |
Get the species diffusive velocities wrt to the mass averaged velocity, given the gradients in mole fraction, temperature, and electrostatic potential.
Units for the returned velocities are m s-1.
ndim | Number of dimensions in the flux expressions |
grad_T | Gradient of the temperature (length = ndim) |
ldx | Leading dimension of the grad_X array (usually equal to m_nsp but not always) |
grad_X | Gradients of the mole fraction Flat vector with the m_nsp in the inner loop. length = ldx * ndim |
ldf | Leading dimension of the fluxes array (usually equal to m_nsp but not always) |
grad_Phi | Gradients of the electrostatic potential (length = ndim) |
Vdiff | Output of the diffusive velocities wrt the mass-averaged velocity Flat vector with the m_nsp in the inner loop. length = ldx * ndim units are m / s. |
Reimplemented in LiquidTransport, and SimpleTransport.
Definition at line 625 of file TransportBase.h.
References Transport::getSpeciesVdiff().
|
inlinevirtualinherited |
Get the molar fluxes [kmol/m^2/s], given the thermodynamic state at two nearby points.
state1 | Array of temperature, density, and mass fractions for state 1. |
state2 | Array of temperature, density, and mass fractions for state 2. |
delta | Distance from state 1 to state 2 (m). |
cfluxes | Output array containing the diffusive molar fluxes of species from state1 to state2. This is a flat vector with the m_nsp in the inner loop. length = ldx * ndim. Units are [kmol/m^2/s]. |
Reimplemented in MultiTransport, and DustyGasTransport.
Definition at line 650 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Get the mass fluxes [kg/m^2/s], given the thermodynamic state at two nearby points.
state1 | Array of temperature, density, and mass fractions for state 1. |
state2 | Array of temperature, density, and mass fractions for state 2. |
delta | Distance from state 1 to state 2 (m). |
mfluxes | Output array containing the diffusive mass fluxes of species from state1 to state2. This is a flat vector with the m_nsp in the inner loop. length = ldx * ndim. Units are [kg/m^2/s]. |
Reimplemented in MultiTransport.
Definition at line 671 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Return a vector of Thermal diffusion coefficients [kg/m/sec].
The thermal diffusion coefficient \( D^T_k \) is defined so that the diffusive mass flux of species k induced by the local temperature gradient is given by the following formula
\[ M_k J_k = -D^T_k \nabla \ln T. \]
The thermal diffusion coefficient can be either positive or negative.
dt | On return, dt will contain the species thermal diffusion coefficients. Dimension dt at least as large as the number of species. Units are kg/m/s. |
Reimplemented in LiquidTransport, SimpleTransport, AqueousTransport, MixTransport, MultiTransport, and FtnTransport.
Definition at line 693 of file TransportBase.h.
References Transport::err().
Referenced by StFlow::updateTransport().
|
inlinevirtualinherited |
Returns the matrix of binary diffusion coefficients [m^2/s].
ld | Inner stride for writing the two dimension diffusion coefficients into a one dimensional vector |
d | Diffusion coefficient matrix (must be at least m_k * m_k in length. |
Reimplemented in SimpleTransport, LiquidTransport, AqueousTransport, and GasTransport.
Definition at line 705 of file TransportBase.h.
References Transport::err().
Referenced by DustyGasTransport::updateBinaryDiffCoeffs().
|
inlinevirtualinherited |
Return the Multicomponent diffusion coefficients. Units: [m^2/s].
If the transport manager implements a multicomponent diffusion model, then this method returns the array of multicomponent diffusion coefficients. Otherwise it throws an exception.
ld | The dimension of the inner loop of d (usually equal to m_nsp) |
d | flat vector of diffusion coefficients, fortran ordering. d[ld*j+i] is the D_ij diffusion coefficient (the diffusion coefficient for species i due to species j). |
Reimplemented in DustyGasTransport, and MultiTransport.
Definition at line 721 of file TransportBase.h.
References Transport::err().
Referenced by StFlow::updateTransport().
|
inlinevirtualinherited |
Returns a vector of mixture averaged diffusion coefficients.
Reimplemented in GasTransport.
Definition at line 744 of file TransportBase.h.
References Transport::err().
|
inlinevirtualinherited |
Returns a vector of mixture averaged diffusion coefficients.
Reimplemented in GasTransport.
Definition at line 749 of file TransportBase.h.
References Transport::err().
|
inlineinherited |
Sets the velocity basis.
What the transport object does with this parameter is up to the individual operator. Currently, this is not functional for most transport operators including all of the gas-phase operators.
ivb | Species the velocity basis |
Definition at line 777 of file TransportBase.h.
References Transport::m_velocityBasis.
|
inlineinherited |
Gets the velocity basis.
What the transport object does with this parameter is up to the individual operator. Currently, this is not functional for most transport operators including all of the gas-phase operators.
Definition at line 789 of file TransportBase.h.
References Transport::m_velocityBasis.
|
inlineprotectedvirtualinherited |
Called by TransportFactory to set parameters.
Called by TransportFactory to set parameters.
This is called by classes that use the gas phase parameter list to initialize themselves.
tr | Reference to the parameter list that will be used to initialize the class |
Reimplemented in MixTransport, MultiTransport, and GasTransport.
Definition at line 819 of file TransportBase.h.
References Transport::err().
Referenced by TransportFactory::initTransport().
|
inlineprotectedvirtualinherited |
Called by TransportFactory to set parameters.
This is called by classes that use the liquid phase parameter list to initialize themselves.
tr | Reference to the parameter list that will be used to initialize the class |
Reimplemented in AqueousTransport, SimpleTransport, and LiquidTransport.
Definition at line 832 of file TransportBase.h.
References Transport::err().
Referenced by TransportFactory::initLiquidTransport().
|
protectedinherited |
Specifies the ThermPhase object.
thermo | Reference to the ThermoPhase object that the transport object will use |
Definition at line 112 of file TransportBase.cpp.
References Transport::m_nsp, Transport::m_thermo, Phase::nSpecies(), Transport::ready(), and Transport::thermo().
Referenced by TransportFactory::newTransport().
|
protectedinherited |
Enable the transport object for use.
Once finalize() has been called, the transport manager should be ready to compute any supported transport property, and no further modifications to the model parameters should be made.
Definition at line 136 of file TransportBase.cpp.
References Transport::m_ready, and Transport::ready().
|
private |
number of mobile species
This is equal to the
Definition at line 106 of file SolidTransport.h.
Referenced by SolidTransport::getMixDiffCoeffs(), SolidTransport::operator=(), and SolidTransport::setParameters().
|
private |
Coefficient for the diffusivity of species within a solid.
This is with respect to the lattice units = m**2 / s vector of length m_nmobile
Definition at line 114 of file SolidTransport.h.
Referenced by SolidTransport::getMixDiffCoeffs(), SolidTransport::operator=(), and SolidTransport::setParameters().
|
private |
Temperature power coefficient for the diffusivity of species in a solid.
vector of length m_nmobile
Definition at line 120 of file SolidTransport.h.
Referenced by SolidTransport::getMixDiffCoeffs(), SolidTransport::operator=(), and SolidTransport::setParameters().
|
private |
Arrhenius factor for the species diffusivities of a solid.
units = temperature vector of length m_nmobile
Definition at line 127 of file SolidTransport.h.
Referenced by SolidTransport::getMixDiffCoeffs(), SolidTransport::operator=(), and SolidTransport::setParameters().
|
private |
Index of mobile species to global species.
vector of length m_nmobile
Definition at line 133 of file SolidTransport.h.
Referenced by SolidTransport::getMixDiffCoeffs(), SolidTransport::operator=(), and SolidTransport::setParameters().
|
private |
Coefficient for the thermal conductivity of a solid.
units = kg m / s3 /K = W/m/K
Definition at line 139 of file SolidTransport.h.
Referenced by SolidTransport::operator=(), SolidTransport::setParameters(), and SolidTransport::thermalConductivity().
|
private |
Temperature power coefficient for the thermal conductivity of a solid.
Definition at line 142 of file SolidTransport.h.
Referenced by SolidTransport::operator=(), SolidTransport::setParameters(), and SolidTransport::thermalConductivity().
|
private |
Arrhenius factor for the thermal conductivity of a solid.
units = temperature
Definition at line 148 of file SolidTransport.h.
Referenced by SolidTransport::operator=(), SolidTransport::setParameters(), and SolidTransport::thermalConductivity().
|
private |
extra fp array of length nSpecies()
Definition at line 151 of file SolidTransport.h.
Referenced by SolidTransport::electricalConductivity(), and SolidTransport::setParameters().
|
protectedinherited |
pointer to the object representing the phase
Definition at line 857 of file TransportBase.h.
Referenced by SolidTransport::electricalConductivity(), GasTransport::getBinaryDiffCoeffs(), AqueousTransport::getBinaryDiffCoeffs(), AqueousTransport::getLiquidTransportData(), MultiTransport::getMassFluxes(), SolidTransport::getMixDiffCoeffs(), GasTransport::getMixDiffCoeffs(), AqueousTransport::getMixDiffCoeffs(), GasTransport::getMixDiffCoeffsMass(), GasTransport::getMixDiffCoeffsMole(), SolidTransport::getMobilities(), DustyGasTransport::getMolarFluxes(), MultiTransport::getMolarFluxes(), MultiTransport::getMultiDiffCoeffs(), MultiTransport::getSpeciesFluxes(), MixTransport::getSpeciesFluxes(), AqueousTransport::getSpeciesFluxesExt(), SimpleTransport::getSpeciesFluxesExt(), SimpleTransport::getSpeciesVdiff(), SimpleTransport::getSpeciesVdiffES(), GasTransport::initGas(), DustyGasTransport::initialize(), LiquidTransport::initLiquid(), SimpleTransport::initLiquid(), AqueousTransport::initLiquid(), WaterTransport::initTP(), Transport::operator=(), MixTransport::pressure_ig(), SolidTransport::setParameters(), Transport::setThermo(), AqueousTransport::stefan_maxwell_solve(), LiquidTransport::stefan_maxwell_solve(), SolidTransport::thermalConductivity(), Transport::thermo(), Transport::Transport(), MixTransport::update_C(), MultiTransport::update_C(), AqueousTransport::update_C(), SimpleTransport::update_C(), LiquidTransport::update_C(), LiquidTransport::update_Grad_lnAC(), MixTransport::update_T(), MultiTransport::update_T(), AqueousTransport::update_T(), SimpleTransport::update_T(), LiquidTransport::update_T(), MultiTransport::updateThermal_T(), DustyGasTransport::updateTransport_C(), and DustyGasTransport::updateTransport_T().
|
protectedinherited |
true if finalize has been called
Definition at line 860 of file TransportBase.h.
Referenced by Transport::finalize(), Transport::operator=(), Transport::ready(), and Transport::Transport().
|
protectedinherited |
Number of species.
Definition at line 863 of file TransportBase.h.
Referenced by Transport::checkSpeciesArraySize(), Transport::checkSpeciesIndex(), DustyGasTransport::eval_H_matrix(), MultiTransport::eval_L0000(), MultiTransport::eval_L0010(), MultiTransport::eval_L1000(), GasTransport::getBinaryDiffCoeffs(), AqueousTransport::getBinaryDiffCoeffs(), LiquidTransport::getBinaryDiffCoeffs(), SimpleTransport::getBinaryDiffCoeffs(), LiquidTransport::getElectricConduct(), LiquidTransport::getElectricCurrent(), AqueousTransport::getFluidMobilities(), SimpleTransport::getFluidMobilities(), LiquidTransport::getFluidMobilities(), MultiTransport::getMassFluxes(), GasTransport::getMixDiffCoeffs(), AqueousTransport::getMixDiffCoeffs(), SimpleTransport::getMixDiffCoeffs(), LiquidTransport::getMixDiffCoeffs(), GasTransport::getMixDiffCoeffsMass(), GasTransport::getMixDiffCoeffsMole(), MixTransport::getMobilities(), AqueousTransport::getMobilities(), SimpleTransport::getMobilities(), LiquidTransport::getMobilities(), DustyGasTransport::getMolarFluxes(), MultiTransport::getMultiDiffCoeffs(), DustyGasTransport::getMultiDiffCoeffs(), MultiTransport::getSpeciesFluxes(), MixTransport::getSpeciesFluxes(), AqueousTransport::getSpeciesFluxesExt(), SimpleTransport::getSpeciesFluxesExt(), LiquidTransport::getSpeciesFluxesExt(), LiquidTransport::getSpeciesMobilityRatio(), LiquidTransport::getSpeciesSelfDiffusion(), SimpleTransport::getSpeciesVdiff(), SimpleTransport::getSpeciesVdiffES(), LiquidTransport::getSpeciesVdiffExt(), MultiTransport::getThermalDiffCoeffs(), MixTransport::getThermalDiffCoeffs(), AqueousTransport::getThermalDiffCoeffs(), SimpleTransport::getThermalDiffCoeffs(), LiquidTransport::getThermalDiffCoeffs(), GasTransport::initGas(), MultiTransport::initGas(), MixTransport::initGas(), DustyGasTransport::initialize(), LiquidTransport::initLiquid(), SimpleTransport::initLiquid(), AqueousTransport::initLiquid(), LiquidTransport::mobilityRatio(), Transport::operator=(), LiquidTransport::selfDiffusion(), AqueousTransport::set_Grad_X(), SimpleTransport::set_Grad_X(), LiquidTransport::set_Grad_X(), Transport::setThermo(), MultiTransport::solveLMatrixEquation(), AqueousTransport::stefan_maxwell_solve(), LiquidTransport::stefan_maxwell_solve(), MultiTransport::thermalConductivity(), MixTransport::thermalConductivity(), AqueousTransport::thermalConductivity(), SimpleTransport::thermalConductivity(), Transport::Transport(), MixTransport::update_C(), MultiTransport::update_C(), AqueousTransport::update_C(), SimpleTransport::update_C(), LiquidTransport::update_C(), LiquidTransport::update_Grad_lnAC(), DustyGasTransport::updateBinaryDiffCoeffs(), MixTransport::updateCond_T(), SimpleTransport::updateCond_T(), AqueousTransport::updateCond_T(), LiquidTransport::updateCond_T(), GasTransport::updateDiff_T(), SimpleTransport::updateDiff_T(), AqueousTransport::updateDiff_T(), LiquidTransport::updateHydrodynamicRadius_T(), LiquidTransport::updateIonConductivity_T(), DustyGasTransport::updateKnudsenDiffCoeffs(), LiquidTransport::updateMobilityRatio_T(), LiquidTransport::updateSelfDiffusion_T(), GasTransport::updateSpeciesViscosities(), AqueousTransport::updateSpeciesViscosities(), MultiTransport::updateThermal_T(), DustyGasTransport::updateTransport_C(), GasTransport::updateViscosity_T(), SimpleTransport::updateViscosity_T(), AqueousTransport::updateViscosity_T(), LiquidTransport::updateViscosity_T(), GasTransport::viscosity(), AqueousTransport::viscosity(), SimpleTransport::viscosity(), and LiquidTransport::~LiquidTransport().
|
protectedinherited |
Number of dimensions used in flux expressions.
Definition at line 866 of file TransportBase.h.
Referenced by Transport::nDim(), Transport::operator=(), Transport::setNDim(), and Transport::Transport().
|
protectedinherited |
Velocity basis from which diffusion velocities are computed.
Defaults to the mass averaged basis = -2
Definition at line 870 of file TransportBase.h.
Referenced by SimpleTransport::getSpeciesFluxesExt(), Transport::getVelocityBasis(), LiquidTransport::initLiquid(), Transport::operator=(), Transport::setVelocityBasis(), LiquidTransport::stefan_maxwell_solve(), and Transport::Transport().