IORG

IORG is a python module for calculating the Organization Index (Tompkins and Semie, 2017) as used in RCEMIP (Wing et al., 2020).

IORG.py

Description

The main function, calc_iorg(w_f,geometry,threshold=0,tbeg=-999,tend=-999), takes two mandatory arguments and has three optional arguments.

Usage

import IORG

# calculate Iorg starting from hour 1800 and ending at hour 2000 for a CRM using OLR
iorg = IORG.calc_iorg(olr,'cartesian',threshold=0,tbeg=1800,tend=2000)
# calculate Iorg starting from hour 1800 for a GCM using vertical velocity
iorg = IORG.calc_iorg(omega,'spherical',threshold=1,tbeg=1800)