View source: R/calculate_energy.R
| plot_power_curve | R Documentation |
Linear interpolation of a two-column table (ws, power
in kW). Set it with ga_options(power_curve = curve) or
options(windfarmGA.power_curve = curve). While a curve is set,
park energy is the sum of those kW values instead of Cp * v^3.
Cut-in / rated / cut-out still apply only when no table is set.
If hub wind stays on the rated plateau after wakes, every layout
looks the same - use wind in the rising part of the curve.
Supply your own table (manufacturer data); the package does not
ship copyrighted curves.
plot_power_curve(curve = NULL, plot = TRUE)
curve |
A data.frame with wind speed and power. Default is the
current |
plot |
If |
The interpolated table, invisibly.
curve <- data.frame(
ws = c(0, 3, 4, 8, 12, 25, 26),
power = c(0, 0, 80, 1200, 2000, 2000, 0)
)
plot_power_curve(curve)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.