Forgot the member function getCp_R_ref() in the previous commit.

This commit adds that function.
This commit is contained in:
Harry Moffat 2005-10-24 22:13:52 +00:00
parent 77bbce6f39
commit e050c6fc10

View file

@ -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 ------------------------