antioch-0.4.0
|
ChemKin format file reader. More...
#include <chemkin_parser.h>
Public Member Functions | |
ChemKinParser (const std::string &filename, bool verbose=true) | |
~ChemKinParser () | |
void | change_file (const std::string &filename) |
const std::vector< std::string > | species_list () |
read SPECIES block More... | |
void | read_thermodynamic_data (NASAThermoMixture< NumericType, NASA7CurveFit< NumericType > > &thermo) |
reads the thermo, NASA generalist, no templates for virtual More... | |
void | read_thermodynamic_data (NASAThermoMixture< NumericType, NASA9CurveFit< NumericType > > &) |
reads the thermo, NASA generalist, no templates for virtual More... | |
void | read_thermodynamic_data (NASAThermoMixture< NumericType, CEACurveFit< NumericType > > &) |
reads the thermo, NASA generalist, no templates for virtual More... | |
void | read_thermodynamic_data (CEAThermodynamics< NumericType > &) |
reads the thermo, CEA deprecated More... | |
bool | initialize () |
Read header of file, go to interesting part. More... | |
bool | reaction () |
go to next reaction More... | |
bool | rate_constant (const std::string &) |
go to next rate constant More... | |
bool | Troe () const |
return true if there's a Troe block More... | |
const std::string | reaction_id () const |
return reaction id, 0 if not provided More... | |
const std::string | reaction_equation () const |
return reaction equation More... | |
const std::string | reaction_chemical_process () const |
return reaction chemical process More... | |
const std::string | reaction_kinetics_model (const std::vector< std::string > &) const |
return reaction kinetics model More... | |
bool | reaction_reversible () const |
return reversible state More... | |
bool | reactants_pairs (std::vector< std::pair< std::string, int > > &reactants_pair) const |
return pairs of reactants and stoichiometric coefficients More... | |
bool | products_pairs (std::vector< std::pair< std::string, int > > &products_pair) const |
return pairs of products and stoichiometric coefficients More... | |
const std::map< std::string, NumericType > | reactants_orders () const |
return a map between reactants' name and found partial orders More... | |
const std::map< std::string, NumericType > | products_orders () const |
return a map between products' name and found partial orders More... | |
bool | is_k0 (unsigned int nrc, const std::string &kin_model) const |
return true if "name" attribute is found with value "k0" More... | |
unsigned int | where_is_k0 (const std::string &) const |
return index of k0 (0 or 1) More... | |
bool | rate_constant_preexponential_parameter (NumericType &A, std::string &A_unit, std::string &def_unit) const |
return true if pre exponentiel coefficient More... | |
bool | rate_constant_power_parameter (NumericType &b, std::string &b_unit, std::string &def_unit) const |
return true if beta coefficient More... | |
bool | rate_constant_activation_energy_parameter (NumericType &Ea, std::string &Ea_unit, std::string &def_unit) const |
return true if activation energie More... | |
bool | rate_constant_Berthelot_coefficient_parameter (NumericType &D, std::string &D_unit, std::string &def_unit) const |
return true if D coefficient More... | |
bool | rate_constant_Tref_parameter (NumericType &Tref, std::string &Tref_unit, std::string &def_unit) const |
return true if Tref More... | |
bool | rate_constant_lambda_parameter (std::vector< NumericType > &lambda, std::string &lambda_unit, std::string &def_unit) const |
return true if lambda More... | |
bool | rate_constant_cross_section_parameter (std::vector< NumericType > &sigma, std::string &sigma_unit, std::string &def_unit) const |
return true if sigma More... | |
bool | verify_Kooij_in_place_of_Arrhenius () const |
return true if a Kooij is called Arrhenuis More... | |
bool | efficiencies (std::vector< std::pair< std::string, NumericType > > &par_values) const |
return true if efficiencies are found More... | |
bool | Troe_alpha_parameter (NumericType &alpha, std::string &alpha_unit, std::string &def_unit) const |
return true is alpha More... | |
bool | Troe_T1_parameter (NumericType &T1, std::string &T1_unit, std::string &def_unit) const |
return true is alpha More... | |
bool | Troe_T2_parameter (NumericType &T2, std::string &T2_unit, std::string &def_unit) const |
return true is alpha More... | |
bool | Troe_T3_parameter (NumericType &T3, std::string &T3_unit, std::string &def_unit) const |
return true is alpha More... | |
virtual void | read_chemical_species (ChemicalMixture< NumericType > &) |
reads the mandatory data, not valid in xml && chemkin More... | |
virtual void | read_vibrational_data (ChemicalMixture< NumericType > &) |
reads the vibrational data, not valid in xml && chemkin More... | |
virtual void | read_electronic_data (ChemicalMixture< NumericType > &) |
reads the electronic data, not valid in xml && chemkin More... | |
virtual void | read_transport_data (TransportMixture< NumericType > &) |
reads the transport data, not valid in xml && chemkin More... | |
const std::string | file () const |
const std::string | type () const |
bool | verbose () const |
ParsingType | enum_type () const |
Protected Member Functions | |
void | skip_comments (std::istream &doc) |
Protected Attributes | |
std::string | _type |
std::string | _file |
bool | _verbose |
std::string | _comments |
std::string | _not_implemented |
Private Member Functions | |
template<typename CurveType > | |
void | read_thermodynamic_data_root (NASAThermoMixture< NumericType, CurveType > &thermo) |
reads the thermo, NASA generalist More... | |
void | parse_a_line (const std::string &line) |
Convenient method. More... | |
void | parse_equation_coef (const std::string &line) |
Convenient method. More... | |
void | parse_reversible_parameters (const std::string &line) |
Convenient method. More... | |
void | parse_equation (std::string &equation) |
Convenient method. More... | |
void | parse_coefficients_line (const std::string &line) |
Convenient method. More... | |
void | parse_forward_orders (const std::string &line) |
Convenient method. More... | |
void | parse_backward_orders (const std::string &line) |
Convenient method. More... | |
void | parse_orders (const std::string &line, std::vector< std::pair< std::string, NumericType > > &reaction_orders) |
Convenient method. More... | |
std::pair< std::string, NumericType > | parse_molecule (const std::string &molecule) |
Convenient method. More... | |
bool | is_real_number (const char &c) const |
Convenient method. More... | |
void | rescale_stoichiometry () |
if stoichiometry is real, make them integer More... | |
bool | after_coma_digits (NumericType number) const |
check if the stoichiometric coef is an integer More... | |
unsigned int | factor_to_int (NumericType number) const |
look for q when given r = p / q More... | |
bool | next_reaction (const std::string &line) |
verify if line is a new reaction More... | |
bool | next_meaningful_line (std::string &line) |
finding next line that might be a reaction More... | |
ChemKinParser () | |
Never use default constructor. More... | |
Private Attributes | |
std::ifstream | _doc |
bool | _reversible |
unsigned int | _nrates |
unsigned int | _crates |
unsigned int | _pow_unit |
std::vector< std::pair < std::string, NumericType > > | _reactants |
std::vector< std::pair < std::string, NumericType > > | _products |
std::vector< std::pair < std::string, NumericType > > | _reactants_orders |
std::vector< std::pair < std::string, NumericType > > | _products_orders |
std::string | _equation |
std::string | _chemical_process |
std::string | _kinetics_model |
std::vector< NumericType > | _A |
std::vector< NumericType > | _b |
std::vector< NumericType > | _Ea |
std::vector< NumericType > | _D |
std::vector< std::pair < std::string, NumericType > > | _efficiencies |
NumericType | _Tref |
NumericType | _Troe_alpha |
NumericType | _Troe_T1 |
NumericType | _Troe_T2 |
NumericType | _Troe_T3 |
std::map< ParsingKey, std::string > | _map |
std::map< ParsingKey, std::string > | _default_unit |
std::map< std::string, std::string > | _unit_custom_ea |
std::map< std::string, std::string > | _unit_custom_A |
std::string | _cached_line |
bool | _duplicate_process |
bool | _next_is_reverse |
const ChemKinDefinitions | _spec |
ChemKin format file reader.
defaults unit:
There are no other kinetics paramters for rate constant. Chemical processes are:
Definition at line 79 of file chemkin_parser.h.
Antioch::ChemKinParser< NumericType >::ChemKinParser | ( | const std::string & | filename, |
bool | verbose = true |
||
) |
Definition at line 42 of file chemkin_parser.C.
References Antioch::ChemKinParser< NumericType >::_default_unit, Antioch::ChemKinParser< NumericType >::_doc, Antioch::ChemKinParser< NumericType >::_map, Antioch::ChemKinParser< NumericType >::_unit_custom_A, Antioch::ChemKinParser< NumericType >::_unit_custom_ea, Antioch::ACTIVATION_ENERGY, antioch_error, Antioch::BACKWARD_ORDER, Antioch::BERTHELOT_COEFFICIENT, Antioch::EFFICIENCY, Antioch::FALLOFF_LOW_NAME, Antioch::FORWARD_ORDER, Antioch::HV_CROSS_SECTION, Antioch::HV_LAMBDA, Antioch::POWER, Antioch::PREEXP, Antioch::REACTION_DATA, Antioch::SPECIES_SET, Antioch::THERMO, Antioch::TREF, Antioch::TROE_F_ALPHA, Antioch::TROE_F_TS, Antioch::TROE_F_TSS, Antioch::TROE_F_TSSS, Antioch::ReactionType::TROE_FALLOFF, and Antioch::ParserBase< NumericType >::verbose().
Antioch::ChemKinParser< NumericType >::~ChemKinParser | ( | ) |
Definition at line 99 of file chemkin_parser.C.
|
private |
Never use default constructor.
|
private |
check if the stoichiometric coef is an integer
Definition at line 870 of file chemkin_parser.C.
|
virtual |
Implements Antioch::ParserBase< NumericType >.
Definition at line 105 of file chemkin_parser.C.
References antioch_error.
|
virtual |
return true if efficiencies are found
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 413 of file chemkin_parser.C.
|
inherited |
Definition at line 63 of file parser_base.C.
References antioch_parsing_error, Antioch::ASCII, Antioch::CHEMKIN, and Antioch::XML.
|
private |
look for q when given r = p / q
Definition at line 850 of file chemkin_parser.C.
References antioch_parsing_error.
|
inlineinherited |
Definition at line 242 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_file.
Referenced by Antioch::read_species_data(), Antioch::read_species_electronic_data(), Antioch::read_species_vibrational_data(), and Antioch::read_transport_species_data().
|
virtual |
Read header of file, go to interesting part.
Implements Antioch::ParserBase< NumericType >.
Definition at line 120 of file chemkin_parser.C.
References Antioch::ACTIVATION_ENERGY, antioch_parsing_error, Antioch::ascii_getline(), Antioch::PREEXP, Antioch::REACTION_DATA, and Antioch::SplitString().
|
inlinevirtual |
return true if "name" attribute is found with value "k0"
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 354 of file chemkin_parser.h.
|
private |
Convenient method.
Definition at line 680 of file chemkin_parser.C.
|
private |
finding next line that might be a reaction
Definition at line 946 of file chemkin_parser.C.
References Antioch::ascii_getline().
|
private |
verify if line is a new reaction
Definition at line 878 of file chemkin_parser.C.
References antioch_parsing_error, Antioch::ChemKinDefinitions::REVERSIBLE, and Antioch::SplitString().
|
private |
Convenient method.
Definition at line 460 of file chemkin_parser.C.
References antioch_parsing_error, Antioch::BACKWARD_ORDER, and Antioch::FORWARD_ORDER.
|
private |
Convenient method.
Definition at line 730 of file chemkin_parser.C.
|
private |
Convenient method.
Definition at line 736 of file chemkin_parser.C.
References antioch_assert_greater_equal, antioch_parsing_error, Antioch::FALLOFF_LOW_NAME, Antioch::SplitString(), and Antioch::ReactionType::TROE_FALLOFF.
|
private |
Convenient method.
Definition at line 556 of file chemkin_parser.C.
References antioch_parsing_error, Antioch::ChemKinDefinitions::ERROR, Antioch::ChemKinDefinitions::FAL, std::int, Antioch::ChemKinDefinitions::IRREVERSIBLE, Antioch::ChemKinDefinitions::PLUS, Antioch::SplitString(), and Antioch::ChemKinDefinitions::TB.
|
private |
Convenient method.
Definition at line 511 of file chemkin_parser.C.
References antioch_parsing_error, and Antioch::SplitString().
|
private |
Convenient method.
Definition at line 724 of file chemkin_parser.C.
|
private |
Convenient method.
Definition at line 668 of file chemkin_parser.C.
|
private |
Convenient method.
Definition at line 690 of file chemkin_parser.C.
References antioch_parsing_error, and Antioch::SplitString().
|
private |
Convenient method.
Definition at line 537 of file chemkin_parser.C.
References antioch_parsing_error, and Antioch::SplitString().
|
virtual |
return a map between products' name and found partial orders
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 339 of file chemkin_parser.C.
|
virtual |
return pairs of products and stoichiometric coefficients
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 316 of file chemkin_parser.C.
|
virtual |
go to next rate constant
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 295 of file chemkin_parser.C.
|
virtual |
return true if activation energie
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 390 of file chemkin_parser.C.
References Antioch::ACTIVATION_ENERGY.
|
inlinevirtual |
return true if D coefficient
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 369 of file chemkin_parser.h.
|
inlinevirtual |
return true if sigma
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 383 of file chemkin_parser.h.
|
inlinevirtual |
return true if lambda
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 376 of file chemkin_parser.h.
|
virtual |
return true if beta coefficient
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 376 of file chemkin_parser.C.
References Antioch::POWER.
|
virtual |
return true if pre exponentiel coefficient
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 350 of file chemkin_parser.C.
References Antioch::Units< T >::clear(), Antioch::Units< T >::get_symbol(), Antioch::PREEXP, and Antioch::Units< T >::substract().
|
virtual |
return true if Tref
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 404 of file chemkin_parser.C.
References Antioch::TREF.
|
virtual |
return a map between reactants' name and found partial orders
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 328 of file chemkin_parser.C.
|
virtual |
return pairs of reactants and stoichiometric coefficients
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 302 of file chemkin_parser.C.
|
virtual |
go to next reaction
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 194 of file chemkin_parser.C.
|
inlinevirtual |
return reaction chemical process
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 333 of file chemkin_parser.h.
|
inlinevirtual |
return reaction equation
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 326 of file chemkin_parser.h.
|
inlinevirtual |
return reaction id, 0 if not provided
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 319 of file chemkin_parser.h.
|
inlinevirtual |
return reaction kinetics model
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 347 of file chemkin_parser.h.
|
inlinevirtual |
return reversible state
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 340 of file chemkin_parser.h.
|
inlinevirtualinherited |
reads the mandatory data, not valid in xml && chemkin
Reimplemented in Antioch::ASCIIParser< NumericType >.
Definition at line 127 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_not_implemented, and antioch_not_implemented_msg.
Referenced by Antioch::read_species_data().
|
inlinevirtualinherited |
reads the electronic data, not valid in xml && chemkin
Reimplemented in Antioch::ASCIIParser< NumericType >.
Definition at line 133 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_not_implemented, and antioch_not_implemented_msg.
Referenced by Antioch::read_species_electronic_data().
|
inlinevirtual |
reads the thermo, NASA generalist, no templates for virtual
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 109 of file chemkin_parser.h.
References Antioch::ChemKinParser< NumericType >::read_thermodynamic_data_root().
|
inlinevirtual |
reads the thermo, NASA generalist, no templates for virtual
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 113 of file chemkin_parser.h.
References antioch_error_msg.
|
inlinevirtual |
reads the thermo, NASA generalist, no templates for virtual
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 117 of file chemkin_parser.h.
References antioch_error_msg.
|
inlinevirtual |
reads the thermo, CEA deprecated
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 121 of file chemkin_parser.h.
References antioch_error_msg.
|
private |
reads the thermo, NASA generalist
Definition at line 968 of file chemkin_parser.C.
References Antioch::NASAThermoMixture< CoeffType, NASAFit >::add_curve_fit(), antioch_error, Antioch::ascii_getline(), Antioch::NASAThermoMixture< CoeffType, NASAFit >::chemical_mixture(), Antioch::ChemicalMixture< CoeffType >::species_name_map(), Antioch::SplitString(), and Antioch::THERMO.
Referenced by Antioch::ChemKinParser< NumericType >::read_thermodynamic_data().
|
inlinevirtualinherited |
reads the transport data, not valid in xml && chemkin
Reimplemented in Antioch::ASCIIParser< NumericType >.
Definition at line 138 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_not_implemented, and antioch_not_implemented_msg.
Referenced by Antioch::read_transport_species_data().
|
inlinevirtualinherited |
reads the vibrational data, not valid in xml && chemkin
Reimplemented in Antioch::ASCIIParser< NumericType >.
Definition at line 130 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_not_implemented, and antioch_not_implemented_msg.
Referenced by Antioch::read_species_vibrational_data().
|
private |
if stoichiometry is real, make them integer
Definition at line 796 of file chemkin_parser.C.
|
protectedinherited |
Definition at line 54 of file parser_base.C.
References Antioch::skip_comment_lines().
Referenced by Antioch::ASCIIParser< NumericType >::ASCIIParser().
|
virtual |
read SPECIES block
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 157 of file chemkin_parser.C.
References antioch_parsing_error, Antioch::ascii_getline(), Antioch::SPECIES_SET, and Antioch::SplitString().
|
inlinevirtual |
return true if there's a Troe block
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 312 of file chemkin_parser.h.
|
virtual |
return true is alpha
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 420 of file chemkin_parser.C.
References Antioch::TROE_F_ALPHA.
|
virtual |
return true is alpha
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 430 of file chemkin_parser.C.
References Antioch::TROE_F_TS.
|
virtual |
return true is alpha
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 440 of file chemkin_parser.C.
References Antioch::TROE_F_TSS.
|
virtual |
return true is alpha
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 450 of file chemkin_parser.C.
References Antioch::TROE_F_TSSS.
|
inlineinherited |
Definition at line 245 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_type.
|
inlineinherited |
Definition at line 248 of file parser_base.h.
References Antioch::ParserBase< NumericType >::_verbose.
Referenced by Antioch::ASCIIParser< NumericType >::ASCIIParser(), Antioch::ChemKinParser< NumericType >::ChemKinParser(), and Antioch::XMLParser< NumericType >::XMLParser().
|
inlinevirtual |
return true if a Kooij is called Arrhenuis
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 390 of file chemkin_parser.h.
|
inlinevirtual |
return index of k0 (0 or 1)
Reimplemented from Antioch::ParserBase< NumericType >.
Definition at line 362 of file chemkin_parser.h.
|
private |
Definition at line 283 of file chemkin_parser.h.
|
private |
Definition at line 284 of file chemkin_parser.h.
|
private |
Definition at line 302 of file chemkin_parser.h.
|
private |
Definition at line 280 of file chemkin_parser.h.
|
protectedinherited |
Definition at line 261 of file parser_base.h.
|
private |
Definition at line 268 of file chemkin_parser.h.
|
private |
Definition at line 286 of file chemkin_parser.h.
|
private |
Definition at line 297 of file chemkin_parser.h.
Referenced by Antioch::ChemKinParser< NumericType >::ChemKinParser().
|
private |
Definition at line 263 of file chemkin_parser.h.
Referenced by Antioch::ChemKinParser< NumericType >::ChemKinParser().
|
private |
Definition at line 303 of file chemkin_parser.h.
|
private |
Definition at line 285 of file chemkin_parser.h.
|
private |
Definition at line 288 of file chemkin_parser.h.
|
private |
Definition at line 279 of file chemkin_parser.h.
|
protectedinherited |
Definition at line 259 of file parser_base.h.
Referenced by Antioch::ParserBase< NumericType >::file(), and Antioch::ParserBase< NumericType >::ParserBase().
|
private |
Definition at line 281 of file chemkin_parser.h.
|
private |
Definition at line 296 of file chemkin_parser.h.
Referenced by Antioch::ChemKinParser< NumericType >::ChemKinParser().
|
private |
Definition at line 304 of file chemkin_parser.h.
|
protectedinherited |
Definition at line 263 of file parser_base.h.
Referenced by Antioch::ParserBase< NumericType >::efficiencies(), Antioch::ParserBase< NumericType >::is_k0(), Antioch::ParserBase< NumericType >::ParserBase(), Antioch::ParserBase< NumericType >::products_orders(), Antioch::ParserBase< NumericType >::products_pairs(), Antioch::ParserBase< NumericType >::rate_constant(), Antioch::ParserBase< NumericType >::rate_constant_activation_energy_parameter(), Antioch::ParserBase< NumericType >::rate_constant_Berthelot_coefficient_parameter(), Antioch::ParserBase< NumericType >::rate_constant_cross_section_parameter(), Antioch::ParserBase< NumericType >::rate_constant_lambda_parameter(), Antioch::ParserBase< NumericType >::rate_constant_power_parameter(), Antioch::ParserBase< NumericType >::rate_constant_preexponential_parameter(), Antioch::ParserBase< NumericType >::rate_constant_Tref_parameter(), Antioch::ParserBase< NumericType >::reactants_orders(), Antioch::ParserBase< NumericType >::reactants_pairs(), Antioch::ParserBase< NumericType >::reaction(), Antioch::ParserBase< NumericType >::reaction_chemical_process(), Antioch::ParserBase< NumericType >::reaction_equation(), Antioch::ParserBase< NumericType >::reaction_id(), Antioch::ParserBase< NumericType >::reaction_kinetics_model(), Antioch::ParserBase< NumericType >::reaction_reversible(), Antioch::ParserBase< NumericType >::read_chemical_species(), Antioch::ParserBase< NumericType >::read_electronic_data(), Antioch::ParserBase< NumericType >::read_thermodynamic_data(), Antioch::ParserBase< NumericType >::read_transport_data(), Antioch::ParserBase< NumericType >::read_vibrational_data(), Antioch::ParserBase< NumericType >::species_list(), Antioch::ParserBase< NumericType >::Troe(), Antioch::ParserBase< NumericType >::Troe_alpha_parameter(), Antioch::ParserBase< NumericType >::Troe_T1_parameter(), Antioch::ParserBase< NumericType >::Troe_T2_parameter(), Antioch::ParserBase< NumericType >::Troe_T3_parameter(), Antioch::ParserBase< NumericType >::verify_Kooij_in_place_of_Arrhenius(), and Antioch::ParserBase< NumericType >::where_is_k0().
|
private |
Definition at line 267 of file chemkin_parser.h.
|
private |
Definition at line 270 of file chemkin_parser.h.
|
private |
Definition at line 274 of file chemkin_parser.h.
|
private |
Definition at line 277 of file chemkin_parser.h.
|
private |
Definition at line 273 of file chemkin_parser.h.
|
private |
Definition at line 276 of file chemkin_parser.h.
|
private |
Definition at line 266 of file chemkin_parser.h.
|
private |
Definition at line 306 of file chemkin_parser.h.
|
private |
Definition at line 290 of file chemkin_parser.h.
|
private |
Definition at line 291 of file chemkin_parser.h.
|
private |
Definition at line 292 of file chemkin_parser.h.
|
private |
Definition at line 293 of file chemkin_parser.h.
|
private |
Definition at line 294 of file chemkin_parser.h.
|
protectedinherited |
Definition at line 258 of file parser_base.h.
Referenced by Antioch::ParserBase< NumericType >::ParserBase(), and Antioch::ParserBase< NumericType >::type().
|
private |
Definition at line 300 of file chemkin_parser.h.
Referenced by Antioch::ChemKinParser< NumericType >::ChemKinParser().
|
private |
Definition at line 299 of file chemkin_parser.h.
Referenced by Antioch::ChemKinParser< NumericType >::ChemKinParser().
|
protectedinherited |
Definition at line 260 of file parser_base.h.
Referenced by Antioch::ParserBase< NumericType >::verbose().