#include <eos.hpp>
Public Member Functions | |
EOS (std::string typeIn) | |
virtual void | View (std::ostream &stream) const =0 |
virtual ThermodynamicFunction | GetThermodynamicFunction (ThermodynamicProperty property, const std::vector< domain::Field > &fields) const =0 |
virtual ThermodynamicTemperatureFunction | GetThermodynamicTemperatureFunction (ThermodynamicProperty property, const std::vector< domain::Field > &fields) const =0 |
virtual EOSFunction | GetFieldFunctionFunction (const std::string &field, ThermodynamicProperty property1, ThermodynamicProperty property2, std::vector< std::string > otherProperties) const =0 |
virtual const std::vector< std::string > & | GetSpeciesVariables () const =0 |
virtual const std::vector< std::string > & | GetProgressVariables () const =0 |
virtual std::vector< std::string > | GetFieldTags () const |
virtual std::vector< std::shared_ptr< domain::FieldDescriptor > > | GetAdditionalFields () const |
virtual const std::vector< std::string > & | GetFieldFunctionProperties () const |
Static Public Attributes | |
static const std::string | YI = "Yi" |
static const std::string | PROGRESS = "Progress" |
Protected Attributes | |
const std::string | type |
Friends | |
std::ostream & | operator<< (std::ostream &out, const EOS &eos) |
The equation of state is designed to to compute thermodynamic properties based upon the conserved field variables being solved. This can range from euler & densityYi and euler & progresses variables with ChemTab.
|
inlinevirtual |
Helper function that would allow setting up of any additional required fields needed by the eos
|
pure virtual |
Single function to produce fieldFunction function for any two properties, velocity, and species mass fractions. These calls can be slower and should be used for init/output only
field | |
property1 | |
property2 |
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemSoot, ablate::eos::TChem, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
inlinevirtual |
Properties known by this equation of state used for the FieldFunction calculations. This can be the same as the GetSpeciesVariables. species model functions
Reimplemented in ablate::eos::TwoPhase, and ablate::eos::ChemTab.
|
inlinevirtual |
Returns any additional field tags that can be used when setting up the field
Reimplemented in ablate::eos::ChemTab.
|
pure virtual |
Returns a vector of all extra variables required to utilize the equation of state
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemSoot, ablate::eos::TChemBase, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
pure virtual |
Required species to utilize the equation of state species model functions
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemBase, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
pure virtual |
Single function to produce thermodynamic function for any property based upon the available fields
property | |
fields |
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemSoot, ablate::eos::TChem, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
pure virtual |
Single function to produce thermodynamic function for any property based upon the available fields and temperature
property | |
fields |
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemSoot, ablate::eos::TChem, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
pure virtual |
Print the details of this eos
stream |
Implemented in ablate::eos::zerorkEOS, ablate::eos::TwoPhase, ablate::eos::TChemSoot, ablate::eos::TChemBase, ablate::eos::StiffenedGas, ablate::eos::PerfectGas, and ablate::eos::ChemTab.
|
friend |
Support function for printing any eos
out | |
eos |