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
17
use
gsw_mod_toolbox
,
only
:
gsw_gibbs_ice
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
27
gsw_kappa_const_t_ice
= -
gsw_gibbs_ice
(0,2,t,p)/
gsw_gibbs_ice
(0,1,t,p)
28
29
return
30
end function
31
32
!--------------------------------------------------------------------------
gsw_mod_toolbox
Definition:
gsw_mod_toolbox.f90:1
gsw_mod_toolbox::gsw_gibbs_ice
Definition:
gsw_mod_toolbox.f90:633
gsw_mod_kinds
Definition:
gsw_mod_kinds.f90:2
gsw_mod_toolbox::gsw_kappa_const_t_ice
Definition:
gsw_mod_toolbox.f90:727
gsw_kappa_const_t_ice
elemental real(r8) function gsw_kappa_const_t_ice(t, p)
Definition:
gsw_kappa_const_t_ice.f90:3
src
fv3-bundle
gsw
toolbox
gsw_kappa_const_t_ice.f90
Generated on Tue Nov 6 2018 11:38:37 for FV3 Bundle by
1.8.14