Skip to content

Commit e2c347c

Browse files
committed
put celsius in denominator
* update what's new for v0.8.0 * use textrm for units Signed-off-by: Mark Mikofski <[email protected]>
1 parent 784023f commit e2c347c

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

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: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +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`
297-
:math:`\left[\frac{W/{\left(m^2 C\right)}}{m/s}\right]`.
297+
in :eq:`pvsyst`.
298+
:math:`\left[ \frac{\text{W}/\text{m}^2}{\text{C}\ \left( \text{m/s} \right)} \right]`
298299
299300
eta_m : numeric, default 0.1
300301
Module external efficiency as a fraction, i.e., DC power / poa_global.
@@ -380,12 +381,13 @@ def faiman(poa_global, temp_air, wind_speed=1.0, u0=25.0, u1=6.84):
380381
381382
u0 : numeric, default 25.0
382383
Combined heat loss factor coefficient. The default value is one
383-
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]`
384386
385387
u1 : numeric, default 6.84
386388
Combined heat loss factor influenced by wind. The default value is one
387389
determined by Faiman for 7 silicon modules.
388-
:math:`\left[\frac{W/{\left(m^2 C\right)}}{m/s}\right]`.
390+
:math:`\left[ \frac{\text{W}/\text{m}^2}{\text{C}\ \left( \text{m/s} \right)} \right]`
389391
390392
Returns
391393
-------

0 commit comments

Comments
 (0)