FV3 Bundle
gsw_enthalpy.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_enthalpy (sa, ct, p)
3 !==========================================================================
4 !
5 ! Calculates specific enthalpy of seawater using the computationally-
6 ! efficient expression for specific volume in terms of SA, CT and p
7 ! (Roquet et al., 2014).
8 !
9 ! SA = Absolute Salinity [ g/kg ]
10 ! CT = Conservative Temperature (ITS-90) [ deg C ]
11 ! p = sea pressure [ dbar ]
12 ! ( i.e. absolute pressure - 10.1325 dbar )
13 !
14 ! enthalpy = specific enthalpy [ J/kg ]
15 !--------------------------------------------------------------------------
16 
18 
20 
21 use gsw_mod_kinds
22 
23 implicit none
24 
25 real (r8), intent(in) :: sa, ct, p
26 
27 real (r8) :: gsw_enthalpy
28 
30 
31 return
32 end function
33 
34 !--------------------------------------------------------------------------
elemental real(r8) function gsw_enthalpy(sa, ct, p)
Definition: gsw_enthalpy.f90:3