added missing methods to MetalPhase, made 2 methods of SurfPhase virtual
This commit is contained in:
parent
6e3cbb5d7a
commit
aad8e77789
2 changed files with 12 additions and 2 deletions
|
|
@ -74,6 +74,16 @@ namespace Cantera {
|
|||
for (n = 0; n < nsp; n++) mu[n] = 0.0;
|
||||
}
|
||||
|
||||
virtual void getEnthalpy_RT(doublereal* hrt) const {
|
||||
int n, nsp = nSpecies();
|
||||
for (n = 0; n < nsp; n++) hrt[n] = 0.0;
|
||||
}
|
||||
|
||||
virtual void getEntropy_R(doublereal* sr) const {
|
||||
int n, nsp = nSpecies();
|
||||
for (n = 0; n < nsp; n++) sr[n] = 0.0;
|
||||
}
|
||||
|
||||
virtual void getStandardChemPotentials(doublereal* mu0) const {
|
||||
int n, nsp = nSpecies();
|
||||
for (n = 0; n < nsp; n++) mu0[n] = 0.0;
|
||||
|
|
|
|||
|
|
@ -461,7 +461,7 @@ namespace Cantera {
|
|||
* @param hrt Output vector of nondimensional standard state enthalpies.
|
||||
* Length: m_kk.
|
||||
*/
|
||||
void getEnthalpy_RT(doublereal* hrt) const;
|
||||
virtual void getEnthalpy_RT(doublereal* hrt) const;
|
||||
|
||||
//! Get the array of nondimensional Entropy functions for the
|
||||
//! species standard states at the current <I>T</I> and <I>P</I> of the solution.
|
||||
|
|
@ -469,7 +469,7 @@ namespace Cantera {
|
|||
* @param sr Output vector of nondimensional standard state entropies.
|
||||
* Length: m_kk.
|
||||
*/
|
||||
void getEntropy_R(doublereal* sr) const;
|
||||
virtual void getEntropy_R(doublereal* sr) const;
|
||||
|
||||
//! Get the nondimensional Heat Capacities at constant
|
||||
//! pressure for the species standard states
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue