Simply changed a variable name from m_hydroradius to m_hydroRadius.

This commit is contained in:
John Hewson 2009-11-30 18:16:29 +00:00
parent db68520f70
commit 374641f3e2
3 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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);