Remove unused fields of ElectroChemicalReaction

This commit is contained in:
Ray Speth 2015-05-23 23:38:00 -04:00
parent eb74329d1b
commit b84c1e5685
2 changed files with 0 additions and 18 deletions

View file

@ -240,18 +240,6 @@ public:
*/
doublereal film_resistivity;
//! Power of the equilibrium constant within the Affinity representation
/*!
* Only valid for Affinity representation. Default = 1.0.
*/
doublereal equilibrium_constant_power;
//! Power of the "One minus Affinity" term within the Affinity representation
/*!
* Only valid for Affinity representation. Default = 1.0.
*/
doublereal affinity_power;
//! Forward value of the apparent Electrochemical transfer coefficient
doublereal beta;

View file

@ -258,8 +258,6 @@ InterfaceReaction::InterfaceReaction(const Composition& reactants_,
ElectrochemicalReaction::ElectrochemicalReaction()
: film_resistivity(0.0)
, equilibrium_constant_power(1.0)
, affinity_power(1.0)
, beta(0.0)
, exchange_current_density_formulation(false)
{
@ -270,8 +268,6 @@ ElectrochemicalReaction::ElectrochemicalReaction(const Composition& reactants_,
const Arrhenius& rate_)
: InterfaceReaction(reactants_, products_, rate_)
, film_resistivity(0.0)
, equilibrium_constant_power(1.0)
, affinity_power(1.0)
, beta(0.0)
, exchange_current_density_formulation(false)
{
@ -537,8 +533,6 @@ void setupElectrochemicalReaction(ElectrochemicalReaction& R,
}
getOptionalFloat(rxn_node, "filmResistivity", R.film_resistivity);
getOptionalFloat(rxn_node, "affinityPower", R.affinity_power);
getOptionalFloat(rxn_node, "equilibriumConstantPower", R.equilibrium_constant_power);
setupInterfaceReaction(R, rxn_node);