Skip to content

Commit c5c56e2

Browse files
committed
review comments
1 parent 46ae6a7 commit c5c56e2

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Documentation
4747
page, using the sphinx glossary directive. (:issue:`1421`, :pull:`2234`)
4848
* Explained how to write docstrings for new functions in :ref:`example-docstring`
4949
(:discussion:`2081`, :pull:`2254`)
50-
* Clarify mounting cases for parameters for :py:func:`~pvlib.temperature.sapm_module`
50+
* Clarify mounting cases for parameters for :py:func:`~pvlib.temperature.sapm_module`,
5151
:py:func:`~pvlib.temperature.sapm_cell` and :py:func:`~pvlib.temperature.pvsyst_cell`.
52-
(:issue:`1323`, :pull:`2293`)
52+
(:issue:`1323`, :pull:`2293`)
5353
* Added the following variables to the :ref:`nomenclature` page:
5454

5555
- `spectra` and `spectra_components` (:issue:`2150`, :pull:`2264`)

pvlib/pvsystem.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,9 @@ class PVSystem:
169169
170170
racking_model : string, optional
171171
Valid strings are ``'open_rack'``, ``'close_mount'``,
172-
``'freestanding'``, and ``'insulated_back'`. Used to identify a
173-
parameter set for the SAPM cell temperature model.
172+
``'insulated_back'`, ``'freestanding'`` and ``'insulated'``.
173+
Used to identify a parameter set for the SAPM or PVsyst cell
174+
temperature model.
174175
See :py:func:`~pvlib.temperature.sapm_module` and
175176
:py:func:`~pvlib.temperature.pvsyst_cell` for definitions.
176177
@@ -1396,8 +1397,9 @@ class FixedMount(AbstractMount):
13961397
13971398
racking_model : str, optional
13981399
Valid strings are ``'open_rack'``, ``'close_mount'``,
1399-
``'freestanding'``, and ``'insulated_back'`. Used to identify a
1400-
parameter set for the SAPM cell temperature model.
1400+
``'insulated_back'`, ``'freestanding'`` and ``'insulated'``.
1401+
Used to identify a parameter set for the SAPM or PVsyst cell
1402+
temperature model.
14011403
See :py:func:`~pvlib.temperature.sapm_module` and
14021404
:py:func:`~pvlib.temperature.pvsyst_cell` for definitions.
14031405
@@ -1476,9 +1478,10 @@ class SingleAxisTrackerMount(AbstractMount):
14761478
14771479
racking_model : str, optional
14781480
Valid strings are ``'open_rack'``, ``'close_mount'``,
1479-
``'freestanding'``, and ``'insulated_back'`. Used to identify a
1480-
parameter set for the SAPM cell temperature model.
1481-
``'open_rack'`` should be used for systems with single-axis trackers.
1481+
``'insulated_back'`, ``'freestanding'`` and ``'insulated'``.
1482+
Used to identify a parameter set for the SAPM or PVsyst cell
1483+
temperature model. ``'open_rack'`` should be used for systems with
1484+
single-axis trackers.
14821485
See :py:func:`~pvlib.temperature.sapm_module` and
14831486
:py:func:`~pvlib.temperature.pvsyst_cell` for definitions.
14841487

pvlib/temperature.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def sapm_cell(poa_global, temp_air, wind_speed, a, b, deltaT,
118118
+===============+================+=======+=========+=====================+
119119
| glass/glass | open rack | -3.47 | -0.0594 | 3 |
120120
+---------------+----------------+-------+---------+---------------------+
121-
| glass/glass | close roof | -2.98 | -0.0471 | 1 |
121+
| glass/glass | close mount | -2.98 | -0.0471 | 1 |
122122
+---------------+----------------+-------+---------+---------------------+
123123
| glass/polymer | open rack | -3.56 | -0.075 | 3 |
124124
+---------------+----------------+-------+---------+---------------------+
@@ -131,7 +131,7 @@ def sapm_cell(poa_global, temp_air, wind_speed, a, b, deltaT,
131131
* "open rack" refers to mounting that allows relatively free air flow.
132132
This case is typical of ground-mounted systems on fixed racking or
133133
single axis trackers.
134-
* "close roof" refers to limited or restricted air flow. This case is
134+
* "close mount" refers to limited or restricted air flow. This case is
135135
typical of roof-mounted systems with some gap behind the module.
136136
* "insulated back" refers to systems with no air flow contacting the rear
137137
surface of the module. This case is typical of building-integrated PV
@@ -211,7 +211,7 @@ def sapm_module(poa_global, temp_air, wind_speed, a, b):
211211
+===============+================+=======+=========+=====================+
212212
| glass/glass | open rack | -3.47 | -0.0594 | 3 |
213213
+---------------+----------------+-------+---------+---------------------+
214-
| glass/glass | close roof | -2.98 | -0.0471 | 1 |
214+
| glass/glass | close mount | -2.98 | -0.0471 | 1 |
215215
+---------------+----------------+-------+---------+---------------------+
216216
| glass/polymer | open rack | -3.56 | -0.075 | 3 |
217217
+---------------+----------------+-------+---------+---------------------+
@@ -224,7 +224,7 @@ def sapm_module(poa_global, temp_air, wind_speed, a, b):
224224
* "open rack" refers to mounting that allows relatively free air flow.
225225
This case is typical of ground-mounted systems on fixed racking or
226226
single axis trackers.
227-
* "close roof" refers to limited or restricted air flow. This case is
227+
* "close mount" refers to limited or restricted air flow. This case is
228228
typical of roof-mounted systems with some gap behind the module.
229229
* "insulated back" refers to systems with no air flow contacting the rear
230230
surface of the module. This case is typical of building-integrated PV
@@ -293,7 +293,7 @@ def sapm_cell_from_module(module_temperature, poa_global, deltaT,
293293
+===============+================+=======+=========+=====================+
294294
| glass/glass | open rack | -3.47 | -0.0594 | 3 |
295295
+---------------+----------------+-------+---------+---------------------+
296-
| glass/glass | close roof | -2.98 | -0.0471 | 1 |
296+
| glass/glass | close mount | -2.98 | -0.0471 | 1 |
297297
+---------------+----------------+-------+---------+---------------------+
298298
| glass/polymer | open rack | -3.56 | -0.075 | 3 |
299299
+---------------+----------------+-------+---------+---------------------+
@@ -306,7 +306,7 @@ def sapm_cell_from_module(module_temperature, poa_global, deltaT,
306306
* "open rack" refers to mounting that allows relatively free air flow.
307307
This case is typical of ground-mounted systems on fixed racking or
308308
single axis trackers.
309-
* "close roof" refers to limited or restricted air flow. This case is
309+
* "close mount" refers to limited or restricted air flow. This case is
310310
typical of roof-mounted systems with some gap behind the module.
311311
* "insulated back" refers to systems with no air flow contacting the rear
312312
surface of the module. This case is typical of building-integrated PV
@@ -402,7 +402,7 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,
402402
* "freestanding" refers to mounting that allows relatively free air
403403
circulation around the modules. This case is typical of ground-mounted
404404
systems on tilted, fixed racking or single axis trackers.
405-
* "insluated" refers to mounting with air flow across only the front
405+
* "insulated" refers to mounting with air flow across only the front
406406
surface. This case is typical of roof-mounted systems with no gap
407407
behind the module.
408408

0 commit comments

Comments
 (0)