Skip to content
/ fastjmd95 Public

Numba implementation of Jackett & McDougall (1995) ocean equation of state

License

Notifications You must be signed in to change notification settings

xgcm/fastjmd95

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fe16d2b · Feb 3, 2021

History

33 Commits
Jun 22, 2020
May 18, 2020
Dec 7, 2020
Feb 6, 2020
Feb 6, 2020
Feb 6, 2020
Oct 12, 2020
Feb 6, 2020
Feb 6, 2020
Feb 3, 2021
Oct 12, 2020
Feb 6, 2020
Feb 6, 2020
Nov 30, 2020
Feb 6, 2020

Repository files navigation

fastjmd95: Numba implementation of Jackett & McDougall (1995) ocean equation of state

travis-ci build status license zenodo doi

This package provides a Numba implementation the JMD95 equation of state.

Usage

fastjmd95 provides three ufuncs:

>>> from fastjmd95 import rho, drhods, drhodt
>>> rho(35.5, 3., 3000.)
1041.83267
>>> drhodt(35.5, 3., 3000.)
-0.17244
>>> drhods(35.5, 3., 3000.)
0.77481

Tutorial

Tutorial notebook located at doc/fastjmd95_tutorial.ipynb.