-
Notifications
You must be signed in to change notification settings - Fork 0
/
gsw_C3515.m
executable file
·37 lines (34 loc) · 1.26 KB
/
gsw_C3515.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
function C3515 = gsw_C3515
% gsw_C3515 Conductivity of SSW at SP=35,t_68=15,p=0
%==========================================================================
%
% USAGE:
% C3515 = gsw_C3515
%
% DESCRIPTION:
% This function provides the present estimate of Conductivity, C, of
% Standard Seawater (SSW) at (SP=35, t_68=15, p=0) which is
% 42.9140 mS/cm (=4.29140 S/m) (Culkin and Smith, 1980; UNESCO, 1983).
%
% OUTPUT:
% C3515 = Conductivity at (SP=35, t_68=15, p=0) [ mS/cm ]
%
% AUTHOR:
% Trevor McDougall and Paul Barker [ [email protected] ]
%
% VERSION NUMBER: 3.05 (27th January 2015)
%
% REFERENCES:
% Culkin and Smith, 1980: Determination of the Concentration of Potassium
% Chloride Solution Having the Same Electrical Conductivity, at 15C and
% Infinite Frequency, as Standard Seawater of Salinity 35.0000
% (Chlorinity 19.37394), IEEE J. Oceanic Eng, 5, 22-23.
%
% Unesco, 1983: Algorithms for computation of fundamental properties of
% seawater. Unesco Technical Papers in Marine Science, 44, 53 pp.
%
% The software is available from http://www.TEOS-10.org
%
%==========================================================================
C3515 = 42.9140;
end