-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reads species from json from camp_data
- Loading branch information
1 parent
cccd3b0
commit 3056132
Showing
7 changed files
with
3,749 additions
and
3,616 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
{"camp-data": [{"type": "MECHANISM", "name": "music box interactive configuration", "reactions": [{"type": "ARRHENIUS", "A": 8.8e-17, "Ea": 0, "B": 0, "D": 300, "E": 0, "reactants": {"O3": {"qty": 1}, "a-pinene": {"qty": 1}}, "products": {"SOA1": {"yield": 0.18}, "SOA2": {"yield": 0.09}, "irr__bab3e78d-d1d7-4c6b-9f6f-bbbd303c0901": {"yield": 1}}}]}]} | ||
{ | ||
"camp-data": [ | ||
{ | ||
"type": "MECHANISM", | ||
"name": "music box interactive configuration", | ||
"reactions": [ | ||
{ | ||
"type": "ARRHENIUS", | ||
"A": 8.8e-17, | ||
"Ea": 0, | ||
"B": 0, | ||
"D": 300, | ||
"E": 0, | ||
"reactants": { | ||
"O3": { | ||
"qty": 1 | ||
}, | ||
"a-pinene": { | ||
"qty": 1 | ||
} | ||
}, | ||
"products": { | ||
"SOA1": { | ||
"yield": 0.18 | ||
}, | ||
"SOA2": { | ||
"yield": 0.09 | ||
}, | ||
"irr__bab3e78d-d1d7-4c6b-9f6f-bbbd303c0901": { | ||
"yield": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
{"camp-data": [ {"name": "a-pinene", "type": "CHEM_SPEC"}, {"name": "O3", "type": "CHEM_SPEC"}, {"name": "SOA1", "type": "CHEM_SPEC"}, {"name": "SOA2", "type": "CHEM_SPEC"}, {"name": "irr__bab3e78d-d1d7-4c6b-9f6f-bbbd303c0901", "type": "CHEM_SPEC"}]} | ||
{ | ||
"camp-data": [ | ||
{ | ||
"name": "a-pinene", | ||
"type": "CHEM_SPEC" | ||
}, | ||
{ | ||
"name": "O3", | ||
"type": "CHEM_SPEC" | ||
}, | ||
{ | ||
"name": "SOA1", | ||
"type": "CHEM_SPEC" | ||
}, | ||
{ | ||
"name": "SOA2", | ||
"type": "CHEM_SPEC" | ||
}, | ||
{ | ||
"name": "irr__bab3e78d-d1d7-4c6b-9f6f-bbbd303c0901", | ||
"type": "CHEM_SPEC" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1 +1,39 @@ | ||
{"box model options": {"grid": "box", "chemistry time step [sec]": 1, "output time step [sec]": 1, "simulation length [hr]": 1}, "chemical species": {"a-pinene": {"initial value [mol m-3]": 8e-08}, "O3": {"initial value [mol m-3]": 2e-05}}, "environmental conditions": {"temperature": {"initial value [K]": 298.15}, "pressure": {"initial value [Pa]": 101325}}, "initial conditions": {}, "model components": [{"type": "CAMP", "configuration file": "camp_data/config.json", "override species": {"M": {"mixing ratio mol mol-1": 1}}, "suppress output": {"M": {}}}]} | ||
{ | ||
"box model options": { | ||
"grid": "box", | ||
"chemistry time step [sec]": 1, | ||
"output time step [sec]": 1, | ||
"simulation length [hr]": 1 | ||
}, | ||
"chemical species": { | ||
"a-pinene": { | ||
"initial value [mol m-3]": 8e-08 | ||
}, | ||
"O3": { | ||
"initial value [mol m-3]": 2e-05 | ||
} | ||
}, | ||
"environmental conditions": { | ||
"temperature": { | ||
"initial value [K]": 298.15 | ||
}, | ||
"pressure": { | ||
"initial value [Pa]": 101325 | ||
} | ||
}, | ||
"initial conditions": {}, | ||
"model components": [ | ||
{ | ||
"type": "CAMP", | ||
"configuration file": "camp_data/config.json", | ||
"override species": { | ||
"M": { | ||
"mixing ratio mol mol-1": 1 | ||
} | ||
}, | ||
"suppress output": { | ||
"M": {} | ||
} | ||
} | ||
] | ||
} |
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
Oops, something went wrong.