Hay and Davies Modification for infinite_sheds #1551
-
Hello, I am interested in modifying the infinite sheds bifacial model to incorporate the Hay and Davies sky diffuse model. I believe all I need to modify is the _poa_sky_diffuse_pv function for Hay and Davies arguments and expressions, e.g., as shown below. (There's also a trivial modification to the get_irradiance_poa function to account for the new arguments in _poa_sky_diffuse_pv.) The results I've obtained with this modification make sense, but I've only considered simple test cases. Do other functions in infinite_sheds require modifications to account for Hay and Davies as well? If the Hay and Davies modifications to infinite_sheds would be of interest to the community, I'd be happy to try to incorporate them, considering compatibility with previous versions and other conventions. Regards, John Moseley |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi John, I think this would be a super improvement. Would it be possible to have Hay-Davies be an option? IE: add a |
Beta Was this translation helpful? Give feedback.
-
My concern is that the calculations in The Hay-Davies model differs from the simple, isotropic sky model, only by distinguishing circumsolar irradiance from the rest of sky diffuse irradiance. The output of the pvlib One could create a work-around by creating a variant of Hay-Davies that returns the circumsolar and rest-of-sky irradiance separately, adding the circumsolar to direct irradiance, and using rest-of-sky as DHI. |
Beta Was this translation helpful? Give feedback.
My concern is that the calculations in
infinite_sheds
that use view factors, e.g., reflections from the ground to the rear surface, implicitly assume that the incoming irradiance is isotropic. There's no weighting or other accommodation in the view factor to account for non-isotropic sources.The Hay-Davies model differs from the simple, isotropic sky model, only by distinguishing circumsolar irradiance from the rest of sky diffuse irradiance. The output of the pvlib
hay-davies
function is the sum of both quantities. It may be reasonable to combine Hay-Davies sky diffuse with the isotropic view factors, but it's important to acknowledge the inconsistency.One could create a work-around by…