-
Notifications
You must be signed in to change notification settings - Fork 0
/
gsw_cp0.m
executable file
·35 lines (32 loc) · 1.17 KB
/
gsw_cp0.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
function cp0 = gsw_cp0
% gsw_cp0 the "specific heat" for use with CT
%==========================================================================
%
% USAGE:
% cp0 = gsw_cp0
%
% DESCRIPTION:
% The "specific heat" for use with Conservative Temperature. cp0 is the
% ratio of potential enthalpy to Conservative Temperature.
%
% OUTPUT:
% cp0 = The "specific heat" for use [ J/(kg K) ]
% with Conservative Temperature
%
% AUTHOR:
% Trevor McDougall and Paul Barker [ [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.
% See Eqn. (3.3.3) and Table D.5 of this TEOS-10 Manual.
%
% The software is available from http://www.TEOS-10.org
%
%==========================================================================
cp0 = 3991.86795711963;
end