FV3 Bundle
gsw_specvol_sso_0.f90
Go to the documentation of this file.
1 !==========================================================================
2 elemental function gsw_specvol_sso_0 (p)
3 !==========================================================================
4 ! This function calculates specifc volume at the Standard Ocean Salinity,
5 ! SSO, and at a Conservative Temperature of zero degrees C, as a function
6 ! of pressure, p, in dbar, using a streamlined version of the CT version
7 ! of specific volume, that is, a streamlined version of the code
8 ! "gsw_specvol(SA,CT,p)".
9 !==========================================================================
10 
12 
13 use gsw_mod_kinds
14 
15 implicit none
16 
17 real (r8), intent(in) :: p
18 
19 real (r8) :: gsw_specvol_sso_0
20 
21 real (r8) :: z
22 
23 z = p*1e-4_r8
24 
25 gsw_specvol_sso_0 = 9.726613854843870e-04_r8 + z*(-4.505913211160929e-05_r8 &
26  + z*(7.130728965927127e-06_r8 + z*(-6.657179479768312e-07_r8 &
27  + z*(-2.994054447232880e-08_r8 + z*(v005 + v006*z)))))
28 
29 return
30 end function
31 
32 !--------------------------------------------------------------------------
elemental real(r8) function gsw_specvol_sso_0(p)