|
| AntiochMixture (const GetPot &input, const std::string &material) |
| Deprecated Constructor. More...
|
|
| AntiochMixture (libMesh::UniquePtr< Antioch::ChemicalMixture< libMesh::Real > > &chem_mixture, libMesh::UniquePtr< Antioch::ReactionSet< libMesh::Real > > &reaction_set, libMesh::UniquePtr< Antioch::NASAThermoMixture< libMesh::Real, KineticsThermoCurveFit > > &nasa_mixture, libMesh::Real min_T=-std::numeric_limits< libMesh::Real >::max(), bool clip_negative_rho=false) |
| Constructor with user-built objects. More...
|
|
virtual | ~AntiochMixture () |
|
virtual void | register_parameter (const std::string ¶m_name, libMesh::ParameterMultiAccessor< libMesh::Number > ¶m_pointer) const |
| Each subclass will register its copy of an independent. More...
|
|
const Antioch::ReactionSet< libMesh::Real > & | reaction_set () const |
|
const Antioch::NASAThermoMixture< libMesh::Real, KineticsThermoCurveFit > & | nasa_mixture () const |
|
libMesh::Real | h_stat_mech_ref_correction (unsigned int species) const |
|
libMesh::Real | minimum_T () const |
|
bool | clip_negative_rho () const |
|
| AntiochChemistry (const GetPot &input, const std::string &material) |
| Deprecated Constructor. More...
|
|
| AntiochChemistry (libMesh::UniquePtr< Antioch::ChemicalMixture< libMesh::Real > > &chem_mixture) |
| User passes in built ChemicalMixture and this class takes ownership. More...
|
|
virtual | ~AntiochChemistry () |
|
libMesh::Real | M (unsigned int species) const |
| Species molar mass (molecular weight), [kg/mol]. More...
|
|
libMesh::Real | M_mix (const std::vector< libMesh::Real > &mass_fractions) const |
| Mixture molar mass (molecular weight), [kg/mol]. More...
|
|
libMesh::Real | R (unsigned int species) const |
| Species gas constant, [J/kg-K]. More...
|
|
libMesh::Real | R_mix (const std::vector< libMesh::Real > &mass_fractions) const |
| Mixture gas constant, [J/kg-K]. More...
|
|
libMesh::Real | X (unsigned int species, libMesh::Real M, libMesh::Real mass_fraction) const |
| Species mole fraction, unitless. More...
|
|
void | X (libMesh::Real M, const std::vector< libMesh::Real > &mass_fractions, std::vector< libMesh::Real > &mole_fractions) const |
| Mole fraction for all species, unitless. More...
|
|
libMesh::Real | molar_density (const unsigned int species, const libMesh::Real rho, const libMesh::Real mass_fraction) const |
| Species molar density, [mol/m^3]. More...
|
|
void | molar_densities (const libMesh::Real rho, const std::vector< libMesh::Real > &mass_fractions, std::vector< libMesh::Real > &molar_densities) const |
| Molar density for all species, [mol/m^3]. More...
|
|
unsigned int | n_species () const |
|
unsigned int | species_index (const std::string &species_name) const |
|
std::string | species_name (unsigned int species_index) const |
|
const Antioch::ChemicalMixture< libMesh::Real > & | chemical_mixture () const |
| Accessor to underlying Antioch object. More...
|
|
const AntiochChemistry & | chemistry () const |
| Accessor for this class. More...
|
|
| ParameterUser (const std::string &user_name) |
|
virtual | ~ParameterUser () |
|
virtual void | set_parameter (libMesh::Number ¶m_variable, const GetPot &input, const std::string ¶m_name, libMesh::Number param_default) |
| Each subclass can simultaneously read a parameter value from. More...
|
|
virtual void | set_parameter (libMesh::ParsedFunction< libMesh::Number, libMesh::Gradient > &func, const GetPot &input, const std::string &func_param_name, const std::string ¶m_default) |
| Each subclass can simultaneously read a parsed function from. More...
|
|
virtual void | set_parameter (libMesh::ParsedFEMFunction< libMesh::Number > &func, const GetPot &input, const std::string &func_param_name, const std::string ¶m_default) |
| Each subclass can simultaneously read a parsed function from. More...
|
|
virtual void | move_parameter (const libMesh::Number &old_parameter, libMesh::Number &new_parameter) |
| When cloning an object, we need to update parameter pointers. More...
|
|
virtual void | move_parameter (const libMesh::ParsedFunction< libMesh::Number, libMesh::Gradient > &old_func, libMesh::ParsedFunction< libMesh::Number, libMesh::Gradient > &new_func) |
| When cloning an object, we need to update parameter pointers. More...
|
|
virtual void | move_parameter (const libMesh::ParsedFEMFunction< libMesh::Number > &old_func, libMesh::ParsedFEMFunction< libMesh::Number > &new_func) |
| When cloning an object, we need to update parameter pointers. More...
|
|
template<typename KineticsThermoCurveFit>
class GRINS::AntiochMixture< KineticsThermoCurveFit >
Wrapper class for storing state for Antioch thermo and kinetics.
This class handles caching needed state for Antioch kinetics, and the thermodynamics required for the kinetics evaluation. Currently, we only support NASA type curve fits for required thermodynamic evaluations, but we template on the curve fit type.
This class is expected to be constructed before threads have been forked and will live during the whole program. By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build.
Definition at line 48 of file antioch_kinetics.h.