Remove unused fields of ElectroChemicalReaction
This commit is contained in:
parent
eb74329d1b
commit
b84c1e5685
2 changed files with 0 additions and 18 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue