diff --git a/NCreference.sql b/NCreference.sql index 14e666f..1f8c14b 100644 --- a/NCreference.sql +++ b/NCreference.sql @@ -11436,6 +11436,20 @@ CREATE TABLE Output_VFlow_In ( FOREIGN KEY(vintage) REFERENCES time_periods(t_periods), FOREIGN KEY(output_comm) REFERENCES commodities(comm_name)); +CREATE TABLE Output_HourlyStorage ( + scenario text, + sector text, + t_periods integer, + t_season text, + t_day text, + tech text, + stored_energy real, + PRIMARY KEY(scenario, t_periods, t_season, t_day, tech), + FOREIGN KEY(sector) REFERENCES sector_labels(sector), + FOREIGN KEY(t_periods) REFERENCES time_periods(t_periods), + FOREIGN KEY(t_season) REFERENCES time_periods(t_periods), + FOREIGN KEY(t_day) REFERENCES time_of_day(t_day), + FOREIGN KEY(tech) REFERENCES technologies(tech)); CREATE TABLE Output_V_Capacity ( scenario text, diff --git a/NCreference.sqlite b/NCreference.sqlite index 659d380..41b46f9 100644 Binary files a/NCreference.sqlite and b/NCreference.sqlite differ