Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion include/open_atmos/mechanism_configuration/validation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ namespace open_atmos

// Condensed Phae Photolysis
const std::string CondensedPhasePhotolysis_key = "CONDENSED_PHASE_PHOTOLYSIS";
// also
// also
// scaling factor
// aerosol phase
// aerosol-phase water
Expand Down
6 changes: 4 additions & 2 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1082,8 +1082,10 @@ namespace open_atmos
/// @param existing_species A list of species configured in a mechanism
/// @param existing_phases A list of phases configured in a mechanism
/// @return A pair indicating parsing success and a struct of Photolysis parameters
std::pair<ConfigParseStatus, types::CondensedPhasePhotolysis>
ParseCondensedPhasePhotolysis(const json& object, const std::vector<types::Species> existing_species, const std::vector<types::Phase> existing_phases)
std::pair<ConfigParseStatus, types::CondensedPhasePhotolysis> ParseCondensedPhasePhotolysis(
const json& object,
const std::vector<types::Species> existing_species,
const std::vector<types::Phase> existing_phases)
{
ConfigParseStatus status = ConfigParseStatus::Success;
types::CondensedPhasePhotolysis condensed_phase_photolysis;
Expand Down