Skip to content

Commit 00c0273

Browse files
committed
Merge remote-tracking branch 'upstream/main' into pvsystem_sapm_table
2 parents daf1fec + 56811e6 commit 00c0273

File tree

15 files changed

+35582
-35065
lines changed

15 files changed

+35582
-35065
lines changed

docs/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
intersphinx_mapping = {
6767
'python': ('https://docs.python.org/3/', None),
6868
'numpy': ('https://numpy.org/doc/stable/', None),
69-
'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
69+
'scipy': ('https://docs.scipy.org/doc/scipy/', None),
7070
'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None),
7171
'matplotlib': ('https://matplotlib.org/stable', None),
7272
}

docs/sphinx/source/reference/pv_modeling/parameters.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Functions for fitting single diode models
1212
ivtools.sdm.fit_cec_sam
1313
ivtools.sdm.fit_desoto
1414
ivtools.sdm.fit_pvsyst_sandia
15+
ivtools.sdm.fit_pvsyst_iec61853_sandia_2025
1516
ivtools.sdm.fit_desoto_sandia
1617

1718
Functions for fitting the single diode equation

docs/sphinx/source/whatsnew/v0.12.1.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ Bug fixes
1414

1515
Enhancements
1616
~~~~~~~~~~~~
17-
* ``pvlib.ivtools.sdm`` is now a subpackage. (:issue:`2252`, :pull:`2256`)
18-
17+
* :py:mod:`pvlib.ivtools.sdm` is now a subpackage. (:issue:`2252`, :pull:`2256`)
18+
* Add a function for estimating PVsyst SDM parameters from IEC 61853-1 matrix
19+
data (:py:func:`~pvlib.ivtools.sdm.fit_pvsyst_iec61853_sandia_2025`). (:issue:`2185`, :pull:`2429`)
20+
* Add optional arguments ``temperature_ref`` and ``irradiance_ref`` to
21+
:py:func:`~pvlib.pvsystem.sapm`(:issue:`2432`, :pull:`2434`)
1922

2023
Documentation
2124
~~~~~~~~~~~~~
@@ -25,12 +28,18 @@ Documentation
2528
* Clarify which SAPM coefficients are required by the ``module`` parameter in
2629
:py:func:`~pvlib.pvsystem.sapm` (:issue:`2392`, :pull:`2435`)
2730

31+
Requirements
32+
~~~~~~~~~~~~
33+
* ``wheel`` is no longer a build dependency. (:pull:`2439`)
34+
2835
Testing
2936
~~~~~~~
3037

3138

3239
Maintenance
3340
~~~~~~~~~~~
41+
* Update ``pyproject.toml`` to replace deprecated license table and
42+
classifiers. (:issue:`2440`, :pull:`2441`)
3443

3544

3645
Contributors
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.. _whatsnew_0_X_Y:
2+
3+
4+
v0.X.Y (Month XX, 20YY)
5+
-----------------------
6+
7+
Breaking Changes
8+
~~~~~~~~~~~~~~~~
9+
10+
11+
Deprecations
12+
~~~~~~~~~~~~
13+
14+
15+
Bug fixes
16+
~~~~~~~~~
17+
18+
19+
Enhancements
20+
~~~~~~~~~~~~
21+
22+
23+
Documentation
24+
~~~~~~~~~~~~~
25+
26+
27+
Testing
28+
~~~~~~~
29+
30+
31+
Benchmarking
32+
~~~~~~~~~~~~
33+
34+
35+
Requirements
36+
~~~~~~~~~~~~
37+
38+
39+
Maintenance
40+
~~~~~~~~~~~
41+
42+
43+
Contributors
44+
~~~~~~~~~~~~
45+

pvlib/ivtools/sdm/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515

1616
from pvlib.ivtools.sdm.pvsyst import ( # noqa: F401
1717
fit_pvsyst_sandia,
18+
fit_pvsyst_iec61853_sandia_2025,
1819
pvsyst_temperature_coeff,
1920
)

0 commit comments

Comments
 (0)