-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix to WVM methodology to track changes in MATLAB version. #1213
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
Changes from 4 commits
b9e57f0
73e7d08
a6efc70
979cbdb
54928eb
56a8928
0053e59
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -159,7 +159,12 @@ def latlon_to_xy(coordinates): | |||||||||
|
|
||||||||||
| def _compute_wavelet(clearsky_index, dt=None): | ||||||||||
| """ | ||||||||||
| Compute the wavelet transform on the input clear_sky time series. | ||||||||||
| Compute the wavelet transform on the input clear_sky time series. Uses a | ||||||||||
| top hat wavelet [-1,1,1,-1] shape, based on the difference of successive | ||||||||||
| centered moving averages. Smallest scale (filter size of 2) is a degenerate | ||||||||||
| case that resembles a Haar wavelet. Returns one level of approximation | ||||||||||
| coefficient (CAn) and n levels of detail coefficients (CD1, CD2, ..., | ||||||||||
| CDn-1, CDn). | ||||||||||
|
|
||||||||||
| Parameters | ||||||||||
| ---------- | ||||||||||
|
|
@@ -174,7 +179,8 @@ def _compute_wavelet(clearsky_index, dt=None): | |||||||||
| Returns | ||||||||||
| ------- | ||||||||||
| wavelet: numeric | ||||||||||
| The individual wavelets for the time series | ||||||||||
| The individual wavelets for the time series. Format follows increasing | ||||||||||
| scale (decreasing frequency): [CD1, CD2, ..., CDn, CAn] | ||||||||||
|
|
||||||||||
| tmscales: numeric | ||||||||||
| The timescales associated with the wavelets in seconds [s] | ||||||||||
|
|
@@ -185,7 +191,7 @@ def _compute_wavelet(clearsky_index, dt=None): | |||||||||
| Model (WVM) for Solar PV Power Plants. IEEE Transactions on Sustainable | ||||||||||
| Energy, vol. 4, no. 2, pp. 501-509, 2013. | ||||||||||
|
|
||||||||||
| [3] Wavelet Variability Model - Matlab Code: | ||||||||||
| [2] Wavelet Variability Model - Matlab Code: | ||||||||||
| https://pvpmc.sandia.gov/applications/wavelet-variability-model/ | ||||||||||
|
||||||||||
| [2] Wavelet Variability Model - Matlab Code: | |
| https://pvpmc.sandia.gov/applications/wavelet-variability-model/ | |
| .. [2] Wavelet Variability Model - Matlab Code: | |
| https://pvpmc.sandia.gov/applications/wavelet-variability-model/ |
Could you edit the format for [1] as well? Two leading dots before [1], and align the following lines with the "]" character.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since that same reference is in the other functions, I updated all of those as well.
Uh oh!
There was an error while loading. Please reload this page.