We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f5cd5 commit 00e3bbcCopy full SHA for 00e3bbc
CMIP7/esm1p6/atmosphere/volcanic/cmip7_HI_volcanic_generate.py
@@ -87,8 +87,9 @@ def save_hi_year_interpolated_saod(
87
88
# Divide into latitude bands.
89
for lat_band_nbr in range(NBR_OF_BANDS):
90
- saod = (saod_for_beg_year[month - 1, lat_band_nbr] * ratio
91
- + saod_for_end_year[month - 1, lat_band_nbr] * (1.0 - ratio))
+ saod_beg = saod_for_beg_year[month - 1, lat_band_nbr]
+ saod_end = saod_for_end_year[month - 1, lat_band_nbr]
92
+ saod = saod_beg * ratio + saod_end * (1.0 - ratio)
93
print(
94
f"{int(saod):5d}",
95
end="",
0 commit comments