Simply changed a variable name from m_hydroradius to m_hydroRadius.
This commit is contained in:
parent
db68520f70
commit
374641f3e2
3 changed files with 3 additions and 3 deletions
|
|
@ -57,7 +57,7 @@ namespace Cantera {
|
|||
{
|
||||
if (&right != this) {
|
||||
speciesName = right.speciesName;
|
||||
hydroradius = right.hydroradius;
|
||||
hydroRadius = right.hydroRadius;
|
||||
viscosity = right.viscosity;
|
||||
thermalCond = right.thermalCond;
|
||||
electCond = right.electCond;
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ namespace Cantera {
|
|||
std::string speciesName;
|
||||
|
||||
//! Model type for the hydroradius
|
||||
LTPspecies* hydroradius;
|
||||
LTPspecies* hydroRadius;
|
||||
|
||||
//! Model type for the viscosity
|
||||
LTPspecies* viscosity;
|
||||
|
|
|
|||
|
|
@ -319,7 +319,7 @@ namespace Cantera {
|
|||
m_coeffDiff_Ns[k] = ltd.speciesDiffusivity;
|
||||
|
||||
if ( !(m_coeffDiff_Ns[k]) ) {
|
||||
m_coeffHydroRadius_Ns[k] = ltd.hydroradius;
|
||||
m_coeffHydroRadius_Ns[k] = ltd.hydroRadius;
|
||||
if ( !(m_coeffHydroRadius_Ns[k]) ) {
|
||||
throw CanteraError("SimpleTransport::initLiquid",
|
||||
"Neither diffusivity nor hydroradius is set for species " + spName);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue