Skip to content

Commit 0cc4b5f

Browse files
committed
Improves documentation on temperature.ross
1 parent 97535a0 commit 0cc4b5f

1 file changed

Lines changed: 29 additions & 19 deletions

File tree

pvlib/temperature.py

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -659,25 +659,32 @@ def ross(poa_global, temp_air, noct=None, k=None):
659659
This function expects irradiance in :math:`W/m^2`.
660660
661661
Representative values for k are provided in [2]_, covering different types
662-
of mounting and module structure.
663-
664-
+---------------------+-----------+
665-
| Mounting | :math:`k` |
666-
+=====================+===========+
667-
| Well cooled | 0.02 |
668-
+---------------------+-----------+
669-
| Free standing | 0.0208 |
670-
+---------------------+-----------+
671-
| Flat on roof | 0.026 |
672-
+---------------------+-----------+
673-
| Not so well cooled | 0.0342 |
674-
+---------------------+-----------+
675-
| Transparent pv | 0.0455 |
676-
+---------------------+-----------+
677-
| Facade integrated | 0.0538 |
678-
+---------------------+-----------+
679-
| On sloped roof | 0.0563 |
680-
+---------------------+-----------+
662+
of mounting and degrees of back ventialtion. The naming designations,
663+
however, are adapted from [3]_ to enhance clarity and usability.
664+
665+
+--------------------------------------+-----------+
666+
| Mounting | :math:`k` |
667+
+======================================+===========+
668+
| Sloped roof, well ventilated | 0.02 |
669+
+--------------------------------------+-----------+
670+
| Free-standing system | 0.0208 |
671+
+--------------------------------------+-----------+
672+
| Flat roof, well ventilated | 0.026 |
673+
+--------------------------------------+-----------+
674+
| Sloped roof, poorly ventilated | 0.0342 |
675+
+--------------------------------------+-----------+
676+
| Facade integrated, semi-ventilated | 0.0455 |
677+
+--------------------------------------+-----------+
678+
| Facade integrated, poorly ventilted | 0.0538 |
679+
+--------------------------------------+-----------+
680+
| Sloped roof, non-ventilated | 0.0563 |
681+
+--------------------------------------+-----------+
682+
683+
It is also worth noting that the semi-ventilated facade case refers to
684+
partly transparent compound glass insulation modules, while the non-
685+
ventilated case corresponds to opaque, insulated PV-cladding elements.
686+
However, the emphasis in [3]_ appears to be on ventilation conditions
687+
rather than module construction.
681688
682689
References
683690
----------
@@ -688,6 +695,9 @@ def ross(poa_global, temp_air, noct=None, k=None):
688695
photovoltaic modules: A survey of pertinent correlations,” Renewable
689696
Energy, vol. 34, no. 1, pp. 23–29, Jan. 2009,
690697
:doi:`10.1016/j.renene.2008.04.009`
698+
.. [3] T. Nordmann and D. Clavadetscher, “Understanding temperature
699+
effects on PV system performance," Proceedings of 3rd World Conference
700+
on Photovoltaic Energy Conversion, May 2003.
691701
'''
692702
if (noct is None) & (k is None):
693703
raise ValueError("Either noct or k need is required.")

0 commit comments

Comments
 (0)