Skip to content

Commit 275e671

Browse files
Clarify f_x (#1727)
* resolved clarify f_x * done pep8 * tried autopep8 * updated whatsnew.rst * corrected whatsnew --------- Co-authored-by: Lakshya Garg <[email protected]>
1 parent 06594f9 commit 275e671

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Requirements
3838

3939
Contributors
4040
~~~~~~~~~~~~
41+
* Lakshya Garg (:ghuser:`Lakshyadevelops`)
4142
* Adam R. Jensen (:ghuser:`adamrjensen`)
4243
* Siddharth Kaul (:ghuser:`k10blogger`)
4344
* Kshitiz Gupta (:ghuser:`kshitiz305`)

pvlib/bifacial/infinite_sheds.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from pvlib.shading import masking_angle
1010
from pvlib.irradiance import beam_component, aoi, haydavies
1111

12+
1213
def _vf_ground_sky_integ(surface_tilt, surface_azimuth, gcr, height,
1314
pitch, max_rows=10, npoints=100, vectorize=False):
1415
"""
@@ -102,7 +103,8 @@ def _vf_row_sky_integ(f_x, surface_tilt, gcr, npoints=100):
102103
Parameters
103104
----------
104105
f_x : numeric
105-
Fraction of row slant height from the bottom that is shaded. [unitless]
106+
Fraction of row slant height from the bottom that is shaded from
107+
direct irradiance. [unitless]
106108
surface_tilt : numeric
107109
Surface tilt angle in degrees from horizontal, e.g., surface facing up
108110
= 0, surface facing horizon = 90. [degree]
@@ -162,7 +164,8 @@ def _poa_sky_diffuse_pv(f_x, dhi, vf_shade_sky_integ, vf_noshade_sky_integ):
162164
Parameters
163165
----------
164166
f_x : numeric
165-
Fraction of row slant height from the bottom that is shaded. [unitless]
167+
Fraction of row slant height from the bottom that is shaded from
168+
direct irradiance. [unitless]
166169
dhi : numeric
167170
Diffuse horizontal irradiance (DHI). [W/m^2]
168171
vf_shade_sky_integ : numeric
@@ -257,7 +260,8 @@ def _vf_row_ground_integ(f_x, surface_tilt, gcr, npoints=100):
257260
Parameters
258261
----------
259262
f_x : numeric
260-
Fraction of row slant height from the bottom that is shaded. [unitless]
263+
Fraction of row slant height from the bottom that is shaded from
264+
direct irradiance. [unitless]
261265
surface_tilt : numeric
262266
Surface tilt angle in degrees from horizontal, e.g., surface facing up
263267
= 0, surface facing horizon = 90. [degree]
@@ -320,7 +324,8 @@ def _poa_ground_pv(f_x, poa_ground, f_gnd_pv_shade, f_gnd_pv_noshade):
320324
Parameters
321325
----------
322326
f_x : numeric
323-
Fraction of row slant height from the bottom that is shaded. [unitless]
327+
Fraction of row slant height from the bottom that is shaded from
328+
direct irradiance. [unitless]
324329
poa_ground : numeric
325330
Ground-reflected irradiance that would reach the row surface if the
326331
full ground was visible. poa_gnd_sky accounts for limited view of the

0 commit comments

Comments
 (0)