-
Notifications
You must be signed in to change notification settings - Fork 0
/
gsw_cp_ice.m
executable file
·81 lines (71 loc) · 2.59 KB
/
gsw_cp_ice.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
77
78
79
80
81
function cp_ice = gsw_cp_ice(t,p)
% gsw_cp_ice isobaric heat capacity of ice
%==========================================================================
%
% USAGE:
% cp_ice = gsw_cp_ice(t,p)
%
% DESCRIPTION:
% Calculates the isobaric heat capacity of seawater.
%
% INPUT:
% t = in-situ temperature (ITS-90) [ deg C ]
% p = sea pressure [ dbar ]
% ( i.e. absolute pressure - 10.1325 dbar )
%
% p may have dimensions 1x1 or Mx1 or 1xN or MxN, where t is MxN.
%
% OUTPUT:
% cp_ice = heat capacity of ice [J kg^-1 K^-1]
%
% AUTHOR:
% Paul Barker and Trevor McDougall [ [email protected] ]
%
% 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
%
% The software is available from http://www.TEOS-10.org
%
%==========================================================================
%--------------------------------------------------------------------------
% Check variables and resize if necessary
%--------------------------------------------------------------------------
if ~(nargin == 2)
error('gsw_cp_ice: Requires two inputs')
end
[mt,nt] = size(t);
[mp,np] = size(p);
if (mp == 1) & (np == 1) % p scalar - fill to size of SA
p = p*ones(size(t));
elseif (nt == np) & (mp == 1) % p is row vector,
p = p(ones(1,ms), :); % copy down each column.
elseif (mt == mp) & (np == 1) % p is column vector,
p = p(:,ones(1,nt)); % copy across each row.
elseif (nt == mp) & (np == 1) % p is a transposed row vector,
p = p.'; % transposed then
p = p(ones(1,mt), :); % copy down each column.
elseif (mt == mp) & (nt == np)
% ok
else
error('gsw_cp_ice: Inputs array dimensions arguments do not agree')
end
if mt == 1
t = t.';
p = p.';
transposed = 1;
else
transposed = 0;
end
%--------------------------------------------------------------------------
% Start of the calculation
%--------------------------------------------------------------------------
cp_ice = -(t + gsw_T0).*gsw_gibbs_ice(2,0,t,p);
if transposed
cp_ice = cp_ice.';
end
end