8 for (
int k = 1; k < m_N; ++k) {
9 ret += m_Ck[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1);
21 for (
int k = 1; k < m_N; ++k) {
23 for (
int i = 1; i < order; ++i)
24 tret *= (m_bk[k] - i + 1);
25 ret += m_Ck[k] / m_bk[k] * tret * pow(n / m_n0, m_bk[k] - 1 - order) / pow(m_n0, order);
34 for (
int k = 1; k < m_N; ++k) {
35 ret += m_dCkdT[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1);
36 ret += -m_Ck[k] / m_bk[k] / m_bk[k] * m_dbkdT[k] * pow(n / m_n0, m_bk[k] - 1);
37 ret += m_Ck[k] / m_bk[k] * pow(n / m_n0, m_bk[k] - 1) * log(n / m_n0) * m_dbkdT[k];
Header with helper mean-field classes.
virtual double dv(int order, double n) const
Calculates the density derivatives of the mean field.
virtual double v(double n) const
Calculates the mean field value at a given density.
virtual double dvdT(double n) const
Calculates the temperature derivative of the mean field.
The main namespace where all classes and functions of the Thermal-FIST library reside.