Skip to content

Commit

Permalink
Merge branch 'fix-stevens'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroadmap committed Nov 4, 2019
2 parents c2b343f + 6de2c05 commit 4587fea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fair/forcing/aerosols.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ def Stevens(emissions, stevens_params=np.array([0.001875, 0.634, 60.]),
emissions: anthropogenic emissions database
Keywords:
stevens_params: 3 element array
0. natural emissions of SOx in Mt/yr
1. scaling parameter for ERFari (alpha)
2. scaling parameter for ERFaci (beta)
0. scaling parameter for ERFari (alpha)
1. scaling parameter for ERFaci (beta)
2. natural emissions of SOx in Mt/yr
ref_isSO2: True if E_SOx_nat is in units of SO2 rather than S.
Output:
F: aerosol effective radiative forcing
"""

E_SOx_nat, alpha, beta = stevens_params
alpha, beta, E_SOx_nat = stevens_params

factor = 1
if ref_isSO2:
Expand Down

0 comments on commit 4587fea

Please sign in to comment.