FV3 Bundle
gsw_kappa_const_t_ice.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_kappa_const_t_ice (t, p)
3 !==========================================================================
4 !
5 ! Calculates isothermal compressibility of ice.
6 ! Note. This is the compressibility of ice AT CONSTANT IN-SITU
7 ! TEMPERATURE
8 !
9 ! t = in-situ temperature (ITS-90) [ deg C ]
10 ! p = sea pressure [ dbar ]
11 ! ( i.e. absolute pressure - 10.1325 dbar )
12 !
13 ! kappa_const_t_ice = isothermal compressibility [ 1/Pa ]
14 ! Note. The output units are 1/Pa not 1/dbar.
15 !--------------------------------------------------------------------------
16 
18 
19 use gsw_mod_kinds
20 
21 implicit none
22 
23 real (r8), intent(in) :: t, p
24 
25 real (r8) :: gsw_kappa_const_t_ice
26 
28 
29 return
30 end function
31 
32 !--------------------------------------------------------------------------
elemental real(r8) function gsw_kappa_const_t_ice(t, p)