From e23d2c466c7ea25b994522f5fed4b2e2aa729a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Castel=C3=A3o?= Date: Wed, 1 Mar 2017 12:47:03 -0800 Subject: [PATCH] BUGFIX #1: Typo, it should be 75-term instead of 76. --- Toolbox/gsw_p_from_z.m | 2 +- Toolbox/gsw_rho_first_derivatives.m | 2 +- Toolbox/library/gsw_enthalpy_SSO_0.m | 4 ++-- Toolbox/library/gsw_infunnel.m | 4 ++-- Toolbox/library/gsw_specvol_SSO_0.m | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Toolbox/gsw_p_from_z.m b/Toolbox/gsw_p_from_z.m index 4237817..3f84707 100644 --- a/Toolbox/gsw_p_from_z.m +++ b/Toolbox/gsw_p_from_z.m @@ -1,6 +1,6 @@ function p = gsw_p_from_z(z,lat,geo_strf_dyn_height,sea_surface_geopotental) -% gsw_p_from_z pressure from height (76-term equation) +% gsw_p_from_z pressure from height (75-term equation) %========================================================================== % % USAGE: diff --git a/Toolbox/gsw_rho_first_derivatives.m b/Toolbox/gsw_rho_first_derivatives.m index 2de790d..c7e8bb8 100644 --- a/Toolbox/gsw_rho_first_derivatives.m +++ b/Toolbox/gsw_rho_first_derivatives.m @@ -1,7 +1,7 @@ function [rho_SA, rho_CT, rho_P] = gsw_rho_first_derivatives(SA,CT,p) % gsw_rho_first_derivatives SA, CT and p partial derivatives -% of density (76-term equation) +% of density (75-term equation) %========================================================================== % % USAGE: diff --git a/Toolbox/library/gsw_enthalpy_SSO_0.m b/Toolbox/library/gsw_enthalpy_SSO_0.m index 8e2fed0..5bbcab2 100644 --- a/Toolbox/library/gsw_enthalpy_SSO_0.m +++ b/Toolbox/library/gsw_enthalpy_SSO_0.m @@ -1,11 +1,11 @@ function enthalpy_SSO_0 = gsw_enthalpy_SSO_0(p) % gsw_enthalpy_SSO_0 enthalpy at (SSO,CT=0,p) -% (76-term eqn.) +% (75-term eqn.) %========================================================================== % This function calculates enthalpy at the Standard Ocean Salinity, SSO, % and at a Conservative Temperature of zero degrees C, as a function of -% pressure, p, in dbar, using a streamlined version of the 76-term +% pressure, p, in dbar, using a streamlined version of the 75-term % computationally-efficient expression for specific volume, that is, a % streamlined version of the code "gsw_enthalpy(SA,CT,p)". % diff --git a/Toolbox/library/gsw_infunnel.m b/Toolbox/library/gsw_infunnel.m index 72992e7..233e83c 100644 --- a/Toolbox/library/gsw_infunnel.m +++ b/Toolbox/library/gsw_infunnel.m @@ -1,6 +1,6 @@ function in_funnel = gsw_infunnel(SA,CT,p) -% gsw_infunnel "oceanographic funnel" check for the 76-term equation +% gsw_infunnel "oceanographic funnel" check for the 75-term equation %========================================================================== % % USAGE: @@ -20,7 +20,7 @@ % = 1, if SA, CT and p are inside the "funnel" % Note. The term "funnel" (McDougall et al., 2003) describes the range of % SA, CT and p over which the error in the fit of the computationally -% efficient 76-term expression for specific volume in terms of SA, CT +% efficient 75-term expression for specific volume in terms of SA, CT % and p was calculated (Roquet et al., 2015). % % AUTHOR: diff --git a/Toolbox/library/gsw_specvol_SSO_0.m b/Toolbox/library/gsw_specvol_SSO_0.m index f9ef510..1587b70 100644 --- a/Toolbox/library/gsw_specvol_SSO_0.m +++ b/Toolbox/library/gsw_specvol_SSO_0.m @@ -1,11 +1,11 @@ function specvol_SSO_0 = gsw_specvol_SSO_0(p) %gsw_specvol_SSO_0 specific volume at (SSO,CT=0,p) -% (76-term equation) +% (75-term equation) %========================================================================== % This function calculates specifc volume at the Standard Ocean Salinity, % SSO, and at a Conservative Temperature of zero degrees C, as a function -% of pressure, p, in dbar, using a streamlined version of the 76-term CT +% of pressure, p, in dbar, using a streamlined version of the 75-term CT % version of specific volume, that is, a streamlined version of the code % "gsw_specvol(SA,CT,p)". %