Ejemplo n.º 1
0
Mu0Poly::Mu0Poly(double tlow, double thigh, double pref, const double* coeffs) :
    SpeciesThermoInterpType(tlow, thigh, pref),
    m_numIntervals(0),
    m_H298(0.0)
{
    processCoeffs(coeffs);
}
Ejemplo n.º 2
0
Mu0Poly<ValAndDerivType>::Mu0Poly(size_t n, doublereal tlow, doublereal thigh, doublereal pref, const doublereal* coeffs) :
    m_numIntervals(0),
    m_H298(0.0),
    m_lowT(tlow),
    m_highT(thigh),
    m_Pref(pref),
    m_index(n)
{

    processCoeffs(coeffs);
}
Ejemplo n.º 3
0
void Mu0Poly<ValAndDerivType>::modifyParameters(doublereal* coeffs)
{
    processCoeffs(coeffs);
}
Ejemplo n.º 4
0
void Mu0Poly::modifyParameters(doublereal* coeffs)
{
    processCoeffs(coeffs);
}