We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62045a5 commit 23dd57eCopy full SHA for 23dd57e
1 file changed
pvlib/bifacial/utils.py
@@ -87,7 +87,8 @@ def _unshaded_ground_fraction(surface_tilt, surface_azimuth, solar_zenith,
87
surface_azimuth)
88
f_gnd_beam = 1.0 - np.minimum(
89
1.0, gcr * np.abs(cosd(surface_tilt) + sind(surface_tilt) * tan_phi))
90
- f_gnd_beam=np.where(solar_zenith > max_zenith, 0., f_gnd_beam) # [1], Eq. 4
+ f_gnd_beam = np.where(solar_zenith > max_zenith, 0., f_gnd_beam)
91
+ # [1], Eq. 4
92
return f_gnd_beam # 1 - min(1, abs()) < 1 always
93
94
0 commit comments