NasaDatabase Class Reference
Used to support thermodynamic databases in NASA CEA format. More...
#include <NasaDatabase.hpp>
Collaboration diagram for NasaDatabase:
Public Member Functions | |
| NasaDatabase (Database database) | |
| Construct a NasaDatabase object using an object of Database. | |
| NasaDatabase (String name) | |
| Construct a NasaDatabase object using an embedded database file. More... | |
| Database () | |
| Construct a default Database object. | |
| Database (Database const &other) | |
| Construct a copy of a Database object. | |
| Database (Vec< Element > const &elements, Vec< Species > const &species) | |
| Construct a Database object with given elements and species. | |
| Database (Vec< Species > const &species) | |
| Construct a Database object with given species (elements extracted from them). | |
Public Member Functions inherited from Database | |
| Database () | |
| Construct a default Database object. | |
| Database (Database const &other) | |
| Construct a copy of a Database object. | |
| Database (Vec< Element > const &elements, Vec< Species > const &species) | |
| Construct a Database object with given elements and species. | |
| Database (Vec< Species > const &species) | |
| Construct a Database object with given species (elements extracted from them). | |
| ~Database () | |
| Destroy this Database object. | |
| auto | operator= (Database other) -> Database & |
| Assign another Database object to this. | |
| auto | clear () -> void |
| Remove all species and elements from the database. | |
| auto | addElement (Element const &element) -> void |
| Add an element in the database. More... | |
| auto | addSpecies (Species const &species) -> void |
| Add a species in the database. More... | |
| auto | addSpecies (Vec< Species > const &species) -> void |
| Add a list of species in the database. | |
| auto | attachData (Any const &data) -> void |
| Attach data to this database whose type is known at runtime only. | |
| auto | extend (Database const &other) -> void |
| Extend this database with elements, species and other contents from another database. | |
| auto | extendWithDatabase (Database const &other) -> void |
| Extend this database with elements, species and other contents from another database. | |
| auto | extendWithFile (String const &path) -> void |
| Extend this database with elements, species and other contents from another database. More... | |
| auto | elements () const -> ElementList const & |
| Return all elements in the database. | |
| auto | species () const -> SpeciesList const & |
| Return all species in the database. | |
| auto | speciesWithAggregateState (AggregateState option) const -> SpeciesList |
| Return all species in the database with given aggregate state. | |
| auto | element (String const &symbol) const -> Element const & |
| Return an element with given symbol in the database. More... | |
| auto | species (String const &name) const -> Species const & |
| Return a species with given name in the database. More... | |
| auto | reaction (String const &equation) const -> Reaction |
| Construct a reaction with given equation. More... | |
| auto | attachedData () const -> Any const & |
| Return the attached data to this database whose type is known at runtime only. | |
Static Public Member Functions | |
| static auto | withName (String name) -> NasaDatabase |
| Return a NasaDatabase object initialized using an embedded NASA database. More... | |
Static Public Member Functions inherited from Database | |
| static auto | fromFile (String const &path) -> Database |
| Return a Database object constructed with a given local file. More... | |
| static auto | fromEmbeddedFile (String const &path) -> Database |
| Return a Database object constructed with a given embedded file. More... | |
| static auto | fromContents (String const &text) -> Database |
| Return a Database object constructed with given database text contents. More... | |
| static auto | fromStringYAML (String const &text) -> Database |
| Return a Database object constructed with given database text in YAML format. More... | |
| static auto | fromStringJSON (String const &text) -> Database |
| Return a Database object constructed with given database text in JSON format. More... | |
| static auto | fromStream (std::istream &stream) -> Database |
| Return a Database object constructed with given input stream containing the database text contents. More... | |
| static auto | local (String const &path) -> Database |
| Return a Database object constructed with a given local file. More... | |
| static auto | embedded (String const &path) -> Database |
| Return a Database object constructed with a given embedded file. More... | |
Detailed Description
Used to support thermodynamic databases in NASA CEA format.
Constructor & Destructor Documentation
◆ NasaDatabase()
| NasaDatabase | ( | String | name | ) |
Construct a NasaDatabase object using an embedded database file.
The currently supported embedded NASA database files are named:
nasa-cea- Parameters
-
name The name of the embedded NASA database file
- Warning
- An exception is thrown if
nameis not one of the above supported names.
Member Function Documentation
◆ withName()
|
static |
Return a NasaDatabase object initialized using an embedded NASA database.
The currently supported embedded NASA database files are named:
nasa-cea- Parameters
-
name The name of the embedded NASA database file
- Warning
- An exception is thrown if
nameis not one of the above supported names.
The documentation for this class was generated from the following file:
- Reaktoro/Extensions/Nasa/NasaDatabase.hpp
Public Member Functions inherited from