Open
Description
This is something the CVDP does. It creates global and hemispheric integrated quantities including:
- globally averaged temperature
- NH sea ice area
- SH sea ice area
others?
For the sea ice we need:
- NH / SH total sea ice extent (area where concentration is >= 15%)
- NH / SH total sea ice area
- NH / SH total sea ice volume
- NH / SH total snow (on sea ice) volume
This uses tarea from the sea ice model (constant gridcell area from sea ice history files or grid files).
Convert aice to fraction if it is not already.
NH extent = where(aice.ge.0.15,tarea,0.) where tlat > 0.
NH area = sum(aicetarea) for tlat > 0. x 1.0e-12
NH ice volume = sum(hitarea) for tlat > 0. x 1.0e-13
NH snow volume = sum(hs*tarea) for tlat > 0. x 1.0e-13