~ubuntu-branches/ubuntu/wily/gsw/wily-proposed

« back to all changes in this revision

Viewing changes to PKG-INFO

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2013-07-18 07:26:49 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130718072649-s2yct1q8we4z1w37
Tags: 3.0.2-1
* New upstream release. 
* Move to DH 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Metadata-Version: 1.0
 
1
Metadata-Version: 1.1
2
2
Name: gsw
3
 
Version: 3.0.1
 
3
Version: 3.0.2
4
4
Summary: Gibbs SeaWater Oceanographic Package of TEOS-10
5
5
Home-page: http://pypi.python.org/pypi/seawater/
6
6
Author: Filipe Fernandes
25
25
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
26
THE SOFTWARE.
27
27
 
 
28
Download-URL: https://pypi.python.org/pypi/gsw/
28
29
Description: ==========
29
30
        python gsw
30
31
        ==========
44
45
        
45
46
        This table shows some function names in the gibbs library and the corresponding function names in the csiro library.
46
47
        
47
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
48
 
        | **Variable**                          | **SeaWater (EOS 80)**         | **Gibbs SeaWater (GSW TEOS 10)**                      |
49
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
50
 
        | Absolute Salinity                     |          NA                   | gsw.SA_from_SP(SP,p,long,lat)                         |
51
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
52
 
        | Conservative Temperature              |          NA                   | gsw.CT_from_t(SA,t,p)                                 |
53
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
54
 
        | density (i.e. in situ density)        |  sw.dens(SP,t,p)              | gsw.rho_CT(SA,CT,p), or gsw.rho(SA,t,p), or           |
55
 
        |                                       |                               | gsw.rho_CT25(SA,CT,p)                                 |
56
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
57
 
        | potential density                     |  sw.pden(SP,t,p,pr)           | gsw.rho_CT(SA,CT,pr), or                              |
58
 
        |                                       |                               | gsw.rho_CT25(SA,CT,pr)                                |
59
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
60
 
        | potential temperature                 |  sw.ptmp(SP,t,p,pr)           | gsw.pt_from_t(SA,t,p,pr)                              |
61
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
62
 
        | $\sigma_0$, using                     |  sw.dens(SP, $\theta_o$, 0)   | gsw.sigma0_CT(SA,CT)                                  |
63
 
        |  $\theta_o$ = sw.ptmp(SP,t,p,0)       |  -1000 kg m :sup:`-3`         |                                                       |
64
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
65
 
        | $\sigma_2$, using                     |  sw.dens(SP,$\theta_2$, 2000) | gsw.sigma2_CT(SA,CT)                                  |
66
 
        |  $\theta_2$ = sw.ptmp(SP,t,p,2000)    |  -1000 kg m :sup:`-3`         |                                                       |
67
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
68
 
        | $\sigma_4$, using                     |  sw.dens(SP,$\theta_4$, 4000) | gsw.sigma2_CT(SA,CT)                                  |
69
 
        |  $\theta_4$ = sw.ptmp(SP,t,p,2000)    |  -1000 kg m :sup:`-3`         |                                                       |
70
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
71
 
        | specific volume anomaly               |  sw.svan(SP,t,p)              | gsw.specvol_anom_CT(SA,CT,p)  or                      |
72
 
        |                                       |                               | gsw.specvol_anom_CT25(SA,CT,p)                        |
73
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
74
 
        | dynamic height anomaly                | -sw.gpan(SP,t,p)              | gsw.geo_strf_dyn_height(SA,CT,p,delta_p,interp_style) |
75
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
76
 
        | geostrophic velocity                  |  sw.gvel(ga,lat,long)         | gsw.geostrophic_velocity(geo_str,long,lat,p)          |
77
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
78
 
        | N :sup:`2`                            |  sw.bfrq(SP,t,p,lat)          | gsw.Nsquared_CT25(SA,CT,p,lat)                        |
79
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
80
 
        | pressure from height                  |  sw.pres(-z,lat)              | gsw.p_from_z(z,lat)                                   |
81
 
        | (SW uses depth, not height)           |                               |                                                       |
82
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
83
 
        | height from pressure                  |  z =  -sw.dpth(p,lat)         | gsw.z_from_p(p,lat)                                   |
84
 
        | (SW outputs depth, not height)        |                               |                                                       |
85
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
86
 
        | in situ temperature from pt           |  sw.temp(SP,pt,p,pr)          | gsw.pt_from_t(SA,pt,pr,p)                             |
87
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
88
 
        | sound speed                           |  sw.svel(SP,t,p)              | gsw.sound_speed(SA,t,p)                               |
89
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
90
 
        | isobaric heat capacity                |  sw.cp(SP,t,p)                | gsw.cp(SA,t,p)                                        |
91
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
92
 
        | adiabatic lapse rate*                 |  sw.adtg(SP,t,p)              | gsw.adiabatic_lapse_rate(SA,t,p)                      |
93
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
94
 
        | SP from cndr,  (PSS 78)               |  sw.salt(cndr,t,p)            | gsw.SP_from_cndr(cndr,t,p)                            |
95
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
96
 
        | cndr from SP,  (PSS 78)               |  sw.cndr(SP,t,p)              | gsw.cndr_from_SP(SP,t,p)                              |
97
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
98
 
        | distance                              |  sw.dist(lat,long,units)      | gsw.distance(long,lat,p)                              |
99
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
100
 
        | gravitational acceleration            |  sw.g(lat,z)                  | gsw.grav(lat,p)                                       |
101
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
102
 
        | Coriolis parameter                    |  sw.f(lat)                    | gsw.f(lat)                                            |
