Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Toolbox/gsw_p_from_z.m
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Toolbox/gsw_rho_first_derivatives.m
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions Toolbox/library/gsw_enthalpy_SSO_0.m
Original file line number Diff line number Diff line change
@@ -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)".
%
Expand Down
4 changes: 2 additions & 2 deletions Toolbox/library/gsw_infunnel.m
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions Toolbox/library/gsw_specvol_SSO_0.m
Original file line number Diff line number Diff line change
@@ -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)".
%
Expand Down