Skip to content

Commit

Permalink
fix the bug of calculating NOx in cmaq.py
Browse files Browse the repository at this point in the history
as NOx=NO+NO2
  • Loading branch information
ytangnoaa authored Jul 27, 2024
1 parent e1283c6 commit b116b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monetio/models/cmaq.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def add_lazy_rh(d):

def add_lazy_nox(d):
keys = _get_keys(d)
allvars = Series(["NO", "NOX"])
allvars = Series(["NO", "NO2"])
index = allvars.isin(keys)
if can_do(index):
newkeys = allvars.loc[index]
Expand Down

0 comments on commit b116b0a

Please sign in to comment.