/usr/lib/python3/dist-packages/gsw/density.py is in python3-gsw 3.2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | """
Functions related to density and specific volume.
These are a subset of the TEOS-10 table category
"specific volume, density, and enthalpy".
We are grouping the functions related to enthalpy and internal energy
in their own "energy" module.
"""
from ._wrapped_ufuncs import (
specvol,
alpha,
beta,
alpha_on_beta,
specvol_alpha_beta,
specvol_anom_standard,
rho,
rho_alpha_beta,
rho_t_exact,
sigma0,
sigma1,
sigma2,
sigma3,
sigma4,
sound_speed,
kappa,
)
|