| read_power_curve | R Documentation |
Parse a CSV (or data.frame) with wind speed and power
in kW. Understands NREL/IEA headers such as Wind Speed [m/s]
and Power [kW]. Optional Ct is returned as an attribute.
Does not ship manufacturer curves; pass your own file or an open
IEA/NREL reference CSV. See experimental/climate_helpers.R.
read_power_curve(file)
file |
Path to a CSV, or a data.frame. |
A data.frame with ws and power. Attribute ct is a
matching data.frame when a thrust column is present.
Other Helper Functions:
get_grids(),
grid_area(),
hexa_area(),
isSpatial(),
permutations(),
splitAt(),
wind_from_series(),
wind_from_uv(),
windata_format()
curve <- data.frame(
`Wind Speed [m/s]` = c(3, 8, 12, 25),
`Power [kW]` = c(0, 1200, 2000, 2000),
check.names = FALSE
)
read_power_curve(curve)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.