Overwritten -> Overridden

This commit is contained in:
Bryan W. Weber 2016-01-22 17:55:58 -05:00
parent 02f0e273d9
commit 97697e09e1
9 changed files with 23 additions and 23 deletions

View file

@ -273,7 +273,7 @@ public:
//! Update the standard state chemical potentials and species equilibrium
//! constant entries
/*!
* Virtual because it is overwritten when dealing with experimental open
* Virtual because it is overridden when dealing with experimental open
* circuit voltage overrides
*/
virtual void updateMu0();

View file

@ -646,7 +646,7 @@ protected:
public:
//! Set the internally stored density (gm/m^3) of the phase.
/*!
* Overwritten setDensity() function is necessary because the density is not
* Overridden setDensity() function is necessary because the density is not
* an independent variable.
*
* This function will now throw an error condition
@ -668,7 +668,7 @@ public:
//! Set the internally stored molar density (kmol/m^3) of the phase.
/**
* Overwritten setMolarDensity() function is necessary because the density
* Overridden setMolarDensity() function is necessary because the density
* is not an independent variable.
*
* This function will now throw an error condition if the input isn't

View file

@ -1332,7 +1332,7 @@ protected:
public:
//! Set the internally stored density (kg/m^3) of the phase.
/*!
* Overwritten setDensity() function is necessary because the density is not
* Overridden setDensity() function is necessary because the density is not
* an independent variable.
*
* This function will now throw an error condition.
@ -1354,7 +1354,7 @@ public:
//! Set the internally stored molar density (kmol/m^3) for the phase.
/**
* Overwritten setMolarDensity() function is necessary because of the
* Overridden setMolarDensity() function is necessary because of the
* underlying water model.
*
* This function will now throw an error condition if the input isn't
@ -1790,7 +1790,7 @@ public:
//! pressure, and solution concentration.
/*!
* See Denbigh p. 278 for a thorough discussion. This class must be
* overwritten in classes which derive from MolalityVPSSTP. This function
* overridden in classes which derive from MolalityVPSSTP. This function
* takes over from the molar-based activity coefficient calculation,
* getActivityCoefficients(), in derived classes.
*

View file

@ -219,7 +219,7 @@ protected:
public:
/**
* Overwritten setDensity() function is necessary because the density is not
* Overridden setDensity() function is necessary because the density is not
* an independent variable.
*
* This function will now throw an error condition
@ -233,7 +233,7 @@ public:
void setDensity(const doublereal rho);
/**
* Overwritten setMolarDensity() function is necessary because the density
* Overridden setMolarDensity() function is necessary because the density
* is not an independent variable.
*
* This function will now throw an error condition.

View file

@ -224,7 +224,7 @@ public:
void calcDensity();
/**
* Overwritten setDensity() function is necessary because the density is not
* Overridden setDensity() function is necessary because the density is not
* an independent variable.
*
* This function will now throw an error condition
@ -238,7 +238,7 @@ public:
virtual void setDensity(const doublereal rho);
/**
* Overwritten setMolarDensity() function is necessary because the density
* Overridden setMolarDensity() function is necessary because the density
* is not an independent variable.
*
* This function will now throw an error condition.

View file

@ -75,7 +75,7 @@ public:
virtual void setPressure(doublereal p);
/**
* Overwritten setDensity() function is necessary because the density is not
* Overridden setDensity() function is necessary because the density is not
* an independent variable.
*
* This function will now throw an error condition
@ -87,7 +87,7 @@ public:
virtual void calcDensity();
/**
* Overwritten setMolarDensity() function is necessary because the density
* Overridden setMolarDensity() function is necessary because the density
* is not an independent variable.
*
* This function will now throw an error condition.

View file

@ -409,7 +409,7 @@ public:
//! the current solution temperature, pressure, and solution concentration.
/*!
* See Denbigh p. 278 for a thorough discussion. This class must be
* overwritten in classes which derive from MolalityVPSSTP. This function
* overridden in classes which derive from MolalityVPSSTP. This function
* takes over from the molar-based activity coefficient calculation,
* getActivityCoefficients(), in derived classes.
*
@ -540,7 +540,7 @@ protected:
//! concentration.
/*!
* See Denbigh p. 278 for a thorough discussion. This class must be
* overwritten in classes which derive from MolalityVPSSTP. This function
* overridden in classes which derive from MolalityVPSSTP. This function
* takes over from the molar-based activity coefficient calculation,
* getActivityCoefficients(), in derived classes.
*

View file

@ -978,7 +978,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the specific
* entropy and temperature have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param s specific entropy (J/kg/K)
* @param t temperature (K)
@ -994,7 +994,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the
* temperature and specific volume have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param t temperature (K)
* @param v specific volume (m^3/kg)
@ -1010,7 +1010,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the
* pressure and specific volume have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param p pressure (Pa)
* @param v specific volume (m^3/kg)
@ -1026,7 +1026,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the specific
* internal energy and pressure have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param u specific internal energy (J/kg)
* @param p pressure (Pa)
@ -1042,7 +1042,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the specific
* volume and the specific enthalpy have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param v specific volume (m^3/kg)
* @param h specific enthalpy (J/kg)
@ -1058,7 +1058,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the
* temperature and specific enthalpy have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param t temperature (K)
* @param h specific enthalpy (J/kg)
@ -1074,7 +1074,7 @@ public:
/*!
* This function fixes the internal state of the phase so that the
* temperature and pressure have the value of the input parameters.
* This base class function will print an error if not overwritten.
* This base class function will throw an exception if not overridden.
*
* @param s specific entropy (J/kg/K)
* @param h specific enthalpy (J/kg)
@ -1094,7 +1094,7 @@ public:
* the temperature that will yield the desired input pressure and density.
* The composition is held constant during this process.
*
* This base class function will print an error, if not overwritten.
* This base class function will print an error, if not overridden.
*
* @param rho Density (kg/m^3)
* @param p Pressure (Pa)

View file

@ -241,7 +241,7 @@ public:
protected:
/**
* @internal This internal routine must be overwritten because it is not
* @internal This internal routine must be overridden because it is not
* applicable.
*/
void _updateThermo() const;