Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/mechanism_configuration/types/aerosol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ namespace mechanism_configuration::types
std::vector<ReactionComponent> products;
/// @brief Rate constant per aerosol representation; keys are representation names.
std::map<std::string, RateConstant> rate_constants;
std::optional<double> solvent_floor_;
std::optional<double> min_halflife_;
};

struct DissolvedReversibleReaction
Expand All @@ -96,6 +98,7 @@ namespace mechanism_configuration::types
std::map<std::string, RateConstant> reverse_rate_constants;
/// @brief Shared, intrinsic equilibrium constant (NOT per representation).
std::optional<ArrheniusReferenceTemperature> equilibrium_constant;
std::optional<double> solvent_floor_;
};

struct HenryLawPhaseTransfer
Expand Down Expand Up @@ -136,6 +139,7 @@ namespace mechanism_configuration::types
std::vector<ReactionComponent> reactants;
std::vector<ReactionComponent> products;
ArrheniusReferenceTemperature equilibrium_constant;
std::optional<double> solvent_floor_;
};

struct LinearConstraintTerm
Expand Down
Loading