1
1
.. _whatsnew_0600 :
2
2
3
- v0.6.0 (___, 2018)
4
- ---------------------
3
+ v0.6.0 (September 17, 2018)
4
+ ---------------------------
5
+
6
+ This is a major release and contains a large number of API changes, new
7
+ features, and bug fixes. Users should carefully read the changelog below
8
+ before upgrading.
5
9
6
10
**Python 2.7 support will end on June 1, 2019 **. Releases made after this
7
11
date will require Python 3. (:issue: `501 `)
@@ -13,31 +17,31 @@ API Changes
13
17
that can calculate a quantity using multiple algorithms now start
14
18
with the prefix ``get_ ``. For example, ``relativeairmass `` can calculate
15
19
airmass using one of many ``model `` arguments. Its name has been changed
16
- to `` get_relative_airmass ` `. The old function names remain in this
20
+ to :func: ` ~pvlib.atmosphere. get_relative_airmass `. The old function names remain in this
17
21
release, but will emit a ``PVLibDeprecationWarning `` when called. The
18
- old functions will be removed in the 0 .7 release. Functions composed
22
+ old functions will be removed in the v0 .7 release. Functions composed
19
23
of multiple words jammed together have been renamed with underscores
20
24
separating the words (see above).
21
25
Each change is detailed below. (:issue: `427 `)
22
- * Deprecated relativeairmass. relativeairmass will be removed in 0 .7.
23
- Use the new get_relative_airmass instead. (:issue: `427 `)
24
- * Deprecated absoluteairmass. absoluteairmass will be removed in 0 .7.
25
- Use the new get_absolute_airmass instead. (:issue: `427 `)
26
- * Deprecated irradiance.globalinplane. globalinplane will be removed in 0 .7.
27
- Use the new irradiance.poa_components instead. (:issue: `427 `)
28
- * Added irradiance.poa_components. Function is the same as the now-deprecated
29
- irradiance.globalinplane, but adds 'poa_sky_diffuse' and
30
- 'poa_ground_diffuse' to the output. (:issue: `427 `)
31
- * Deprecated irradiance.extraradiation. Use irradiance.get_extra_radiation
32
- instead. irradiance.extraradiation will be removed in 0.7 . (:issue: `427 `)
33
- * Deprecated irradiance.grounddiffuse. Use irradiance.get_ground_diffuse
34
- instead. irradiance.grounddiffuse will be removed in 0.7 . (:issue: `427 `)
35
- * Added irradiance.get_poa_sky_diffuse. (:issue: `427 `)
36
- * Deprecated irradiance.total_irrad. Use irradiance.get_total_poa_irradiance
37
- instead. irradiance.total_irrad will be removed in 0.7 . (:issue: `427 `)
38
- * Removed 'klutcher' from get_sky_diffuse/ total_irrad. This misspelling was
26
+ * Deprecated `` relativeairmass ``; it will be removed in v0 .7.
27
+ Use the new :func: ` ~pvlib.atmosphere. get_relative_airmass` instead. (:issue: `427 `)
28
+ * Deprecated `` absoluteairmass ``; it will be removed in v0 .7.
29
+ Use the new :func: ` ~pvlib.atmosphere. get_absolute_airmass` instead. (:issue: `427 `)
30
+ * Deprecated `` irradiance.globalinplane ``; it will be removed in v0 .7.
31
+ Use the new :func: ` ~pvlib. irradiance.poa_components` instead. (:issue: `427 `)
32
+ * Added :func: ` ~pvlib. irradiance.poa_components` . Function is the same as the now-deprecated
33
+ `` irradiance.globalinplane `` , but adds `` 'poa_sky_diffuse' `` and
34
+ `` 'poa_ground_diffuse' `` to the output. (:issue: `427 `)
35
+ * Deprecated `` irradiance.extraradiation ``; it will be removed in v0.7.
36
+ Use :func: ` pvlib. irradiance.get_extra_radiation ` instead . (:issue: `427 `)
37
+ * Deprecated `` irradiance.grounddiffuse ``; it will be removed in v0.7. Use
38
+ :func: ` ~pvlib. irradiance.get_ground_diffuse ` instead . (:issue: `427 `)
39
+ * Added :func: ` ~pvlib. irradiance.get_poa_sky_diffuse` . (:issue: `427 `)
40
+ * Deprecated `` irradiance.total_irrad ``; it will be removed in v0.7. Use
41
+ :func: ` ~pvlib. irradiance.get_total_poa_irradiance ` instead . (:issue: `427 `)
42
+ * Removed `` 'klutcher' `` from `` get_sky_diffuse ``/`` total_irrad `` . This misspelling was
39
43
deprecated long ago but never removed. (:issue: `97 `)
40
- * pvsystem.calcparams_desoto now requires arguments for each module model
44
+ * :func: ` ~pvlib. pvsystem.calcparams_desoto` now requires arguments for each module model
41
45
parameter. (:issue: `462 `)
42
46
* Add losses_parameters attribute to PVSystem objects and remove the kwargs
43
47
support from PVSystem.pvwatts_losses. Enables custom losses specification
@@ -75,7 +79,7 @@ Enhancements
75
79
* Clarify arguments ``Egref `` and ``dEgdT `` for
76
80
:func: `~pvlib.pvsystem.calcparams_desoto ` (:issue: `462 `)
77
81
* Add pvsystem.calcparams_pvsyst to compute values for the single diode equation
78
- using the PVsyst v6 model (:issue: ' 470' )
82
+ using the PVsyst v6 model (:issue: ` 470 ` )
79
83
* Extend :func: `~pvlib.pvsystem.singlediode ` with an additional keyword argument
80
84
``method `` in ``('lambertw', 'newton', 'brentq') ``, default is ``'lambertw' ``,
81
85
to select a method to solve the single diode equation for points on the IV
@@ -196,13 +200,24 @@ Testing
196
200
* Improve test_atmosphere.py. (:issue: `158 `)
197
201
* Add LGTM.com integration. (:issue: `554 `)
198
202
* Add SticklerCI integration.
203
+ * Add codecov integration.
199
204
200
205
201
206
Contributors
202
207
~~~~~~~~~~~~
203
- * Will Holmgren
204
- * Yu Cao
205
- * Cliff Hansen
206
- * Mark Mikofski
207
- * Alan Mathew
208
- * Xavier Rene-Corail
208
+ * Will Holmgren (:ghuser: `wholmgren `)
209
+ * Yu Cao (:ghuser: `tsaoyu `)
210
+ * Cliff Hansen (:ghuser: `cwhanse `)
211
+ * Mark Mikofski (:ghuser: `mikofski `)
212
+ * Alan Mathew (:ghuser: `alamathe1 `)
213
+ * Xavier Rene-Corail (:ghuser: `xcorail `)
214
+ * Anton Driesse (:ghuser: `adriesse `)
215
+ * Mark Campanelli (:ghuser: `thunderfish24 `)
216
+ * Cedric Leroy (:ghuser: `cedricleroy `)
217
+ * Jessica Forbess (:ghuser: `jforbess `)
218
+ * Jeff Newmiller (:ghuser: `jdnewmil `)
219
+ * :ghuser: `josricha `
220
+ * Marc A. Anoma (:ghuser: `anomam `)
221
+ * William C Grisaitis (:ghuser: `grisaitis `)
222
+ * Karel De Brabandere (:ghuser: `kdebrab `)
223
+ * :ghuser: `tadatoshi `
0 commit comments