-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dropping to c++17, using optional for ion pair
- Loading branch information
Showing
12 changed files
with
172 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
test/unit/unit_configs/reactions/aqueous_equilibrium/invalid_ion_pair.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"version": "1.0.0", | ||
"name": "Valid aqueous equilibrium", | ||
"species": [ | ||
{ | ||
"name": "A" | ||
}, | ||
{ | ||
"name": "B" | ||
}, | ||
{ | ||
"name": "C" | ||
}, | ||
{ | ||
"name": "H2O_aq" | ||
} | ||
], | ||
"phases": [ | ||
{ | ||
"name": "aerosol", | ||
"species": [ | ||
"A", | ||
"B", | ||
"C", | ||
"H2O_aq" | ||
] | ||
} | ||
], | ||
"reactions": [ | ||
{ | ||
"type": "AQUEOUS_EQUILIBRIUM", | ||
"aerosol phase": "aerosol", | ||
"aerosol-phase water": "H2O_aq", | ||
"k_reverse": 0.32, | ||
"ion pair": { | ||
"first": { "species name": "A"}, | ||
"second": { "species name": "B"} | ||
}, | ||
"reactants": [ | ||
{ | ||
"species name": "A", | ||
"coefficient": 2 | ||
} | ||
], | ||
"products": [ | ||
{ | ||
"species name": "B", | ||
"coefficient": 1 | ||
}, | ||
{ | ||
"species name": "C", | ||
"coefficient": 1 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
test/unit/unit_configs/reactions/aqueous_equilibrium/mutually_exclusive.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.