-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add GTI DIRINT model #396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Trying to implement this myself for a quick and dirty prototype. Any hint as to whether the iteration can be performed over the entire time series of POA or whether each time stamp has to be iterated? I am torn on how to evaluate the min D if evaluating over the entire timeseries at once. |
Real quick... here's my implementation: Off the top of my head I don't remember. I'll try to come back to this in the next few days. |
The iteration removes the error introduced by approximating GHI/cos(zenith) by GTI/cos(AOI). The difference lies in the diffuse sky and ground irradiance received by a horizontal vs. tilted module. It appears that Bill applies iteration separately for each hourly value (Fig 2 in his paper), which I think is appropriate, because AOI changes with time. I believe also that the convergence method in his paper could be improved, but I haven't got an alternate method to propose. |
I'm sure you could do the iteration in parallel. You would then have the same number of iterations for each time step, and your termination condition would have to be based on all time steps. I have no experience with this algorithm, but suspect that if you just iterate a small fixed number of times you would be adequate, or you could keep going until the biggest error for the year falls below some threshold. Probably still way faster than looping through hour by hour. |
We should consider adding an implementation of the GTI DIRINT model described in Marion 2015:
https://www.sciencedirect.com/science/article/pii/S0038092X15005757
In short, the GTI DIRINT model converts plane of array irradiance to DNI, DHI, and GHI.
I have a partial implementation that I've been sitting on for a few months. I'll try to get it into a PR soon.
The text was updated successfully, but these errors were encountered: