Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade/sensitivity #142

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
few typos corrections
SylvainPlessis committed Apr 29, 2015

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 3d43f80dd48e540d0b12773ec50c55bb08ac535b
2 changes: 1 addition & 1 deletion src/thermo/include/antioch/cea_curve_fit.h
Original file line number Diff line number Diff line change
@@ -562,7 +562,7 @@ namespace Antioch
template <typename CoeffType>
template <typename StateType>
inline
const StateType NASA7CurveFit<CoeffType>::dh_RT_minus_S_R_dpar (const TempCache<StateType> & cache, MacroThermo::Parameters parameter) const
const StateType NASA9CurveFit<CoeffType>::dh_RT_minus_S_R_dpar (const TempCache<StateType> & cache, MacroThermo::Parameters parameter) const
{
switch(parameter)
{
8 changes: 4 additions & 4 deletions src/thermo/include/antioch/nasa_evaluator.h
Original file line number Diff line number Diff line change
@@ -423,7 +423,7 @@ namespace Antioch
template <typename StateType>
inline
ANTIOCH_AUTO(StateType)
sensitivity_cv_over_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
NASAEvaluator<CoeffType,NASAFit>::sensitivity_cv_over_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
{
antioch_assert_less(species,this->n_species());
return _nasa_mixture.curve_fit(species).dcp_over_R_dpar(cache,parameter);
@@ -433,7 +433,7 @@ namespace Antioch
template <typename StateType>
inline
ANTIOCH_AUTO(StateType)
sensitivity_h_over_RT(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
NASAEvaluator<CoeffType,NASAFit>::sensitivity_h_over_RT(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
{
antioch_assert_less(species,this->n_species());
return _nasa_mixture.curve_fit(species).dh_over_RT_dpar(cache,parameter);
@@ -443,7 +443,7 @@ namespace Antioch
template <typename StateType>
inline
ANTIOCH_AUTO(StateType)
sensitivity_s_over_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
NASAEvaluator<CoeffType,NASAFit>::sensitivity_s_over_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
{
antioch_assert_less(species,this->n_species());
return _nasa_mixture.curve_fit(species).ds_over_R_dpar(cache,parameter);
@@ -453,7 +453,7 @@ namespace Antioch
template <typename StateType>
inline
ANTIOCH_AUTO(StateType)
sensitivity_h_RT_minus_s_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
NASAEvaluator<CoeffType,NASAFit>::sensitivity_h_RT_minus_s_R(const TempCache<StateType> & cache, MacroThermo::Parameters parameter, unsigned int species) const
{
antioch_assert_less(species,this->n_species());
return _nasa_mixture.curve_fit(species).dh_RT_minus_s_R_dpar(cache,parameter);