FV3 Bundle
gsw_adiabatic_lapse_rate_ice.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_adiabatic_lapse_rate_ice (t, p)
3 !==========================================================================
4 !
5 ! Calculates the adiabatic lapse rate of ice.
6 !
7 ! t = in-situ temperature (ITS-90) [ deg C ]
8 ! p = sea pressure [ dbar ]
9 ! ( i.e. absolute pressure - 10.1325 dbar )
10 !
11 ! Note. The output is in unit of degress Celsius per Pa,
12 ! (or equivilently K/Pa) not in units of K/dbar.
13 !--------------------------------------------------------------------------
14 
16 
17 use gsw_mod_kinds
18 
19 implicit none
20 
21 real (r8), intent(in) :: t, p
22 
24 
26 
27 return
28 end function
29 
30 !--------------------------------------------------------------------------
elemental real(r8) function gsw_adiabatic_lapse_rate_ice(t, p)