Forgot the member function getCp_R_ref() in the previous commit.
This commit adds that function.
This commit is contained in:
parent
77bbce6f39
commit
e050c6fc10
1 changed files with 10 additions and 0 deletions
|
|
@ -331,6 +331,16 @@ namespace Cantera {
|
|||
er[0] = m_s0_R[0];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the nondimensional Gibbs functions for the standard
|
||||
* state of the species at the current T and reference pressure
|
||||
* for the species.
|
||||
*/
|
||||
void SingleSpeciesTP::getCp_R_ref(doublereal* cpr) const {
|
||||
_updateThermo();
|
||||
cpr[0] = m_cp0_R[0];
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* ------------------ Setting the State ------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue