KineticProblem.hpp
auto temperature() const -> double
Return the temperature for the kinetic calculation (in units of K)
Definition: KineticProblem.cpp:86
virtual ~KineticProblem()
Destroy this KineticProblem instance.
Definition: KineticProblem.cpp:65
A class to represent a system and its attributes and properties.
Definition: ChemicalSystem.hpp:38
auto setPressure(double val, std::string units) -> KineticProblem &
Set the pressure for the kinetic calculation (in units of Pa) By default, the pressure is 1 bar.
auto operator=(KineticProblem other) -> KineticProblem &
Assign a KineticProblem instance to this.
Definition: KineticProblem.cpp:68
auto setTemperature(double val, std::string units) -> KineticProblem &
Set the temperature for the kinetic calculation with given units.
KineticProblem()
Construct a default KineticProblem instance.
auto partition() const -> const Partition &
Return a reference to the Partition instance used to create this KineticProblem instance.
The namespace containing all components of the Reaktoro library.
Definition: ChemicalScalar.hpp:24
auto setPressure(double val) -> KineticProblem &
Set the pressure for the kinetic calculation (in units of Pa) By default, the pressure is 1 bar.
Definition: KineticProblem.cpp:80
auto setPartition(const Partition &partition) -> KineticProblem &
Set the partition of the chemical system.
auto pressure() const -> double
Return the pressure for the kinetic calculation (in units of Pa)
Definition: KineticProblem.cpp:91
A class that represents a system of chemical reactions.
Definition: ReactionSystem.hpp:42
auto reactions() const -> const ReactionSystem &
Return a reference to the ReactionSystem instance used to create this KineticProblem instance.
Provide a computational representation of the Partition of a chemical system.
Definition: Partition.hpp:56
auto setTemperature(double val) -> KineticProblem &
Set the temperature for the kinetic calculation (in units of K).
Definition: KineticProblem.cpp:74
auto system() const -> const ChemicalSystem &
Return a reference to the ChemicalSystem instance used to create this KineticProblem instance.