Spin Up
plot_spin_up(olr, sw_net_down, t_surf, ax)
Function to plot how net TOA flux and mean global surface temperature evolve with time. Net flux should converge to zero, once spin up has finished.
olr
, sw_net_down
and t_surf
are just variables saved in the dataset .nc file produced by Isca
e.g. t_surf = ds.t_surf
if ds
is the dataset for the experiment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
olr
|
DataArray
|
Outgoing Longwave Radiation with time, longitude and latitude dimensions. |
required |
sw_net_down
|
DataArray
|
Net downward shortwave radiation at top of atmosphere, accounting for any reflected due to
the |
required |
t_surf
|
DataArray
|
Surface temperature with time, longitude and latitude dimensions. |
required |
ax
|
Axes
|
Axes to plot results on. |
required |
Source code in isca_tools/plot/spin_up.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|