|
| 1 | +# Calculates the market value of renewables (Wind and PV) for the German market |
| 2 | +# using Open Power System Data |
| 3 | + |
| 4 | +library(ggplot2) |
| 5 | +library(tidyverse) |
| 6 | +library(wesanderson) |
| 7 | + |
| 8 | +# Download file from open power system data (opsd) |
| 9 | + |
| 10 | +opsd_filename<-"data/time_series_60min_singleindex.csv" |
| 11 | + |
| 12 | +if(!file.exists(opsd_filename)){ |
| 13 | + download.file("https://data.open-power-system-data.org/time_series/2018-06-30/time_series_60min_singleindex.csv", |
| 14 | + destfile=opsd_filename) |
| 15 | +} |
| 16 | + |
| 17 | +opsd<-read.csv(opsd_filename,sep=",") %>% |
| 18 | + as_tibble() |
| 19 | + |
| 20 | +SECONDS_PER_HOUR <- 3600 |
| 21 | +MWH_TO_GWH <- 1/1000 |
| 22 | +TO_PERCENT <- 100 |
| 23 | + |
| 24 | +opsd$utc_timestamp<-strptime(as.character(opsd$utc_timestamp),format="%Y-%m-%dT%H:%M:%SZ") |
| 25 | +opsd$cet_cest_timestamp<-opsd$utc_timestamp + SECONDS_PER_HOUR |
| 26 | + |
| 27 | +market_value<-opsd %>% |
| 28 | + select(-utc_timestamp) %>% |
| 29 | + mutate(year=year(cet_cest_timestamp)) %>% |
| 30 | + filter(year>2009&year<2018) %>% |
| 31 | + select(year,DE_price_day_ahead,DE_wind_generation_actual,DE_solar_generation_actual,DE_load_entsoe_power_statistics) %>% |
| 32 | + gather(Generation_Type,Generation,-year,-DE_price_day_ahead,-DE_load_entsoe_power_statistics) %>% |
| 33 | + mutate(Price=as.numeric(DE_price_day_ahead), |
| 34 | + Generation=as.numeric(Generation)*MWH_TO_GWH, |
| 35 | + Load=as.numeric(DE_load_entsoe_power_statistics)*MWH_TO_GWH) %>% |
| 36 | + mutate(Market_Value=Generation*Price) %>% |
| 37 | + group_by(year,Generation_Type) %>% |
| 38 | + summarize(Market_Value=mean(Market_Value,na.rm=TRUE)/(mean(Generation,na.rm=TRUE)*mean(Price,na.rm=TRUE)), |
| 39 | + Load=sum(Load,na.rm=TRUE), |
| 40 | + Generation_Share=TO_PERCENT*sum(Generation,na.rm=TRUE)/Load) %>% |
| 41 | + na.omit() |
| 42 | + |
| 43 | +market_value %>% ggplot(aes(x=Generation_Share,y=Market_Value)) + |
| 44 | + xlab("Market Share (%)") + ylab("Normalized Market Value") + |
| 45 | + scale_color_brewer("",type="qual",palette=2) + |
| 46 | + geom_line(aes(col=Generation_Type),size=1,linetype=1) + |
| 47 | + geom_point(aes(col=Generation_Type),size=2) |
| 48 | + |
0 commit comments