Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-rose committed Apr 3, 2020
1 parent 4d85356 commit 12f0bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion climlab/radiation/nband.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def SPEEDY_band_fraction(T):
# EPSLW is the fraction of longwave emission that goes directly to space
# It is set to zero by default in MITgcm code. We won't use it here.
Tarray = np.array(T)
Tarray = np.minimum(Tarray, 230.)
Tarray = np.minimum(Tarray, 320.)
Tarray = np.maximum(Tarray, 200.)
num_band = 4
dims = [num_band]
Expand Down

0 comments on commit 12f0bb4

Please sign in to comment.