-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from xuqingyu/QX_modified_PJM
Uploaded files that are working
- Loading branch information
Showing
17 changed files
with
93,069 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,222 @@ | ||
#----0. Set up library------- | ||
library(dplyr) | ||
library(ggplot2) # plots | ||
library(stringr) | ||
library(RColorBrewer) # color pallettes | ||
library(RSQLite) #Database | ||
library(maps) | ||
library(gridExtra) | ||
library(dplyr) | ||
library(reshape) | ||
library(rgdal) | ||
library(ggrepel) | ||
library(ggmap) | ||
library(tidyverse) | ||
library(viridis) | ||
|
||
#---1. ADMIN - libraries and other important----------- | ||
setwd("/Users/qingyuxu/Documents/PJM_QX") | ||
codepath <- "/Users/qingyuxu/Documents/Graphic Rscripts/"; | ||
path <- "/Users/qingyuxu/Documents/PJM_QX" | ||
outpath <- path | ||
|
||
#---2. Prepare: Read Inupt Setting---- | ||
all_inputs = read.csv(file="sample_inputs_pjm.csv", header=TRUE,na.strings="") | ||
resource_mapping <- select(all_inputs, Resource, Fuel) | ||
capacity_resource_levels <- as.character(unique(all_inputs$Fuel)) | ||
power_resource_levels <- as.character(all_inputs$Power_Fuel) | ||
colors <- select(all_inputs, Fuel, Color) %>% distinct() | ||
power_colors <- filter(colors, Fuel %in% power_resource_levels) | ||
capacity_resource_colors <- as.character(colors$Color) | ||
power_resource_colors<- as.character(power_colors$Color) | ||
zone_mapping <- na.omit(select(all_inputs, zone, region)) | ||
zone_mapping$zone = as.factor(zone_mapping$zone) | ||
All_Set <- na.omit(all_inputs$All_Set[all_inputs$All_Set!= ""]) | ||
Interested_Set <- na.omit(all_inputs$Interested_Set[all_inputs$Interested_Set!= ""]) | ||
Interested_Regions <- as.character(na.omit(all_inputs$Interested_Regions)); | ||
ordered_set <- Interested_Set | ||
years_all <- c(na.omit(all_inputs$start_year),as.character(na.omit(all_inputs$list_years))) | ||
start_year <- na.omit(all_inputs$start_year); | ||
Total <- as.character(na.omit(all_inputs$Total)) | ||
Total_title <- as.character(na.omit(all_inputs$Total_title)) | ||
Total_2 <- as.character(na.omit(all_inputs$Total_2)) | ||
Total_2_title <- as.character(na.omit(all_inputs$Total_2_title)) | ||
|
||
Deep_Dive <- as.character(na.omit(all_inputs$Deep_Dive)) | ||
cases <- na.omit(all_inputs$Interested_Set[all_inputs$Interested_Set!= ""]) | ||
years <- as.character(na.omit(all_inputs$list_years)) | ||
|
||
sep = "/" | ||
# Lists all files | ||
allfiles = list.files(recursive = TRUE) | ||
#Readfilepath | ||
all_generators_data <- allfiles[grep("/Generators_data.csv", allfiles)]; | ||
all_capacity_data <- allfiles[grep("/capacity.csv", allfiles)]; | ||
#This is to find where the "case" is in the string | ||
find_case = which(strsplit(allfiles[[1]], "")[[1]]=="/") | ||
#This is to find where the "year" is in the string | ||
find_year = which(strsplit(allfiles[[1]], "")[[1]]=="_") | ||
|
||
|
||
# create relevant folders (no power bar charts for now) | ||
dir.create("Graphics", showWarnings = FALSE) | ||
dir.create("Graphics/capacity_bar/", showWarnings = FALSE) | ||
|
||
#----------------------------------# | ||
#------3.Combining capacity data---# | ||
#----------------------------------# | ||
capacity <- read.csv(paste0(path,"/",all_capacity_data[[1]])); | ||
capacity <- capacity[-nrow(capacity),]; | ||
t_generators <- read.csv(paste0(path,"/",all_generators_data[[1]])); | ||
capacity <- cbind(capacity,t_generators$Fuel); | ||
colnames(capacity)[dim(capacity)[2]] <- "Fuel"; | ||
capacity$case <- substr(all_capacity_data[[1]], find_year[2] + 1, find_case[2] - 1) | ||
capacity$year <- substr(all_capacity_data[[1]],1, 4) | ||
if (length(all_capacity_data)>1) | ||
{ | ||
for(f in 2:length(all_capacity_data)) | ||
{ | ||
temp_capacity <- read.csv(paste0(path,"/",all_capacity_data[[f]])); | ||
temp_capacity <- temp_capacity[-nrow(temp_capacity),]; | ||
t_generators <- read.csv(paste0(path,"/",all_generators_data[[f]])); | ||
temp_capacity <- cbind(temp_capacity,t_generators$Fuel); | ||
colnames(temp_capacity)[dim(temp_capacity)[2]] <- "Fuel"; | ||
temp_capacity$case = substr(all_capacity_data[[f]], find_year[2] + 1, which(strsplit(all_capacity_data[[f]], "")[[1]]=="/")[2] - 1) | ||
temp_capacity$year = substr(all_capacity_data[[f]],1, 4) | ||
capacity <- bind_rows(capacity, temp_capacity) | ||
} | ||
} | ||
|
||
capacity$Zone <-as.numeric(capacity$Zone); | ||
capacity$Cluster <-as.numeric(capacity$Cluster); | ||
#set up the first year data | ||
temp_capacity <- subset(capacity,year == years[1]) %>% | ||
mutate(EndCap = StartCap, | ||
EndEnergyCap = StartEnergyCap, | ||
EndChargeCap = StartChargeCap, | ||
NewCap = 0, | ||
RetCap = 0, | ||
NewEnergyCap = 0, | ||
RetEnergyCap = 0, | ||
NewChargeCap = 0, | ||
RetChargeCap = 0, | ||
year = start_year); | ||
capacity <- rbind(temp_capacity, capacity); | ||
capacity_for_settlement <- capacity; | ||
capacity_temp1 <- subset(capacity,Fuel == "ZCF") %>% | ||
mutate(Resource = paste(Resource,"_ZCF",sep = "")); | ||
capacity <- rbind(capacity_temp1, subset(capacity,Fuel != "ZCF")); | ||
capacity <- subset(capacity,select = -c(Fuel)); | ||
|
||
|
||
write.csv(capacity, paste0(outpath, sep, "capacity.csv"), row.names = FALSE) | ||
|
||
#-------------------------------# | ||
#-------4.Plotting------------- # | ||
#-------------------------------# | ||
|
||
|
||
#read in capacity csv and inputs, extract relevant settings | ||
Capacity_1 <- read.csv("capacity.csv") | ||
Capacity_1$EndCap <- Capacity_1$EndCap * 0.001 | ||
Capacity_1$Zone <- as.factor(Capacity_1$Zone); | ||
## CAPACITY | ||
Capacity_1 <- left_join(Capacity_1, resource_mapping ) | ||
Capacity_1 <- left_join(Capacity_1, zone_mapping, by = c("Zone" = "zone")) %>% | ||
plyr::rename(c("region" = "Agg_region")) | ||
|
||
|
||
Capacity_res_z <- aggregate(EndCap~Agg_region+Fuel+case+year, Capacity_1, sum, na.rm = na.omit) | ||
# one set of bar charts for each case across all years | ||
for (k in 1:length(Interested_Set)){ | ||
Capacity_reg <- subset(Capacity_res_z, as.character(Capacity_res_z$case)==Interested_Set[k]) %>% | ||
filter(Agg_region %in% Interested_Regions) | ||
color_a <- capacity_resource_colors | ||
Capacity_reg$year <- as.factor(Capacity_reg$year) | ||
|
||
ggplot(Capacity_reg , aes(x=year, y=EndCap, fill=factor(Fuel, levels = capacity_resource_levels)))+ | ||
geom_col() + | ||
theme_bw()+ | ||
facet_wrap(~Agg_region, nrow = 4, scales = "free")+ | ||
theme(text = element_text(size=6), axis.text.x = element_text(size=6),legend.key.size = unit(0.5, "cm"))+ | ||
labs(x=str_wrap(All_Set[k], width=40), y="Capacity (GW)")+ | ||
scale_fill_manual(name = "Resource",values = color_a)+ | ||
scale_linetype_manual(name = "", values = c(2, 2), | ||
guide = guide_legend(override.aes = list(color = c("black")))) + | ||
scale_x_discrete(limits = unique(Capacity_reg$year), labels = years_all) + | ||
ggsave(paste0("Graphics/capacity_bar/", All_Set[k], "_Capacity_interested_region_case.png"), width=6, height=6, dpi=300) | ||
} | ||
|
||
|
||
## shows one region across all cases and years | ||
for(region in Deep_Dive) { | ||
|
||
Capacity_reg <- filter(Capacity_res_z,Agg_region == region)%>% | ||
filter(case %in% Interested_Set) | ||
|
||
color_a <- capacity_resource_colors | ||
|
||
Capacity_reg$case = factor(Capacity_reg$case, levels = ordered_set) | ||
Capacity_reg$year <- as.factor(Capacity_reg$year) | ||
ggplot(Capacity_reg , aes(x=year, y=EndCap, fill=factor(Fuel, levels = capacity_resource_levels)))+ | ||
geom_col() + | ||
theme_bw()+ | ||
facet_wrap(~case)+ | ||
theme(text = element_text(size=6), axis.text.x = element_text(size=6),legend.key.size = unit(0.5, "cm"))+ | ||
labs(y="Capacity (GW)")+ | ||
scale_fill_manual(name = "Resource",values = color_a, drop = FALSE)+ | ||
scale_linetype_manual(name = "", values = c(2, 2), | ||
guide = guide_legend(override.aes = list(color = c("black")))) + | ||
scale_x_discrete(limits = unique(Capacity_reg$year), labels = years_all) + | ||
ggsave(paste0("Graphics/capacity_bar/", region, "_Capacity_all_case.png"), width=5, height=4, dpi=300) | ||
|
||
|
||
|
||
|
||
## aggregate total of relevant regions across all cases and years | ||
Capacity_reg <- filter(Capacity_res_z, Agg_region %in% Total)%>% | ||
filter(case %in% Interested_Set) | ||
Capacity_reg <- aggregate(EndCap~Fuel+case+year, Capacity_reg, sum) | ||
resource_a <- unique(Capacity_reg$Fuel) | ||
color_a <- capacity_resource_colors | ||
|
||
|
||
Capacity_reg$case = factor(Capacity_reg$case, levels = ordered_set) | ||
Capacity_reg$year <- as.factor(Capacity_reg$year) | ||
ggplot(Capacity_reg , aes(x=year, y=EndCap, fill=factor(Fuel, levels = capacity_resource_levels)))+ | ||
geom_col() + | ||
theme_bw()+ | ||
facet_wrap(~case)+ | ||
theme(text = element_text(size=6), axis.text.x = element_text(size=6),legend.key.size = unit(0.5, "cm"))+ | ||
labs(y="Capacity (GW)")+ | ||
scale_fill_manual(name = "Resource",values = color_a, drop = FALSE)+ | ||
# geom_hline(data= Peak_data_reg, aes(yintercept=max_val, linetype = "Peak demand"), color = "black")+ | ||
scale_linetype_manual(name = "", values = c(2, 2), | ||
guide = guide_legend(override.aes = list(color = c("black")))) + | ||
scale_x_discrete(limits = unique(Capacity_reg$year), labels = years_all) + | ||
ggtitle(Total_title)+ | ||
ggsave(paste0("Graphics/capacity_bar/", Total_title, "_aggregate_all_case.png"), width=5, height=6, dpi=300) | ||
|
||
Capacity_reg <- filter(Capacity_res_z, Agg_region %in% Total_2)%>% | ||
filter(case %in% Interested_Set) | ||
Capacity_reg <- aggregate(EndCap~Fuel+case+year, Capacity_reg, sum) | ||
resource_a <- unique(Capacity_reg$Fuel) | ||
color_a <- capacity_resource_colors | ||
Capacity_reg$case = factor(Capacity_reg$case, levels = ordered_set) | ||
Capacity_reg$year <- as.factor(Capacity_reg$year) | ||
ggplot(Capacity_reg , aes(x=year, y=EndCap, fill=factor(Fuel, levels = capacity_resource_levels)))+ | ||
geom_col() + | ||
theme_bw()+ | ||
facet_wrap(~case)+ | ||
theme(text = element_text(size=6), axis.text.x = element_text(size=6),legend.key.size = unit(0.5, "cm"))+ | ||
labs(y="Capacity (GW)")+ | ||
scale_fill_manual(name = "Resource",values = color_a, drop = FALSE)+ | ||
# geom_hline(data= Peak_data_reg, aes(yintercept=max_val, linetype = "Peak demand"), color = "black")+ | ||
scale_linetype_manual(name = "", values = c(2, 2), | ||
guide = guide_legend(override.aes = list(color = c("black")))) + | ||
scale_x_discrete(limits = unique(Capacity_reg$year), labels = years_all) + | ||
ggtitle(Total_2_title)+ | ||
ggsave(paste0("Graphics/capacity_bar/", Total_2_title, "_aggregate_all_case.png"), width=5, height=6, dpi=300) | ||
|
||
} | ||
|
Oops, something went wrong.