@@ -5,21 +5,35 @@ v0.5.2 (__, 2017)
5
5
6
6
API Changes
7
7
~~~~~~~~~~~
8
- * removed unused 'pressure' arg from irradiance.liujordan function (:issue: `386 `)
8
+ * pvlib python is changing a handful of function names. In general, functions
9
+ that can calculate a quantity using multiple algorithms now start
10
+ with the prefix ``get_ ``. For example, ``relativeairmass `` can calculate
11
+ airmass using one of many ``model `` arguments. Its name has been changed
12
+ to ``get_relative_airmass ``. The old function names remain in this
13
+ release, but will emit a ``PVLibDeprecationWarning `` when called. The
14
+ old functions will be removed in the 0.6 release. Functions composed
15
+ of multiple words jammed together have been renamed with underscores
16
+ separating the words (see above).
17
+ Each change is detailed below. (:issue: `427 `)
18
+ * Deprecated relativeairmass. relativeairmass will be removed in 0.6.
19
+ Use the new get_relative_airmass instead. (:issue: `427 `)
20
+ * Deprecated absoluteairmass. absoluteairmass will be removed in 0.6.
21
+ Use the new absolute_airmass instead. (:issue: `427 `)
9
22
* Deprecated irradiance.globalinplane. globalinplane will be removed in 0.6.
10
- Use the new irradiance.poa_components instead. (:issue: `422 `)
23
+ Use the new irradiance.poa_components instead. (:issue: `427 `)
11
24
* Added irradiance.poa_components. Function is the same as the now-deprecated
12
25
irradiance.globalinplane, but adds 'poa_sky_diffuse' and
13
- 'poa_ground_diffuse' to the output. (:issue: `422 `)
26
+ 'poa_ground_diffuse' to the output. (:issue: `427 `)
14
27
* Deprecated irradiance.extraradiation. Use irradiance.get_extra_radiation
15
- instead. irradiance.extraradiation will be removed in 0.6. (:issue: `422 `)
28
+ instead. irradiance.extraradiation will be removed in 0.6. (:issue: `427 `)
16
29
* Deprecated irradiance.grounddiffuse. Use irradiance.get_ground_diffuse
17
- instead. irradiance.grounddiffuse will be removed in 0.6. (:issue: `422 `)
18
- * Added irradiance.get_poa_sky_diffuse. (:issue: `422 `)
30
+ instead. irradiance.grounddiffuse will be removed in 0.6. (:issue: `427 `)
31
+ * Added irradiance.get_poa_sky_diffuse. (:issue: `427 `)
19
32
* Deprecated irradiance.total_irrad. Use irradiance.get_total_poa_irradiance
20
- instead. irradiance.total_irrad will be removed in 0.6. (:issue: `422 `)
33
+ instead. irradiance.total_irrad will be removed in 0.6. (:issue: `427 `)
21
34
* Removed 'klutcher' from get_sky_diffuse/total_irrad. This misspelling was
22
35
deprecated long ago but never removed.
36
+ * removed unused 'pressure' arg from irradiance.liujordan function (:issue: `386 `)
23
37
24
38
25
39
Enhancements
0 commit comments