-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expression for calculating wind speed at different heights #2118
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
Here is a public copy of SAND 84-2530: https://web.archive.org/web/20230418202422/https://www2.jpl.nasa.gov/adv_tech/photovol/2016CTR/SNL%20-%20Est%20Wind%20Speed%20vs%20Height_1985.pdf |
A word of caution here: some temperature model coefficients (e.g. those for the SAPM) implicitly account for the difference between anemometer and PV module height above ground. They do so by regressing measured module temperature to wind speed at 10m. The proposed function is worth adding but I would be cautious about suggesting it needs to be in a PV modeling pipeline. |
Great insight @cwhanse. Let's add this info in a warning admonition for the proposed wind speed function. Probably worth checking out if there is similar functionality in metpy. |
Good point, @cwhanse! From a quick search, I can see that only the SAPM models and the generic_linear require the wind speed at 10 m as an input. The rest of the temperature models either require wind speed at module height or don't specify (e.g., Fuentes), but I would still imagine it requires at module height... |
I agree with @cwhanse we we need to tread cautiously because in my experience there is already a lot of misunderstanding about correlation coefficients and their relation to wind speed height measurements.
|
This is my view on the subject:
|
Thanks Anton! Can we get those references? |
Here is a link to my temperature model equivalence paper that contains the above excerpt: |
Thanks Anton. So I think there is a case for pvlib to include an expression to account for wind speed height measurement, but IMO. I still think the documentation takes precedence so that folks don’t misuse it. In particular I’d like to see a table of weather resources that shows the wind speed height. Eg ground campaigns most often measure at about 3-m while satellite is usually at 10-m. Also a corresponding table of temperature models. Finally some gallery examples that show when and how an adjustment should be made. My personal preference is to adjust the wind coefficient rather than the wind speed measurements which is associative (ie: |
I think this is another area where the PV modellers are just muddling along. Someone needs to access a large amount of data and do some thorough analysis in order to develop some well-founded correlations that are useful for PV systems! |
Do we need consensus here before the related PR is merged? |
What concerns are outstanding? I'm going back through the comments and it would help to summarize. |
Let's go back to the beginning:
Two assertions and a question. The answer to the question is: Not the power law (or any other model developed for higher heights). Especially not if there we're talking about the height of an actual row or field of panels at that location rather than the panel height in an empty field. The second assertion invites the question: Does it really happen often, that wind speed at panel height is needed? For me, this is not the case, but perhaps for others it is. |
Maybe (probably?) the simple power law is poorly suited to translating wind speeds in PV modeling contexts, but I don't think there is any doubt that it nevertheless sees wide use in that application. I just noticed it in IEC 61724-2:2016 Appendix A, for example. My two cents: widespread usage is sufficient motivation for inclusion in pvlib, despite theoretical concerns with the model. |
I have some doubts about the widespread use just like I have doubts about the frequency of the need.
This is an informative appendix rather than normative, and it is particularly carefully worded to avoid any recommendation.
This is a good example to motivate debate about more general policies for inclusion in pvlib. I would argue that widespread usage is never enough by itself, and it should not trump scientific concerns. |
I see plenty of use of it here: https://scholar.google.com/scholar?hl=en&as_sdt=0%2C32&q=%22photovoltaic%22+%22power+law%22+temperature+height+10+meter+-hub&btnG= Frequency of need: anemometers installed at solar farms are at roughly module height, not the 10 m assumed by thermal models. The NSRDB reports wind speed at 2 m, if I remember correctly. I'll leave discussion of the last point for another day. For now, I think there are enough thumbs up here to proceed with #2124. |
I don't find that the foregoing discussion justifies this conclusion. But, I have thought of one potential way to turn the inclusion of this model in pvlib into a positive thing. If this model can be coded and documented in such a way that it draws attention to and increases awareness of its limitations, shortcomings and uncertainties, and makes people think before they leap (or simulate), then it could indirectly make this world a better place. We could furthermore consider whether including the log law at the same time could contribute even more to that goal, by forcing users to think even more about the modeling challenge. The log model has an additional parameter for surface effects, although that doesn't mean it's been validated for near-surface wind speeds either (like in a field of PV modules). And just maybe some big data hoarder will stumble on these functions here and think: hey, I can (in)validate this! |
Great ideas @adriesse. Happy to work with you on follow up PRs to add the log law and improve the documentation. I don't like the fact that billions of dollars of PV have been financed using resource data (or coefficients) touched by the power law. I think the reference implementation documented with shortcomings will be useful as we try to prevent future mistakes. |
@wholmgren You're on your own on the follow-up PR. My concerns weren't taken seriously on this one, so I don't expect any better next time. |
Most times, the wind speed provided in weather files is measured at a height of 10 m. However, in many cases it is required to estimate the wind speed at panel height. Which equation should be used in order to do this?
I found this issue (#1814), which mentions an equation from a Sandia report (I couldn't find the report, though... some help from Sandia people? @cwhanse @kandersolar). This is what is mentioned:
Estimate wind speed at module height - use technique developed by menicucci and hall (sand84-2530) */
windmd=ws2*pow(height/9.144,0.2) + 0.0001
And then there is the expression used in wind engineering, described here (for a more official reference, it is also mentioned in the book by Siegfried Heier (2014), Grid Integration of Wind Energy Conversion Systems (publisher: Wiley))
I am willing to take up the task of making the PR, etc., but first, I would like to know your thoughts on which expression should be added (maybe both?) or if there is some other equation you think is more relevant.
The text was updated successfully, but these errors were encountered: