Skip to content

Commit e04d959

Browse files
Merge pull request pvlib#960 from mikofski/patch-1
clarify units for U1 and Uv temperature model coeff
2 parents 4965c40 + a49d1d0 commit e04d959

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

docs/sphinx/source/whatsnew.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ What's New
66

77
These are new features and improvements of note in each release.
88

9-
.. include:: whatsnew/v0.7.3.rst
9+
.. include:: whatsnew/v0.8.0.rst
1010
.. include:: whatsnew/v0.7.2.rst
1111
.. include:: whatsnew/v0.7.1.rst
1212
.. include:: whatsnew/v0.7.0.rst

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _whatsnew_0730:
1+
.. _whatsnew_0800:
22

33
v0.8.0 (Month day, year)
44
-------------------------
@@ -17,11 +17,18 @@ Testing
1717

1818
Documentation
1919
~~~~~~~~~~~~~
20-
* Improved formatting and content of docstrings in `pvlib.atmosphere`
20+
* Improved formatting and content of docstrings in :py:mod:`pvlib.atmosphere`.
21+
(:pull:`969`)
22+
* Fix LaTeX rendering in :py:func:`pvlib.singlediode.bishop88`. (:pull:`967`)
23+
* Clarify units for heat loss factors in
24+
:py:func:`pvlib.temperature.pvsyst_cell` and
25+
:py:func:`pvlib.temperature.faiman`. (:pull:`960`)
2126

2227
Requirements
2328
~~~~~~~~~~~~
2429

2530
Contributors
2631
~~~~~~~~~~~~
2732
* Cliff Hansen (:ghuser:`cwhanse`)
33+
* Kevin Anderson (:ghuser:`kanderso-nrel`)
34+
* Mark Mikofski (:ghuser:`mikofski`)

pvlib/temperature.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,13 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,
289289
Combined heat loss factor coefficient. The default value is
290290
representative of freestanding modules with the rear surfaces exposed
291291
to open air (e.g., rack mounted). Parameter :math:`U_{c}` in
292-
:eq:`pvsyst` [W/(m^2 C)].
292+
:eq:`pvsyst`.
293+
:math:`\left[\frac{\text{W}/{\text{m}^2}}{\text{C}}\right]`
293294
294295
u_v : float, default 0.0
295296
Combined heat loss factor influenced by wind. Parameter :math:`U_{v}`
296-
in :eq:`pvsyst` [(W/m^2 C)(m/s)].
297+
in :eq:`pvsyst`.
298+
:math:`\left[ \frac{\text{W}/\text{m}^2}{\text{C}\ \left( \text{m/s} \right)} \right]`
297299
298300
eta_m : numeric, default 0.1
299301
Module external efficiency as a fraction, i.e., DC power / poa_global.
@@ -356,7 +358,7 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,
356358

357359

358360
def faiman(poa_global, temp_air, wind_speed=1.0, u0=25.0, u1=6.84):
359-
'''
361+
r'''
360362
Calculate cell or module temperature using the Faiman model. The Faiman
361363
model uses an empirical heat loss factor model [1]_ and is adopted in the
362364
IEC 61853 standards [2]_ and [3]_.
@@ -379,11 +381,13 @@ def faiman(poa_global, temp_air, wind_speed=1.0, u0=25.0, u1=6.84):
379381
380382
u0 : numeric, default 25.0
381383
Combined heat loss factor coefficient. The default value is one
382-
determined by Faiman for 7 silicon modules. [W/(m^2 C)].
384+
determined by Faiman for 7 silicon modules.
385+
:math:`\left[\frac{\text{W}/{\text{m}^2}}{\text{C}}\right]`
383386
384387
u1 : numeric, default 6.84
385388
Combined heat loss factor influenced by wind. The default value is one
386-
determined by Faiman for 7 silicon modules. [(W/m^2 C)(m/s)].
389+
determined by Faiman for 7 silicon modules.
390+
:math:`\left[ \frac{\text{W}/\text{m}^2}{\text{C}\ \left( \text{m/s} \right)} \right]`
387391
388392
Returns
389393
-------

0 commit comments

Comments
 (0)