Skip to content

Commit c1d755e

Browse files
Merge pull request #415 from Behrooz-Roozitalab/chemistry_tables
Updates to Chemistry tables
2 parents 6aff7b6 + fdd8399 commit c1d755e

File tree

4 files changed

+170
-85
lines changed

4 files changed

+170
-85
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,7 @@ GitHub.sublime-settings
109109
!.vscode/tasks.json
110110
!.vscode/launch.json
111111
!.vscode/extensions.json
112-
.history
112+
.history
113+
114+
115+

lib/adf_variable_defaults.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ utendwtem:
25082508
budget_tables:
25092509
# INPUTS
25102510
#list of the gaseous variables to be caculated.
2511-
GAS_VARIABLES: ['CH4','CH3CCL3', 'CO', 'O3', 'ISOP', 'MTERP', 'CH3OH', 'CH3COCH3']
2511+
GAS_VARIABLES: ['CH4','CH3CCL3', 'CO', 'O3', 'ISOP', 'MTERP', 'CH3OH', 'CH3COCH3','DMS','DMS_OASISS']
25122512

25132513
# list of the aerosol variables to be caculated.
25142514
AEROSOL_VARIABLES: ['AOD','SOA', 'SALT', 'DUST', 'POM', 'BC', 'SO4']
@@ -2546,7 +2546,10 @@ budget_tables:
25462546
'DUST':168.0456,
25472547
'CH3CCL3':133.4042,
25482548
'CH3OH':32,
2549-
'CH3COCH3':58}
2549+
'CH3COCH3':58,
2550+
'DMS':62.136,
2551+
'DMS_OASISS':62.136,
2552+
'AOD':1}
25502553

25512554
# Avogadro's Number
25522555
AVO: 6.022e23

lib/adf_web.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def __init__(self, config_file, debug=False):
117117

118118
#Extract needed variables from yaml file:
119119
case_names = self.get_cam_info('cam_case_name', required=True)
120-
121120
#Also extract baseline case (if applicable), and append to case_names list:
122121
if not self.compare_obs:
123122
baseline_name = self.get_baseline_info('cam_case_name', required=True)
@@ -787,4 +786,4 @@ def jinja_enumerate(arg):
787786
print(" ...Webpages have been generated successfully.")
788787
#++++++++++++++++++++
789788
#End Class definition
790-
#++++++++++++++++++++
789+
#++++++++++++++++++++

0 commit comments

Comments
 (0)