├── LICENSE ├── README.md ├── bins ├── hydro_bins.csv └── weather_bins.csv ├── common_files ├── no_gas │ ├── case │ │ ├── features.csv │ │ ├── scenario_description_base.csv │ │ └── units.csv │ └── subproblems │ │ ├── fuel_prices.tab │ │ ├── fuels.tab │ │ ├── load_zones.tab │ │ ├── projects.tab │ │ ├── spec_capacity_period_params.tab │ │ ├── spinning_reserves_balancing_areas.tab │ │ ├── spinning_reserves_percent_map.tab │ │ └── spinning_reserves_percent_requirement.tab └── toy_case │ ├── case │ ├── features.csv │ ├── scenario_description_base.csv │ └── units.csv │ └── subproblems │ ├── fuel_prices.tab │ ├── fuels.tab │ ├── load_zones.tab │ ├── projects.tab │ ├── spec_capacity_period_params.tab │ ├── spinning_reserves_balancing_areas.tab │ ├── spinning_reserves_percent_map.tab │ └── spinning_reserves_percent_requirement.tab ├── consolidate_results.py ├── process_results.py ├── settings ├── aggregations_nogas.csv ├── aggregations_toy.csv ├── parameters_toy.csv ├── scenario_settings.csv ├── subscenarios.csv ├── timeseries_toy.csv └── variable_types.csv └── temporal_data ├── hydro ├── Hydro.csv └── timestamps.csv ├── load ├── timestamps.csv └── zone1.csv ├── solar ├── Hybrid_Solar.csv ├── Solar.csv └── timestamps.csv ├── thermal ├── GasCC1.csv ├── GasCC2.csv ├── GasCC3.csv ├── GasCT1.csv └── timestamps.csv └── wind ├── Wind.csv └── timestamps.csv /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bins/hydro_bins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/bins/hydro_bins.csv -------------------------------------------------------------------------------- /bins/weather_bins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/bins/weather_bins.csv -------------------------------------------------------------------------------- /common_files/no_gas/case/features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/case/features.csv -------------------------------------------------------------------------------- /common_files/no_gas/case/scenario_description_base.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/case/scenario_description_base.csv -------------------------------------------------------------------------------- /common_files/no_gas/case/units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/case/units.csv -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/fuel_prices.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/fuel_prices.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/fuels.tab: -------------------------------------------------------------------------------- 1 | FUELS co2_intensity_tons_per_mmbtu 2 | -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/load_zones.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/load_zones.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/projects.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/projects.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/spec_capacity_period_params.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/spec_capacity_period_params.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/spinning_reserves_balancing_areas.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/spinning_reserves_balancing_areas.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/spinning_reserves_percent_map.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/no_gas/subproblems/spinning_reserves_percent_map.tab -------------------------------------------------------------------------------- /common_files/no_gas/subproblems/spinning_reserves_percent_requirement.tab: -------------------------------------------------------------------------------- 1 | ba percent_requirement 2 | RSG1 0.06 3 | -------------------------------------------------------------------------------- /common_files/toy_case/case/features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/case/features.csv -------------------------------------------------------------------------------- /common_files/toy_case/case/scenario_description_base.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/case/scenario_description_base.csv -------------------------------------------------------------------------------- /common_files/toy_case/case/units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/case/units.csv -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/fuel_prices.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/fuel_prices.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/fuels.tab: -------------------------------------------------------------------------------- 1 | FUELS co2_intensity_tons_per_mmbtu 2 | -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/load_zones.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/load_zones.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/projects.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/projects.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/spec_capacity_period_params.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/spec_capacity_period_params.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/spinning_reserves_balancing_areas.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/spinning_reserves_balancing_areas.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/spinning_reserves_percent_map.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/common_files/toy_case/subproblems/spinning_reserves_percent_map.tab -------------------------------------------------------------------------------- /common_files/toy_case/subproblems/spinning_reserves_percent_requirement.tab: -------------------------------------------------------------------------------- 1 | ba percent_requirement 2 | RSG1 0.06 3 | -------------------------------------------------------------------------------- /consolidate_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/consolidate_results.py -------------------------------------------------------------------------------- /process_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/process_results.py -------------------------------------------------------------------------------- /settings/aggregations_nogas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/aggregations_nogas.csv -------------------------------------------------------------------------------- /settings/aggregations_toy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/aggregations_toy.csv -------------------------------------------------------------------------------- /settings/parameters_toy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/parameters_toy.csv -------------------------------------------------------------------------------- /settings/scenario_settings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/scenario_settings.csv -------------------------------------------------------------------------------- /settings/subscenarios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/subscenarios.csv -------------------------------------------------------------------------------- /settings/timeseries_toy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/timeseries_toy.csv -------------------------------------------------------------------------------- /settings/variable_types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/settings/variable_types.csv -------------------------------------------------------------------------------- /temporal_data/hydro/Hydro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/hydro/Hydro.csv -------------------------------------------------------------------------------- /temporal_data/hydro/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/hydro/timestamps.csv -------------------------------------------------------------------------------- /temporal_data/load/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/load/timestamps.csv -------------------------------------------------------------------------------- /temporal_data/load/zone1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/load/zone1.csv -------------------------------------------------------------------------------- /temporal_data/solar/Hybrid_Solar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/solar/Hybrid_Solar.csv -------------------------------------------------------------------------------- /temporal_data/solar/Solar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/solar/Solar.csv -------------------------------------------------------------------------------- /temporal_data/solar/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/solar/timestamps.csv -------------------------------------------------------------------------------- /temporal_data/thermal/GasCC1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/thermal/GasCC1.csv -------------------------------------------------------------------------------- /temporal_data/thermal/GasCC2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/thermal/GasCC2.csv -------------------------------------------------------------------------------- /temporal_data/thermal/GasCC3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/thermal/GasCC3.csv -------------------------------------------------------------------------------- /temporal_data/thermal/GasCT1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/thermal/GasCT1.csv -------------------------------------------------------------------------------- /temporal_data/thermal/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/thermal/timestamps.csv -------------------------------------------------------------------------------- /temporal_data/wind/Wind.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/wind/Wind.csv -------------------------------------------------------------------------------- /temporal_data/wind/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MomentEI/GridPath_RA_Toolkit/HEAD/temporal_data/wind/timestamps.csv --------------------------------------------------------------------------------