source: trunk/SRC/ToBeReviewed/CALCULS/fsfzpt.pro @ 424

Last change on this file since 424 was 325, checked in by pinsard, 17 years ago

modification of some headers (+some corrections) to prepare usage of the new idldoc

  • Property svn:keywords set to Id
File size: 859 bytes
Line 
1;+
2; @file_comments
3;
4; @categories
5;
6; @param PFS
7;
8; @param PFP
9;
10; @returns
11;
12; @uses
13;
14; @restrictions
15;
16; @examples
17;
18; @history
19;
20;
21; @version
22; $Id$
23;
24; Ice freezing point
25; ==================
26;  fsfzpt: freezing point of seawater in degrees celsius
27;       units : salinity        pfs       (ipss-78)
28;               pressure        pfp      decibars
29;               temperature     fszfpt   degrees celsius
30;               freezing pt
31;       reference : unesco tech. papers in the marine science no 28 1978
32;               eigth report jpots
33;               annex 6 freezing point of seawater F.J.Millero pp.29-35
34;       checkvalue: fsfzpt=-2.588567 deg.c,for s=40.0,p=500 decibars
35;
36; @todo seb
37;
38;-
39FUNCTION fsfzpt, pfs, pfp
40;
41  compile_opt idl2, strictarrsubs
42;
43  RETURN, ( -0.0575 + 1.710523e-3 * sqrt(pfs) - 2.154996e-4 * pfs  ) * pfs - 7.53e-4 * pfp
44END
Note: See TracBrowser for help on using the repository browser.