EE 461 Post 5: Generation Scheduling
- Creating models for Generation Scheduling
- An additional task is provided to accomplish, which is to have a planning script that can easily plan the maintenance scheduling of the generators or stations.
Total Load = 1400/720
The table above shows the Renewable sites with its Capacity in MW
remainingLoad = totalLoad;
for i = 1:height(genTable) cap = genTable.Capacity(i); alloc = min(cap, remainingLoad); genTable.Allocated(i) = alloc; remainingLoad = remainingLoad - alloc; if remainingLoad <= 0 break; end end
Generation Scheduling
As evident from the table above, the load demand is met and being supplied from two solar farm generation site.
So far the first priority for supplying load demand from Renewable Generations sites first and the remaining load demand to be supplied by Diesel Generators. Although this is not practical enough since solar irradiance and wind speed, there is still a need to turn ON diesel generators for spinning reserves. For future works, there is a need to incorporate diesel generators into generation scheduling.
Comments
Post a Comment