FV3 Bundle
gsw_alpha_wrt_t_ice.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_alpha_wrt_t_ice (t, p)
3 !==========================================================================
4 !
5 ! Calculates the thermal expansion coefficient of ice with respect to
6 ! in-situ temperature.
7 !
8 ! t = in-situ temperature (ITS-90) [ deg C ]
9 ! p = sea pressure [ dbar ]
10 ! ( i.e. absolute pressure - 10.1325 dbar )
11 !
12 ! alpha_wrt_t_ice = thermal expansion coefficient of ice with respect
13 ! to in-situ temperature [ 1/K ]
14 !--------------------------------------------------------------------------
15 
17 
18 use gsw_mod_kinds
19 
20 implicit none
21 
22 real (r8), intent(in) :: t, p
23 
24 real (r8) :: gsw_alpha_wrt_t_ice
25 
27 
28 return
29 end function
30 
31 !--------------------------------------------------------------------------
elemental real(r8) function gsw_alpha_wrt_t_ice(t, p)