-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgsw_entropy_from_pt.m
76 lines (64 loc) · 2.1 KB
/
gsw_entropy_from_pt.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
function entropy = gsw_entropy_from_pt(SA,pt)
% gsw_entropy_from_pt specific entropy of seawater
%==========================================================================
%
% USAGE:
% entropy = gsw_entropy_from_pt(SA,pt)
%
% DESCRIPTION:
% Calculates specific entropy of seawater as a function of potential
% temperature.
%
% INPUT:
% SA = Absolute Salinity [ g/kg ]
% pt = potential temperature (ITS-90) [ deg C ]
%
% SA & pt need to have the same dimensions.
%
% OUTPUT:
% entropy = specific entropy [ J/(kg*K) ]
%
% AUTHOR:
% Trevor McDougall and Paul Barker [ help@teos-10.org ]
%
% VERSION NUMBER: 3.05 (27th January 2015)
%
% REFERENCES:
% IOC, SCOR and IAPSO, 2010: The international thermodynamic equation of
% seawater - 2010: Calculation and use of thermodynamic properties.
% Intergovernmental Oceanographic Commission, Manuals and Guides No. 56,
% UNESCO (English), 196 pp. Available from http://www.TEOS-10.org
% See appendix A.10 of this TEOS-10 Manual.
%
% The software is available from http://www.TEOS-10.org
%
%==========================================================================
%--------------------------------------------------------------------------
% Check variables and resize if necessary
%--------------------------------------------------------------------------
if ~(nargin == 2)
error('gsw_entropy_from_pt: Requires two inputs')
end %if
[ms,ns] = size(SA);
[mt,nt] = size(pt);
if (mt ~= ms | nt ~= ns)
error('gsw_entropy_from_pt: SA and pt must have same dimensions')
end
if ms == 1
SA = SA.';
pt = pt.';
transposed = 1;
else
transposed = 0;
end
%--------------------------------------------------------------------------
% Start of the calculation
%--------------------------------------------------------------------------
% This line ensures that SA is non-negative.
SA(SA < 0) = 0;
pr0 = zeros(size(SA));
entropy = -gsw_gibbs(0,1,0,SA,pt,pr0);
if transposed
entropy = entropy.';
end
end