FV3 Bundle
gsw_specvol_anom_standard.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_specvol_anom_standard (sa, ct, p)
3 !==========================================================================
4 !
5 ! Calculates specific volume anomaly of seawater.
6 !
7 ! sa : Absolute Salinity [g/kg]
8 ! ct : Conservative Temperature [deg C]
9 ! p : sea pressure [dbar]
10 !
11 ! specvol_anom : specific volume anomaly of seawater
12 !--------------------------------------------------------------------------
13 
15 
16 use gsw_mod_kinds
17 
18 implicit none
19 
20 real (r8), intent(in) :: sa, ct, p
21 
22 real (r8) :: gsw_specvol_anom_standard
23 
25 
26 return
27 end function
28 
29 !--------------------------------------------------------------------------
elemental real(r8) function gsw_specvol_anom_standard(sa, ct, p)