103
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
104
 
        | testing of all functions              |  sw.test()                    | gsw.test()                                            |
105
 
        +---------------------------------------+-------------------------------+-------------------------------------------------------+
 
48
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
49
        | **Variable**                              | **SeaWater (EOS 80)**               | **Gibbs SeaWater (GSW TEOS 10)**                      |
 
50
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
51
        | Absolute Salinity                         |          NA                         | gsw.SA_from_SP(SP,p,long,lat)                         |
 
52
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
53
        | Conservative Temperature                  |          NA                         | gsw.CT_from_t(SA,t,p)                                 |
 
54
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
55
        | density (i.e. in situ density)            |  sw.dens(SP,t,p)                    | gsw.rho_CT(SA,CT,p), or gsw.rho(SA,t,p), or           |
 
56
        |                                           |                                     | gsw.rho_CT25(SA,CT,p)                                 |
 
57
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
58
        | potential density                         |  sw.pden(SP,t,p,pr)                 | gsw.rho_CT(SA,CT,pr), or                              |
 
59
        |                                           |                                     | gsw.rho_CT25(SA,CT,pr)                                |
 
60
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
61
        | potential temperature                     |  sw.ptmp(SP,t,p,pr)                 | gsw.pt_from_t(SA,t,p,pr)                              |
 
62
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
63
        | :math:`\sigma_0`, using                   |  sw.dens(SP, :math:`\theta_o`, 0)   | gsw.sigma0_CT(SA,CT)                                  |
 
64
        |  :math:`\theta_o` = sw.ptmp(SP,t,p,0)     |  -1000 kg m :sup:`-3`               |                                                       |
 
65
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
66
        | :math:`\sigma_2`, using                   |  sw.dens(SP,:math:`\theta_2`, 2000) | gsw.sigma2_CT(SA,CT)                                  |
 
67
        |  :math:`\theta_2` = sw.ptmp(SP,t,p,2000)  |  -1000 kg m :sup:`-3`               |                                                       |
 
68
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
69
        | :math:`\sigma_4`, using                   |  sw.dens(SP,:math:`\theta_4`, 4000) | gsw.sigma2_CT(SA,CT)                                  |
 
70
        |  :math:`\theta_4` = sw.ptmp(SP,t,p,2000)  |  -1000 kg m :sup:`-3`               |                                                       |
 
71
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
72
        | specific volume anomaly                   |  sw.svan(SP,t,p)                    | gsw.specvol_anom_CT(SA,CT,p)  or                      |
 
73
        |                                           |                                     | gsw.specvol_anom_CT25(SA,CT,p)                        |
 
74
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
75
        | dynamic height anomaly                    | -sw.gpan(SP,t,p)                    | gsw.geo_strf_dyn_height(SA,CT,p,delta_p,interp_style) |
 
76
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
77
        | geostrophic velocity                      |  sw.gvel(ga,lat,long)               | gsw.geostrophic_velocity(geo_str,long,lat,p)          |
 
78
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
79
        | N :sup:`2`                                |  sw.bfrq(SP,t,p,lat)                | gsw.Nsquared_CT25(SA,CT,p,lat)                        |
 
80
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
81
        | pressure from height                      |  sw.pres(-z,lat)                    | gsw.p_from_z(z,lat)                                   |
 
82
        | (SW uses depth, not height)               |                                     |                                                       |
 
83
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
84
        | height from pressure                      |  z =  -sw.dpth(p,lat)               | gsw.z_from_p(p,lat)                                   |
 
85
        | (SW outputs depth, not height)            |                                     |                                                       |
 
86
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
87
        | in situ temperature from pt               |  sw.temp(SP,pt,p,pr)                | gsw.pt_from_t(SA,pt,pr,p)                             |
 
88
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
89
        | sound speed                               |  sw.svel(SP,t,p)                    | gsw.sound_speed(SA,t,p)                               |
 
90
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
91
        | isobaric heat capacity                    |  sw.cp(SP,t,p)                      | gsw.cp(SA,t,p)                                        |
 
92
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
93
        | adiabatic lapse rate*                     |  sw.adtg(SP,t,p)                    | gsw.adiabatic_lapse_rate(SA,t,p)                      |
 
94
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
95
        | SP from cndr,  (PSS 78)                   |  sw.salt(cndr,t,p)                  | gsw.SP_from_cndr(cndr,t,p)                            |
 
96
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
97
        | cndr from SP,  (PSS 78)                   |  sw.cndr(SP,t,p)                    | gsw.cndr_from_SP(SP,t,p)                              |
 
98
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
99
        | distance                                  |  sw.dist(lat,long,units)            | gsw.distance(long,lat,p)                              |
 
100
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
101
        | gravitational acceleration                |  sw.g(lat,z)                        | gsw.grav(lat,p)                                       |
 
102
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
103
        | Coriolis parameter                        |  sw.f(lat)                          | gsw.f(lat)                                            |
 
104
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
 
105
        | testing of all functions                  |  sw.test()                          | gsw.test()                                            |
 
106
        +-------------------------------------------+-------------------------------------+-------------------------------------------------------+
106
107
        
107
108
        \* The SW and GSW functions output the adiabatic lapse rate in different units, being  K (dbar) :sup:`-1`  and  K Pa :sup:`-1`  respectively.
108
109
        
110
111
        Thanks
111
112
        ======
112
113
        
 
114
        * Bjørn Ådlandsvik - Testing unit and several bug fixes
113
115
        * Eric Firing - Support for masked arrays, re-write of _delta_SA
114
116
        * Trevor J. McDougall (and all of SCOR/IAPSO WG127) for making available the Matlab and Fortran versions of this software
115
117