OZ-ENERGY-ANALYSIS.ORG - open science for the new millennium
THE STORIES | DATA | ANALYSIS | MODELS | LITERATURE | DISCUSSIONS
Status: testbed work from November 2010
[fc: 30th May 2011] This was the first application of the wind power curve model, with the Eyre peninsula of particular interest at the time. This was followed immediately by application of the wind power curve model to a larger set of BoM stations to Simulate Wind Farms from Broome to Cooktown. Of note here is comment 3.
Here is our first pass at simulating Wind Farm output from Bureau of Meteorology (BoM) wind speed data. The Eyre Peninsula is of particular interest, as per the SA Green Grid Proposal. What we develop here will be a starting point for the larger Broome to Cooktown Challenge, where we will explore the potential output from wind farms on a national scale.
The Eyre Peninsula is a useful test bed as there currently exist two wind farms (Mt Millar and Cathedral Rocks) in this region, and the known output from these will be useful in judging the results of the simulation.
The wind speed data used here is described on its own page: Eyre Peninsula Wind Speed Data.
The method (the Wind Power Curve model) for transforming BoM wind speed data into putative wind farm output is developed on the Reconcile Wind Farm output with BoM wind data page; and, in particular, is formalised in these Matlab scripts (which can be translated into other languages / forms, taking care to handle missing data).
The output data for the existing Mt Millar and Cathedral Rocks wind farms can be found on the Wind Farm Generation Data page.
With the data and methods as above, it is straightforward to transform the wind speed data into simulated wind farm output, assuming a capacity factor of 35%. The following pseudo code does this job:
load '/OzEA/data/wind/EP_wind/EPwind_R1_60min_2009.csv'
DPpD = 24; % Data Points per day
DYst = 0; % Day of Year start
CF_req = 0.35; % Capacity Factor for simulated wind farms
for i=1:10,
wind = EPwind_R1_60min_2009(:,i);
wind_cor = OzEA_wind_speed_corrections( wind, DPpD, DYst );
sim(:,i) = OzEA_simulate_wind_farm_output( wind_cor, CF_req );
end
The resultant simulated wind farm data ('sim'), output and formatted up, is here given as: OzEA_R1_WFsim_EP_60min_2009.csv (640 KB).
There are numerous sanity checks and exploratory analyses I want to do now, but... need to cut to the chase.
[Friday eve] Ok, been kicking this around, trying to work out what the point is here... and the point has been to kick things around in preparation for doing much the same analysis on the Broome to Cooktown set. So, will now step through a few things. First up, here is a plot simply showing the data we have simulated (albeit boiled down to daily averages):
We see, as now expected, and at this courser level, that the power output from the wind farms goes up and down as the weather passes across. A detailed view of what this looks like (albeit with somewhat different data) has long been available in the data viewer - and there seems little point in providing such a view here. We need to get more abstract, to boil this data down into a view that provides quantitative hooks into a larger synthesis... [as now given in the demand remainder plot of comment 3]
[preliminary] The detail of how this analysis is performed was built elsewhere (see Data and Methods), and the resultant simulation data traces are, on the face of it, unsurprising. Development of this page can proceed in the comments, until such time as more specific remarks here are warranted.
DISCUSSION: (on this simulation of Wind Farms on Eyre Peninsula)
| 2 |
francis |


| 3 |
francis |

fc - November 2010
Post Comment: