Skip to content

Commit 7023b69

Browse files
Apply suggestions from code review
Co-authored-by: Echedey Luis <80125792+echedey-ls@users.noreply.github.com>
1 parent dc6e849 commit 7023b69

2 files changed

Lines changed: 14 additions & 10 deletions

File tree

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

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,42 +17,46 @@ Bug fixes
1717
nrel.gov. (:issue:`2701`, :pull:`2705`)
1818
* Fix a bug in :py:func:`pvlib.iotools.era5._m_to_cm` where meters were
1919
incorrectly divided by 100 instead of multiplied, causing precipitations to be
20-
underestimated by a factor of 10,000 when ``map_variables=True``.
20+
* Fix a bug in :py:func:`pvlib.iotools.get_era5` where conversion of
21+
precipitation in meters to ``cm`` was underestimated by a factor of 10,000 when ``map_variables=True``.
2122
(:issue:`2724`, :pull:`2725`)
2223

2324

2425
Enhancements
2526
~~~~~~~~~~~~
26-
* Use ``k`` and ``cap_adjustment`` from :py:func:`pvlib.pvsystem.Array.module_parameters`
27+
* Use ``k`` and ``cap_adjustment`` from :py:attr:`pvlib.pvsystem.Array.module_parameters`
2728
in :py:func:`pvlib.pvsystem.PVSystem.pvwatts_dc`
2829
(:issue:`2714`, :pull:`2715`)
29-
* Include `ross` and `faiman_rad` in the allowed models within
30+
* Include ``ross`` and ``faiman_rad`` in the allowed models within
3031
:py:meth:`pvlib.pvsystem.PVSystem.get_cell_temperature` (:issue:`2625`, :pull:`2631`)
3132
* Accelerate the internals of :py:func:`~pvlib.solarposition.ephemeris`. (:pull:`2626`)
3233
* Accelerate the intervals of :py:func:`~pvlib.pvsystem.singlediode` when
33-
`method='lambertw'`. (:pull:`2732`, :pull:`2723`)
34+
``method='lambertw'``. (:pull:`2732`, :pull:`2723`)
3435
* :py:func:`~pvlib.tracking.singleaxis` accepts negative values for
35-
parameter `axis_tilt`. (:pull:`2702`, :issue:`1976`)
36+
parameter ``axis_tilt``. (:pull:`2702`, :issue:`1976`)
3637

3738

3839
Documentation
3940
~~~~~~~~~~~~~
40-
* Add examples for run_model_from_poa() and run_model_from_effective_irradiance()
41+
* Add examples for :py:meth:`pvlib.modelchain.ModelChain.run_model_from_poa` and :py:meth:`~pvlib.modelchain.ModelChain.run_model_from_effective_irradiance`
4142
(:issue:`1043`, :pull:`2621`)
4243
* Add the following terms to the :ref:`nomenclature` page
4344
(:issue:`2564`, :pull:`2663`):
4445

4546
- :term:`clearness_index`
4647
- :term:`clearsky_index`
4748
- :term:`aod`
48-
- :term:`aod500`
49+
- :term:`clearness_index`
50+
- :term:`clearsky_index`
51+
- :term:`aod`
52+
- :term:`aod500`
4953

50-
* Provide an overview of IAM modeling functionality in :ref:`iam`. (:pull:`2683`)
54+
* Add an overview of IAM modeling functionality in new documentation page :ref:`iam`. (:pull:`2683`)
5155
* Add AI checkbox to PR template, and auto-generate a comment on PRs
5256
from first-time contributors regarding AI and contributing guidelines.
5357
(:issue:`2617`, :pull:`2624`)
5458
* Update :py:class:`pvlib.pvsystem.PVSystem` docstring to state that
55-
``module_type`` is optional.
59+
* Clarify :py:class:`pvlib.pvsystem.PVSystem` parameter ``module_type`` is optional.
5660
(:issue:`2634`, :pull:`2713`)
5761
* Fix a broken docstring reference to ``grounddiffuse`` in
5862
:py:func:`pvlib.irradiance.poa_components`

pvlib/tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def singleaxis(apparent_zenith, solar_azimuth,
4545
The tilt of the axis of rotation (i.e, the y-axis defined by
4646
``axis_azimuth``) with respect to horizontal (degrees). Positive
4747
``axis_tilt`` is *downward* in the direction of ``axis_azimuth``. For
48-
example, for a tracker with ``axis_azimuth=180``and ``axis_tilt=10``,
48+
example, for a tracker with ``axis_azimuth=180`` and ``axis_tilt=10``,
4949
the north end is higher than the south end of the axis.
5050
5151
axis_azimuth : float, default 0

0 commit comments

Comments
 (0)