1
1
.. _whatsnew_01120 :
2
2
3
3
4
- v0.11.2 (Anticipated December, 2024)
5
- ------------------------------------
4
+ v0.11.2 (December 16 , 2024)
5
+ ---------------------------
6
6
7
7
Deprecations
8
8
~~~~~~~~~~~~
9
- * Deprecated terms ``dni_clearsky `` and ``clearsky_dni ``, replaced with ``dni_clear ``.
10
- Affected functions are :py:func: `~pvlib.irradiance.dirindex ` and :py:func: `~pvlib.irradiance.dni `.
11
- (:issue: `2272 `, :pull: `2274 `)
12
- * Deprecated term ``ghi_clearsky ``, replaced with ``ghi_clear ``.
13
- Affected functions are :py:func: `~pvlib.irradiance.dirindex ` and :py:func: `~pvlib.irradiance.clearsky_index `.
14
- (:issue: `2272 `, :pull: `2306 `)
15
-
9
+ * Deprecate terms ``dni_clearsky `` and ``clearsky_dni ``, replace with ``dni_clear `` and ``ghi_clear ``.
10
+ Affected functions are :py:func: `~pvlib.irradiance.dirindex `, :py:func: `~pvlib.irradiance.dni `
11
+ and :py:func: `~pvlib.irradiance.clearsky_index `.
16
12
17
13
Enhancements
18
14
~~~~~~~~~~~~
19
- * :py:func: `~pvlib.atmosphere.rh_from_tdew ` and :py:func: `~pvlib.atmosphere.tdew_from_rh `
20
- added. (:issue: `1744 `, :pull: `2286 `)
15
+ * Add :py:func: `~pvlib.atmosphere.rh_from_tdew ` and :py:func: `~pvlib.atmosphere.tdew_from_rh `.
16
+ (:issue: `1744 `, :pull: `2286 `)
21
17
* :py:func: `~pvlib.ivtools.sdm.fit_desoto ` now allows input of initial
22
18
parameter guesses. (:issue: `1014 `, :pull: `2291 `)
23
19
@@ -27,60 +23,51 @@ Bug Fixes
27
23
(:issue: `1338 `, :pull: `2227 `)
28
24
* Handle DST transitions that happen at midnight in :py:func: `pvlib.solarposition.hour_angle `
29
25
(:issue: `2132 ` :pull: `2133 `)
30
- * Changed ``dni_extra `` to a required parameter in :py:func: `pvlib.irradiance.ghi_from_poa_driesse_2023 `
26
+ * Change ``dni_extra `` to a required parameter in :py:func: `pvlib.irradiance.ghi_from_poa_driesse_2023 `
31
27
(:issue: `2279 ` :pull: `2331 `)
32
-
33
-
34
- Bug fixes
35
- ~~~~~~~~~
36
28
* :py:func: `~pvlib.spa.julian_day_dt ` now accounts for the 10 day difference
37
29
between Julian and Gregorian calendars prior to the year 1582. (:issue: `2077 `, :pull: `2249 `)
38
- * Corrected sign of temperature coefficient ``dEgdT `` in :py:func: `~pvlib.pvsystem .fit_desoto_sandia `.
30
+ * Correct sign of temperature coefficient ``dEgdT `` in :py:func: `~pvlib.ivtools.sdm .fit_desoto_sandia `.
39
31
Results may differ slightly from previous versions. (:issue: `2311 `, :pull: `2322 `)
40
32
41
33
Documentation
42
34
~~~~~~~~~~~~~
43
- * Edited docstrings for :py:func: `~pvlib.pvsystem.dc_ohms_from_percent ` and
35
+ * Edit docstrings for :py:func: `~pvlib.pvsystem.dc_ohms_from_percent ` and
44
36
:py:func: `~pvlib.pvsystem.dc_ohmic_losses ` for clarity. (:issue: `1601 `, :pull: `2229 `)
45
- * Added 'freestanding' and 'insulated' `racking_model ` options for cell
46
- temperature calculation in :py:class: `~pvlib.pvsystem.PVSystem `
37
+ * Add 'freestanding' and 'insulated' `racking_model ` options for cell
38
+ temperature calculation in :py:class: `~pvlib.pvsystem.PVSystem `,
47
39
:py:class: `~pvlib.pvsystem.SingleAxisTrackerMount `, and
48
40
:py:class: `~pvlib.pvsystem.FixedMount ` docstrings. Various formatting edits
49
41
for clarity. (:issue: `1942 `, :pull: `2232 `)
50
- * Added a new citation style guide (:ref: `reference_style `) to the contributing
51
- page. (:issue: `2202 `, :pull: `2226 `)
52
- * Updated :py:func: `~pvlib.irradiance.reindl ` to include definitions of terms
42
+ * Update :py:func: `~pvlib.irradiance.reindl ` to include definitions of terms
53
43
and a new "notes" section (:issue: `2183 `, :pull: `2193 `)
54
- * Clarified the error message in :py:func: `~pvlib.clearsky.detect_clearsky ` when
44
+ * Clarify the error message in :py:func: `~pvlib.clearsky.detect_clearsky ` when
55
45
windows contain fewer than three data points (:issue: `2005 `, :pull: `2281 `)
56
- * Added a new :ref: `nomenclature ` page, in place of the Variables and Symbols
57
- page, using the sphinx glossary directive. (:issue: `1421 `, :pull: `2234 `)
58
- * Explained how to write docstrings for new functions in :ref: `example-docstring `
59
- (:discussion: `2081 `, :pull: `2254 `)
60
46
* Clarify mounting cases for parameters for :py:func: `~pvlib.temperature.sapm_module `,
61
47
:py:func: `~pvlib.temperature.sapm_cell ` and :py:func: `~pvlib.temperature.pvsyst_cell `.
62
48
(:issue: `1323 `, :pull: `2293 `)
63
- * Added the following variables to the :ref: `nomenclature ` page:
49
+ * Add an example to :py:func: `~pvlib.pvsystem.retrieve_sam ` docstring to
50
+ demonstrate how to retrieve a database from the SAM repo. (:pull: `2313 `)
51
+ * Add a new citation style guide (:ref: `reference_style `) to the contributing
52
+ page. (:issue: `2202 `, :pull: `2226 `)
53
+ * Explain how to write docstrings for new functions in :ref: `example-docstring `
54
+ (:discuss: `2081 `, :pull: `2254 `)
55
+ * Add a section in the style guide for parameter naming and units best practices.
56
+ See :ref: `documentation-units `. (:issue: `2205 `, :pull: `2248 `)
57
+ * Add a new :ref: `nomenclature ` page, in place of the Variables and Symbols
58
+ page, using the sphinx glossary directive. (:issue: `1421 `, :pull: `2234 `)
59
+ * Add the following variables to the :ref: `nomenclature ` page:
64
60
65
61
- `spectra ` and `spectra_components ` (:issue: `2150 `, :pull: `2264 `)
66
62
67
- * Added a section in the style guide for parameter naming and units best practices.
68
- See :ref: `documentation-units `. (:issue: `2205 `, :pull: `2248 `)
69
- * Added a example to :py:func: `~pvlib.pvsystem.retrieve_sam ` docstring to
70
- demonstrate how to retrieve a database from the SAM repo. (:pull: `2313 `)
71
63
72
64
Testing
73
65
~~~~~~~
74
- * Updated test files to track new PVGIS 5.3 data. (:pull: `2305 `)
75
-
76
-
77
- Requirements
78
- ~~~~~~~~~~~~
79
-
66
+ * Update test files to track new PVGIS 5.3 data. (:pull: `2305 `)
80
67
81
68
Maintenance
82
69
~~~~~~~~~~~
83
- * Added a decorator to deprecate renamed keyword arguments in functions,
70
+ * Add a decorator to deprecate renamed keyword arguments in functions,
84
71
:py:func: `pvlib._deprecation.renamed_kwarg_warning `. (:pull: `2237 `)
85
72
86
73
@@ -91,8 +78,22 @@ Contributors
91
78
* Dave Pitts (:ghuser: `dgapitts `)
92
79
* Kurt Rhee (:ghuser: `kurt-rhee `)
93
80
* Mark Mikofski (:ghuser: `mikofski `)
94
- * matsuobasho (:ghuser: `matsuobasho `)
81
+ * Roma Koulikov (:ghuser: `matsuobasho `)
95
82
* Echedey Luis (:ghuser: `echedey-ls `)
96
83
* Kevin Anderson (:ghuser: `kandersolar `)
97
84
* Scott Nelson (:ghuser: `scttnlsn `)
98
85
* Ioannis Sifnaios (:ghuser: `IoannisSifnaios `)
86
+ * Adam R. Jensen (:ghuser: `AdamRJensen `)
87
+ * Anton Driesse (:ghuser: `adriesse `)
88
+ * Will Holmgren (:ghuser: `wholmgren `)
89
+ * Umay Akkoseoglu (:ghuser: `uakkoseo `)
90
+ * Mark Campanelli (:ghuser: `markcampanelli `)
91
+ * :ghuser: `iblasi `
92
+ * Hiromasa Ihara (:ghuser: `miettal `)
93
+ * Yunho Kee (:ghuser: `yhkee0404 `)
94
+ * Hamilton Kibbe (:ghuser: `hamiltonkibbe `)
95
+ * Felix Korbelius (:ghuser: `FelixKoTU `)
96
+ * Michael Deceglie (:ghuser: `mdeceglie `)
97
+ * Will Hobbs (:ghuser: `williamhobbs `)
98
+ * Todd Karin (:ghuser: `toddkarin `)
99
+ * Lucas Schneeberger (:ghuser: `lucasschn `)
0 commit comments