FV3 Bundle
gsw_t_from_pt0_ice.f90
Go to the documentation of this file.
1
! =========================================================================
2
elemental function
gsw_t_from_pt0_ice
(pt0_ice, p)
3
! =========================================================================
4
!
5
! Calculates in-situ temperature from the potential temperature of ice Ih
6
! with reference pressure, p_ref, of 0 dbar (the surface), and the
7
! in-situ pressure.
8
!
9
! pt0_ice = potential temperature of ice Ih with reference pressure of
10
! zero dbar (ITS-90) [ deg C ]
11
! p = sea pressure [ dbar ]
12
! ( i.e. absolute pressure - 10.1325 dbar )
13
!--------------------------------------------------------------------------
14
15
use
gsw_mod_toolbox
,
only
:
gsw_pt_from_t_ice
16
17
use
gsw_mod_kinds
18
19
implicit none
20
21
real (r8)
,
intent(in)
:: pt0_ice, p
22
23
real (r8)
::
gsw_t_from_pt0_ice
24
25
real (r8)
,
parameter
:: p0 = 0.0_r8
26
27
gsw_t_from_pt0_ice
=
gsw_pt_from_t_ice
(pt0_ice,p0,p)
28
29
return
30
end function
31
32
!--------------------------------------------------------------------------
gsw_mod_toolbox
Definition:
gsw_mod_toolbox.f90:1
gsw_mod_kinds
Definition:
gsw_mod_kinds.f90:2
gsw_t_from_pt0_ice
elemental real(r8) function gsw_t_from_pt0_ice(pt0_ice, p)
Definition:
gsw_t_from_pt0_ice.f90:3
gsw_mod_toolbox::gsw_pt_from_t_ice
Definition:
gsw_mod_toolbox.f90:1037
gsw_mod_toolbox::gsw_t_from_pt0_ice
Definition:
gsw_mod_toolbox.f90:1489
src
fv3-bundle
gsw
toolbox
gsw_t_from_pt0_ice.f90
Generated on Tue Nov 6 2018 11:39:00 for FV3 Bundle by
1.8.14