├── .git-blame-ignore-revs ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── DEV_INSTALL.txt ├── INSTALL.md ├── LICENSE ├── LICENSE.BOILERPLATE ├── MANIFEST.in ├── README ├── doc └── make_doc.sh ├── examples ├── 3zone_toy │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── trans_params.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── 3zone_toy_stochastic_PySP │ ├── PySPInputGenerator.py │ ├── README.md │ ├── ReferenceModel.py │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── pysp_inputs │ │ │ ├── HighFuelCosts.dat │ │ │ ├── LowFuelCosts.dat │ │ │ ├── MediumFuelCosts.dat │ │ │ ├── RootNode.dat │ │ │ └── ScenarioStructure.dat │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ └── zone_coincident_peak_demand.csv │ ├── outputs-runef │ │ ├── ef.csv │ │ ├── ef_StageCostDetail.csv │ │ └── runef-stdoutput.txt │ ├── outputs-runph-rhosetter-FS-only │ │ ├── ph.csv │ │ ├── ph_StageCostDetail.csv │ │ └── runph-rhosetter-FS-only-stdoutput.txt │ ├── outputs-runph-rhosetter │ │ ├── ph.csv │ │ ├── ph_StageCostDetail.csv │ │ └── runph-rhosetter-stdoutput.txt │ ├── pha_bounds_cfg.py │ ├── rhosetter.py │ └── rhosetter_FS_only.py ├── carbon_cap │ ├── README.md │ ├── inputs │ │ ├── carbon_policies.csv │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── ccs │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ └── outputs │ │ └── total_cost.txt ├── copperplate0 │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ └── outputs │ │ └── total_cost.txt ├── copperplate1 │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── custom_extension │ ├── README │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ ├── outputs │ │ └── total_cost.txt │ └── sunk_costs.py ├── diagnose_infeasibility │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ └── outputs │ │ └── total_cost.txt ├── discrete_and_min_build │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_coincident_peak_demand.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── discrete_build │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_coincident_peak_demand.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── dr_simple │ ├── README.md │ ├── inputs │ │ ├── dr_data.csv │ │ ├── financials.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── hydro_simple │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── hydro_timeseries.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ └── outputs │ │ └── total_cost.txt ├── hydro_system │ ├── README.md │ ├── basic │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── hydro_generation_projects.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── reservoir_ts_data.csv │ │ │ ├── reservoirs.csv │ │ │ ├── spillage_penalty.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ ├── water_connections.csv │ │ │ ├── water_node_tp_flows.csv │ │ │ └── water_nodes.csv │ │ └── outputs │ │ │ └── total_cost.txt │ └── pumped_storage │ │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── hydro_generation_projects.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── reservoir_ts_data.csv │ │ ├── reservoirs.csv │ │ ├── spillage_penalty.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ ├── water_connections.csv │ │ ├── water_node_tp_flows.csv │ │ └── water_nodes.csv │ │ └── outputs │ │ └── total_cost.txt ├── hydrogen │ ├── README.md │ ├── inputs │ │ ├── carbon_policies.csv │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── gen_multiple_fuels.csv │ │ ├── hydrogen.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── new_builds_only │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ └── outputs │ │ └── total_cost.txt ├── planning_reserves │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── planning_reserve_requirement_zones.csv │ │ ├── planning_reserve_requirements.csv │ │ ├── regional_fuel_markets.csv │ │ ├── reserve_capacity_value.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── production_cost_models │ ├── 1plant │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── periods.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── 3plants │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── 4plants │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── 4plants_with_unserved_load │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── lost_load_cost.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── README │ ├── discrete_unit_commit │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── spinning_reserves │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_inc_heat_rates.csv │ │ │ ├── gen_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── spinning_reserve_params.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ ├── options.txt │ │ └── outputs │ │ │ └── total_cost.txt │ ├── spinning_reserves_advanced │ │ ├── README.md │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── gen_inc_heat_rates.csv │ │ │ ├── gen_info.csv │ │ │ ├── generation_projects_reserve_capability.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── spinning_reserve_params.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ └── zone_coincident_peak_demand.csv │ │ ├── options.txt │ │ └── outputs │ │ │ └── total_cost.txt │ └── unit_commit │ │ ├── README.md │ │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_inc_heat_rates.csv │ │ ├── gen_inc_heat_rates_30p_commit.csv │ │ ├── gen_inc_heat_rates_test_high_end_avoidance.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── variable_capacity_factors.csv │ │ └── zone_coincident_peak_demand.csv │ │ └── outputs │ │ ├── dispatch.txt │ │ └── total_cost.txt ├── retrofits │ ├── inputs │ │ ├── carbon_policies.csv │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── gen_retrofits.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── trans_params.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt ├── rps_simple │ ├── README.md │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuel_supply_curves.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── gen_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── regional_fuel_markets.csv │ │ ├── rps_targets.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ ├── transmission_lines.csv │ │ ├── variable_capacity_factors.csv │ │ ├── zone_balancing_areas.csv │ │ ├── zone_coincident_peak_demand.csv │ │ ├── zone_fuel_cost_diff.csv │ │ └── zone_to_regional_fuel_market.csv │ └── outputs │ │ └── total_cost.txt └── storage │ ├── README.md │ ├── inputs │ ├── financials.csv │ ├── fuel_cost.csv │ ├── fuels.csv │ ├── gen_build_costs.csv │ ├── gen_build_predetermined.csv │ ├── gen_info.csv │ ├── load_zones.csv │ ├── loads.csv │ ├── modules.txt │ ├── non_fuel_energy_sources.csv │ ├── periods.csv │ ├── switch_inputs_version.txt │ ├── timepoints.csv │ ├── timeseries.csv │ └── variable_capacity_factors.csv │ └── outputs │ └── total_cost.txt ├── how_to_collaborate.txt ├── run_tests.py ├── setup.py ├── switch_model ├── __init__.py ├── api.py ├── balancing │ ├── __init__.py │ ├── demand_response │ │ ├── __init__.py │ │ ├── iterative │ │ │ ├── __init__.py │ │ │ ├── constant_elasticity_demand_system.py │ │ │ └── r_demand_system.py │ │ └── simple.py │ ├── diagnose_infeasibility.py │ ├── load_zones.py │ ├── operating_reserves │ │ ├── __init__.py │ │ ├── areas.py │ │ ├── spinning_reserves.py │ │ └── spinning_reserves_advanced.py │ ├── planning_reserves.py │ └── unserved_load.py ├── energy_sources │ ├── __init__.py │ ├── fuel_costs │ │ ├── __init__.py │ │ ├── markets.py │ │ ├── markets_expansion.py │ │ ├── simple.py │ │ └── simple_per_timepoint.py │ ├── hydrogen │ │ ├── __init__.py │ │ └── production.py │ └── properties.py ├── financials.py ├── generators │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── build.py │ │ ├── commit │ │ │ ├── __init__.py │ │ │ ├── discrete.py │ │ │ ├── fuel_use.py │ │ │ └── operate.py │ │ ├── dispatch.py │ │ ├── gen_discrete_build.py │ │ └── no_commit.py │ └── extensions │ │ ├── __init__.py │ │ ├── hydro_simple.py │ │ ├── hydro_system.py │ │ ├── retrofit.py │ │ └── storage.py ├── hawaii │ ├── __init__.py │ ├── batteries.py │ ├── batteries_fixed_calendar_life.py │ ├── demand_response_no_reserves.py │ ├── demand_response_simple.py │ ├── emission_rules.py │ ├── ev.py │ ├── ev_advanced.py │ ├── fed_subsidies.py │ ├── fuel_markets_expansion.py │ ├── heco_outlook_2019.py │ ├── heco_outlook_2020_06.py │ ├── heco_outlook_2020_08.py │ ├── heco_plan_2020_06.py │ ├── heco_plan_2020_08.py │ ├── hi_spinning_reserves.py │ ├── hydrogen.py │ ├── lake_wilson.py │ ├── lng_conversion.py │ ├── no_central_pv.py │ ├── no_onshore_wind.py │ ├── no_renewables.py │ ├── no_wind.py │ ├── oahu_plants.py │ ├── psip_2016_04.py │ ├── psip_2016_12.py │ ├── pumped_hydro.py │ ├── register_hi_storage_reserves.py │ ├── reserves.py │ ├── rps.py │ ├── save_results.py │ ├── scenario_data.py │ ├── scenarios.py │ ├── smooth_dispatch.py │ ├── smooth_dispatch_quadratic.py │ ├── switch_patch.py │ ├── unserved_load.py │ └── util.py ├── main.py ├── policies │ ├── __init__.py │ ├── carbon_policies.py │ └── rps_simple.py ├── reporting │ ├── __init__.py │ ├── basic_exports.py │ ├── dump.py │ └── example_export.py ├── solve.py ├── solve_scenarios.py ├── test.py ├── timescales.py ├── transmission │ ├── __init__.py │ ├── copperplate.py │ ├── local_td.py │ └── transport │ │ ├── __init__.py │ │ ├── build.py │ │ └── dispatch.py ├── upgrade │ ├── __init__.py │ ├── manager.py │ ├── re_upgrade.py │ ├── upgrade_2_0_0b1.py │ ├── upgrade_2_0_0b2.py │ ├── upgrade_2_0_0b4.py │ ├── upgrade_2_0_1.py │ ├── upgrade_2_0_4.py │ ├── upgrade_2_0_5.py │ ├── upgrade_2_0_6.py │ ├── upgrade_2_0_7.py │ └── upgrade_2_0_9.py ├── utilities.py └── version.py ├── tests ├── __init__.py ├── examples_test.py ├── upgrade_dat │ ├── 3zone_toy │ │ ├── inputs │ │ │ ├── balancing_areas.tab │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuel_supply_curves.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── lz_balancing_areas.tab │ │ │ ├── lz_fuel_cost_diff.tab │ │ │ ├── lz_peak_loads.tab │ │ │ ├── lz_to_regional_fuel_market.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── regional_fuel_markets.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ ├── transmission_lines.tab │ │ │ └── variable_capacity_factors.tab │ │ └── outputs │ │ │ └── total_cost.txt │ ├── 3zone_toy_2_0_6 │ │ ├── inputs │ │ │ ├── financials.csv │ │ │ ├── fuel_cost.csv │ │ │ ├── fuel_supply_curves.csv │ │ │ ├── fuels.csv │ │ │ ├── gen_build_costs.csv │ │ │ ├── gen_build_predetermined.csv │ │ │ ├── generation_projects_info.csv │ │ │ ├── load_zones.csv │ │ │ ├── loads.csv │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.csv │ │ │ ├── periods.csv │ │ │ ├── regional_fuel_markets.csv │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.csv │ │ │ ├── timeseries.csv │ │ │ ├── trans_params.csv │ │ │ ├── transmission_lines.csv │ │ │ ├── variable_capacity_factors.csv │ │ │ ├── zone_balancing_areas.csv │ │ │ ├── zone_coincident_peak_demand.csv │ │ │ ├── zone_fuel_cost_diff.csv │ │ │ └── zone_to_regional_fuel_market.csv │ │ └── outputs │ │ │ └── total_cost.txt │ ├── README.txt │ ├── copperplate0 │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ └── outputs │ │ │ └── total_cost.txt │ ├── copperplate1 │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_supply_curves.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── lz_to_regional_fuel_market.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── regional_fuel_markets.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ └── outputs │ │ │ └── total_cost.txt │ ├── custom_extension │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ ├── outputs │ │ │ └── total_cost.txt │ │ └── sunk_costs.py │ ├── hydro_simple │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── hydro_timeseries.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ └── outputs │ │ │ └── total_cost.txt │ ├── hydro_system │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── hydro_projects.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── reservoirs.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ ├── variable_capacity_factors.tab │ │ │ ├── water_connections.tab │ │ │ ├── water_node_tp_flows.tab │ │ │ └── water_nodes.tab │ │ └── outputs │ │ │ └── total_cost.txt │ ├── production_cost_models │ │ ├── 4plants │ │ │ ├── inputs │ │ │ │ ├── financials.dat │ │ │ │ ├── fuel_cost.tab │ │ │ │ ├── fuels.tab │ │ │ │ ├── generator_info.tab │ │ │ │ ├── load_zones.tab │ │ │ │ ├── loads.tab │ │ │ │ ├── lz_peak_loads.tab │ │ │ │ ├── modules.txt │ │ │ │ ├── non_fuel_energy_sources.tab │ │ │ │ ├── periods.tab │ │ │ │ ├── proj_build_costs.tab │ │ │ │ ├── proj_existing_builds.tab │ │ │ │ ├── project_info.tab │ │ │ │ ├── switch_inputs_version.txt │ │ │ │ ├── timepoints.tab │ │ │ │ ├── timeseries.tab │ │ │ │ └── variable_capacity_factors.tab │ │ │ └── outputs │ │ │ │ └── total_cost.txt │ │ ├── discrete_unit_commit │ │ │ ├── inputs │ │ │ │ ├── financials.dat │ │ │ │ ├── fuel_cost.tab │ │ │ │ ├── fuels.tab │ │ │ │ ├── generator_info.tab │ │ │ │ ├── load_zones.tab │ │ │ │ ├── loads.tab │ │ │ │ ├── lz_peak_loads.tab │ │ │ │ ├── modules.txt │ │ │ │ ├── non_fuel_energy_sources.tab │ │ │ │ ├── periods.tab │ │ │ │ ├── proj_build_costs.tab │ │ │ │ ├── proj_existing_builds.tab │ │ │ │ ├── project_info.tab │ │ │ │ ├── switch_inputs_version.txt │ │ │ │ ├── timepoints.tab │ │ │ │ ├── timeseries.tab │ │ │ │ └── variable_capacity_factors.tab │ │ │ └── outputs │ │ │ │ └── total_cost.txt │ │ └── unit_commit │ │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_inc_heat_rates.tab │ │ │ ├── gen_inc_heat_rates_30p_commit.tab │ │ │ ├── gen_inc_heat_rates_test_high_end_avoidance.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── lz_peak_loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ │ └── outputs │ │ │ └── total_cost.txt │ ├── storage │ │ ├── inputs │ │ │ ├── financials.dat │ │ │ ├── fuel_cost.tab │ │ │ ├── fuels.tab │ │ │ ├── gen_new_build_costs.tab │ │ │ ├── generator_info.tab │ │ │ ├── load_zones.tab │ │ │ ├── loads.tab │ │ │ ├── modules.txt │ │ │ ├── non_fuel_energy_sources.tab │ │ │ ├── periods.tab │ │ │ ├── proj_build_costs.tab │ │ │ ├── proj_existing_builds.tab │ │ │ ├── project_info.tab │ │ │ ├── switch_inputs_version.txt │ │ │ ├── timepoints.tab │ │ │ ├── timeseries.tab │ │ │ └── variable_capacity_factors.tab │ │ └── outputs │ │ │ └── total_cost.txt │ └── storage_206 │ │ ├── inputs │ │ ├── financials.csv │ │ ├── fuel_cost.csv │ │ ├── fuels.csv │ │ ├── gen_build_costs.csv │ │ ├── gen_build_predetermined.csv │ │ ├── generation_projects_info.csv │ │ ├── load_zones.csv │ │ ├── loads.csv │ │ ├── modules.txt │ │ ├── non_fuel_energy_sources.csv │ │ ├── periods.csv │ │ ├── switch_inputs_version.txt │ │ ├── timepoints.csv │ │ ├── timeseries.csv │ │ └── variable_capacity_factors.csv │ │ └── outputs │ │ └── total_cost.txt ├── upgrade_test.py └── utilities_test.py ├── updates201.txt ├── updates203.txt ├── updates204.txt ├── updates205.txt ├── updates206.txt ├── updates207.txt ├── updates208.txt └── updates209.txt /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 27cea890a46e4e11373ddeaf7ce07920692562c2 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEV_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/DEV_INSTALL.txt -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.BOILERPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/LICENSE.BOILERPLATE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/README -------------------------------------------------------------------------------- /doc/make_doc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pydoc -w ../ 3 | -------------------------------------------------------------------------------- /examples/3zone_toy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/README.md -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/financials.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/loads.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/modules.txt -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/periods.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/trans_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/trans_params.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/zone_coincident_peak_demand.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/3zone_toy/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/3zone_toy/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 134733088.429291 2 | -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/PySPInputGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/PySPInputGenerator.py -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/README.md -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/ReferenceModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/ReferenceModel.py -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/financials.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/loads.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/modules.txt -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/periods.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/pysp_inputs/MediumFuelCosts.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/pysp_inputs/RootNode.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/pysp_inputs/RootNode.dat -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/outputs-runef/ef.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/outputs-runef/ef.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/outputs-runph-rhosetter/ph.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/outputs-runph-rhosetter/ph.csv -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/pha_bounds_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/pha_bounds_cfg.py -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/rhosetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/rhosetter.py -------------------------------------------------------------------------------- /examples/3zone_toy_stochastic_PySP/rhosetter_FS_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/3zone_toy_stochastic_PySP/rhosetter_FS_only.py -------------------------------------------------------------------------------- /examples/carbon_cap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/README.md -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/carbon_policies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/carbon_policies.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/financials.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/loads.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/modules.txt -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/periods.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/zone_coincident_peak_demand.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/carbon_cap/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/carbon_cap/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/carbon_cap/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 139541670.12902078 2 | -------------------------------------------------------------------------------- /examples/ccs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/README.md -------------------------------------------------------------------------------- /examples/ccs/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/financials.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/ccs/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/loads.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/modules.txt -------------------------------------------------------------------------------- /examples/ccs/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/ccs/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/periods.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/ccs/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/ccs/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/ccs/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/ccs/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 19897963.461891927 2 | -------------------------------------------------------------------------------- /examples/copperplate0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/README.md -------------------------------------------------------------------------------- /examples/copperplate0/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/financials.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE 2 | South 3 | -------------------------------------------------------------------------------- /examples/copperplate0/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/loads.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/modules.txt -------------------------------------------------------------------------------- /examples/copperplate0/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/copperplate0/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/periods.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/copperplate0/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/copperplate0/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate0/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/copperplate0/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 18504623.68565862 2 | -------------------------------------------------------------------------------- /examples/copperplate1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/README.md -------------------------------------------------------------------------------- /examples/copperplate1/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/financials.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/loads.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/modules.txt -------------------------------------------------------------------------------- /examples/copperplate1/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/copperplate1/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/periods.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/copperplate1/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/copperplate1/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/copperplate1/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/copperplate1/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 33700474.30486566 2 | -------------------------------------------------------------------------------- /examples/custom_extension/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/README -------------------------------------------------------------------------------- /examples/custom_extension/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/financials.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/custom_extension/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/loads.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/modules.txt -------------------------------------------------------------------------------- /examples/custom_extension/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/custom_extension/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/periods.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/custom_extension/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/custom_extension/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/custom_extension/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 25508464.891268432 2 | -------------------------------------------------------------------------------- /examples/custom_extension/sunk_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/custom_extension/sunk_costs.py -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/README.md -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/financials.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/loads.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/modules.txt -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/periods.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/diagnose_infeasibility/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/diagnose_infeasibility/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 8296364.004649364 2 | -------------------------------------------------------------------------------- /examples/discrete_and_min_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/README.md -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/financials.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/loads.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/modules.txt -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/periods.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_and_min_build/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2020,10 3 | -------------------------------------------------------------------------------- /examples/discrete_and_min_build/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- 1 | load_zone,regional_fuel_market 2 | South,All_NG 3 | -------------------------------------------------------------------------------- /examples/discrete_and_min_build/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 30633194.21419573 2 | -------------------------------------------------------------------------------- /examples/discrete_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/README.md -------------------------------------------------------------------------------- /examples/discrete_build/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/financials.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/loads.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/modules.txt -------------------------------------------------------------------------------- /examples/discrete_build/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/discrete_build/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/periods.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/discrete_build/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/discrete_build/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/discrete_build/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2020,10 3 | -------------------------------------------------------------------------------- /examples/discrete_build/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- 1 | load_zone,regional_fuel_market 2 | South,All_NG 3 | -------------------------------------------------------------------------------- /examples/discrete_build/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 28962382.40385321 2 | -------------------------------------------------------------------------------- /examples/dr_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/README.md -------------------------------------------------------------------------------- /examples/dr_simple/inputs/dr_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/dr_data.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/financials.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/loads.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/modules.txt -------------------------------------------------------------------------------- /examples/dr_simple/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/dr_simple/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/periods.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/dr_simple/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/dr_simple/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/dr_simple/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/dr_simple/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 26054604.04064445 2 | -------------------------------------------------------------------------------- /examples/hydro_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/README.md -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/financials.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/hydro_timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/hydro_timeseries.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/loads.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/modules.txt -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | Water 5 | -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/periods.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/hydro_simple/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_simple/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/hydro_simple/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 27519709.76872242 2 | -------------------------------------------------------------------------------- /examples/hydro_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/README.md -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/financials.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/hydro_generation_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/hydro_generation_projects.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | Unique,.,.,1 3 | -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/loads.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/modules.txt -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Water 4 | -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/periods.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/reservoir_ts_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/reservoir_ts_data.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/reservoirs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/reservoirs.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/spillage_penalty.csv: -------------------------------------------------------------------------------- 1 | spillage_penalty 2 | 200 3 | -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/water_connections.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/water_connections.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/water_node_tp_flows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/water_node_tp_flows.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/inputs/water_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/basic/inputs/water_nodes.csv -------------------------------------------------------------------------------- /examples/hydro_system/basic/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 8116934.478032043 2 | -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/financials.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | Unique,.,.,1 3 | -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/loads.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/modules.txt -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Water 4 | -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/periods.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/reservoirs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/reservoirs.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/spillage_penalty.csv: -------------------------------------------------------------------------------- 1 | spillage_penalty 2 | 200 3 | -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/inputs/water_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydro_system/pumped_storage/inputs/water_nodes.csv -------------------------------------------------------------------------------- /examples/hydro_system/pumped_storage/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 1490621.192296474 2 | -------------------------------------------------------------------------------- /examples/hydrogen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/README.md -------------------------------------------------------------------------------- /examples/hydrogen/inputs/carbon_policies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/carbon_policies.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/financials.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/gen_multiple_fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/gen_multiple_fuels.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/hydrogen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/hydrogen.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/loads.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/modules.txt -------------------------------------------------------------------------------- /examples/hydrogen/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/hydrogen/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/periods.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/hydrogen/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/zone_coincident_peak_demand.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/hydrogen/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/hydrogen/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/hydrogen/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 188714938.7949838 2 | -------------------------------------------------------------------------------- /examples/new_builds_only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/README.md -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/financials.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/loads.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/modules.txt -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/periods.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/new_builds_only/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/new_builds_only/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/new_builds_only/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 14998608.829253994 2 | -------------------------------------------------------------------------------- /examples/planning_reserves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/README.md -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/financials.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/loads.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/modules.txt -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/periods.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/reserve_capacity_value.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/reserve_capacity_value.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/planning_reserves/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/planning_reserves/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/planning_reserves/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 135901915.10941112 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/financials.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/loads.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,TIMEPOINT,zone_demand_mw 2 | South,1,8 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/modules.txt -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/periods.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/1plant/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/1plant/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 28415619.170866918 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/financials.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/loads.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,TIMEPOINT,zone_demand_mw 2 | South,1,8 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/modules.txt -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/periods.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/3plants/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/3plants/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 37439925.13089198 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/financials.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/loads.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/modules.txt -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/periods.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/4plants/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34328152.22729579 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants_with_unserved_load/inputs/lost_load_cost.csv: -------------------------------------------------------------------------------- 1 | unserved_load_penalty 2 | 50 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants_with_unserved_load/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants_with_unserved_load/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants_with_unserved_load/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/4plants_with_unserved_load/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34034308.6269113 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/README -------------------------------------------------------------------------------- /examples/production_cost_models/discrete_unit_commit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/discrete_unit_commit/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/discrete_unit_commit/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/discrete_unit_commit/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/discrete_unit_commit/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/discrete_unit_commit/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34524511.60922097 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/spinning_reserves/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/inputs/spinning_reserve_params.csv: -------------------------------------------------------------------------------- 1 | contingency_safety_factor 2 | 1 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/options.txt: -------------------------------------------------------------------------------- 1 | --spinning-requirement-rule 3+5 2 | --unit-contingency 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 36406402.36853148 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/inputs/spinning_reserve_params.csv: -------------------------------------------------------------------------------- 1 | contingency_safety_factor 2 | 1 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/options.txt: -------------------------------------------------------------------------------- 1 | --spinning-requirement-rule 3+5 2 | --unit-contingency 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/spinning_reserves_advanced/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 36406402.36853148 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/README.md -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/loads.csv -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/modules.txt -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar 4 | -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/inputs/periods.csv -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,PERIOD,zone_expected_coincident_peak_demand 2 | South,2010,10 3 | -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/outputs/dispatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/production_cost_models/unit_commit/outputs/dispatch.txt -------------------------------------------------------------------------------- /examples/production_cost_models/unit_commit/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 35131346.34291914 2 | -------------------------------------------------------------------------------- /examples/retrofits/inputs/carbon_policies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/carbon_policies.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/financials.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/gen_retrofits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/gen_retrofits.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/loads.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/modules.txt -------------------------------------------------------------------------------- /examples/retrofits/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/retrofits/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/periods.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/retrofits/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/trans_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/trans_params.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/zone_coincident_peak_demand.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/retrofits/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/retrofits/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/retrofits/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 140398229.15422428 2 | -------------------------------------------------------------------------------- /examples/rps_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/README.md -------------------------------------------------------------------------------- /examples/rps_simple/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/financials.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/load_zones.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/loads.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/modules.txt -------------------------------------------------------------------------------- /examples/rps_simple/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /examples/rps_simple/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/periods.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/regional_fuel_markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/regional_fuel_markets.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/rps_targets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/rps_targets.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/rps_simple/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/zone_balancing_areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/zone_balancing_areas.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/zone_coincident_peak_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/zone_coincident_peak_demand.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /examples/rps_simple/inputs/zone_to_regional_fuel_market.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/rps_simple/inputs/zone_to_regional_fuel_market.csv -------------------------------------------------------------------------------- /examples/rps_simple/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 140343019.69266725 2 | -------------------------------------------------------------------------------- /examples/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/README.md -------------------------------------------------------------------------------- /examples/storage/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/financials.csv -------------------------------------------------------------------------------- /examples/storage/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /examples/storage/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/fuels.csv -------------------------------------------------------------------------------- /examples/storage/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /examples/storage/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /examples/storage/inputs/gen_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/gen_info.csv -------------------------------------------------------------------------------- /examples/storage/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /examples/storage/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/loads.csv -------------------------------------------------------------------------------- /examples/storage/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/modules.txt -------------------------------------------------------------------------------- /examples/storage/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | Electricity 5 | -------------------------------------------------------------------------------- /examples/storage/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/periods.csv -------------------------------------------------------------------------------- /examples/storage/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.9 2 | -------------------------------------------------------------------------------- /examples/storage/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/timepoints.csv -------------------------------------------------------------------------------- /examples/storage/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/timeseries.csv -------------------------------------------------------------------------------- /examples/storage/inputs/variable_capacity_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/examples/storage/inputs/variable_capacity_factors.csv -------------------------------------------------------------------------------- /examples/storage/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 25756002.03478126 2 | -------------------------------------------------------------------------------- /how_to_collaborate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/how_to_collaborate.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/setup.py -------------------------------------------------------------------------------- /switch_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/__init__.py -------------------------------------------------------------------------------- /switch_model/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/api.py -------------------------------------------------------------------------------- /switch_model/balancing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/balancing/demand_response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/balancing/demand_response/iterative/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/demand_response/iterative/__init__.py -------------------------------------------------------------------------------- /switch_model/balancing/demand_response/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/demand_response/simple.py -------------------------------------------------------------------------------- /switch_model/balancing/diagnose_infeasibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/diagnose_infeasibility.py -------------------------------------------------------------------------------- /switch_model/balancing/load_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/load_zones.py -------------------------------------------------------------------------------- /switch_model/balancing/operating_reserves/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/balancing/operating_reserves/areas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/operating_reserves/areas.py -------------------------------------------------------------------------------- /switch_model/balancing/operating_reserves/spinning_reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/operating_reserves/spinning_reserves.py -------------------------------------------------------------------------------- /switch_model/balancing/planning_reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/planning_reserves.py -------------------------------------------------------------------------------- /switch_model/balancing/unserved_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/balancing/unserved_load.py -------------------------------------------------------------------------------- /switch_model/energy_sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/energy_sources/fuel_costs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/energy_sources/fuel_costs/markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/fuel_costs/markets.py -------------------------------------------------------------------------------- /switch_model/energy_sources/fuel_costs/markets_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/fuel_costs/markets_expansion.py -------------------------------------------------------------------------------- /switch_model/energy_sources/fuel_costs/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/fuel_costs/simple.py -------------------------------------------------------------------------------- /switch_model/energy_sources/fuel_costs/simple_per_timepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/fuel_costs/simple_per_timepoint.py -------------------------------------------------------------------------------- /switch_model/energy_sources/hydrogen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/energy_sources/hydrogen/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/hydrogen/production.py -------------------------------------------------------------------------------- /switch_model/energy_sources/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/energy_sources/properties.py -------------------------------------------------------------------------------- /switch_model/financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/financials.py -------------------------------------------------------------------------------- /switch_model/generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/generators/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/__init__.py -------------------------------------------------------------------------------- /switch_model/generators/core/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/build.py -------------------------------------------------------------------------------- /switch_model/generators/core/commit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/commit/__init__.py -------------------------------------------------------------------------------- /switch_model/generators/core/commit/discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/commit/discrete.py -------------------------------------------------------------------------------- /switch_model/generators/core/commit/fuel_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/commit/fuel_use.py -------------------------------------------------------------------------------- /switch_model/generators/core/commit/operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/commit/operate.py -------------------------------------------------------------------------------- /switch_model/generators/core/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/dispatch.py -------------------------------------------------------------------------------- /switch_model/generators/core/gen_discrete_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/gen_discrete_build.py -------------------------------------------------------------------------------- /switch_model/generators/core/no_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/core/no_commit.py -------------------------------------------------------------------------------- /switch_model/generators/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/generators/extensions/hydro_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/extensions/hydro_simple.py -------------------------------------------------------------------------------- /switch_model/generators/extensions/hydro_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/extensions/hydro_system.py -------------------------------------------------------------------------------- /switch_model/generators/extensions/retrofit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/extensions/retrofit.py -------------------------------------------------------------------------------- /switch_model/generators/extensions/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/generators/extensions/storage.py -------------------------------------------------------------------------------- /switch_model/hawaii/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/hawaii/batteries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/batteries.py -------------------------------------------------------------------------------- /switch_model/hawaii/batteries_fixed_calendar_life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/batteries_fixed_calendar_life.py -------------------------------------------------------------------------------- /switch_model/hawaii/demand_response_no_reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/demand_response_no_reserves.py -------------------------------------------------------------------------------- /switch_model/hawaii/demand_response_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/demand_response_simple.py -------------------------------------------------------------------------------- /switch_model/hawaii/emission_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/emission_rules.py -------------------------------------------------------------------------------- /switch_model/hawaii/ev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/ev.py -------------------------------------------------------------------------------- /switch_model/hawaii/ev_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/ev_advanced.py -------------------------------------------------------------------------------- /switch_model/hawaii/fed_subsidies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/fed_subsidies.py -------------------------------------------------------------------------------- /switch_model/hawaii/fuel_markets_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/fuel_markets_expansion.py -------------------------------------------------------------------------------- /switch_model/hawaii/heco_outlook_2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/heco_outlook_2019.py -------------------------------------------------------------------------------- /switch_model/hawaii/heco_outlook_2020_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/heco_outlook_2020_06.py -------------------------------------------------------------------------------- /switch_model/hawaii/heco_outlook_2020_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/heco_outlook_2020_08.py -------------------------------------------------------------------------------- /switch_model/hawaii/heco_plan_2020_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/heco_plan_2020_06.py -------------------------------------------------------------------------------- /switch_model/hawaii/heco_plan_2020_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/heco_plan_2020_08.py -------------------------------------------------------------------------------- /switch_model/hawaii/hi_spinning_reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/hi_spinning_reserves.py -------------------------------------------------------------------------------- /switch_model/hawaii/hydrogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/hydrogen.py -------------------------------------------------------------------------------- /switch_model/hawaii/lake_wilson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/lake_wilson.py -------------------------------------------------------------------------------- /switch_model/hawaii/lng_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/lng_conversion.py -------------------------------------------------------------------------------- /switch_model/hawaii/no_central_pv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/no_central_pv.py -------------------------------------------------------------------------------- /switch_model/hawaii/no_onshore_wind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/no_onshore_wind.py -------------------------------------------------------------------------------- /switch_model/hawaii/no_renewables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/no_renewables.py -------------------------------------------------------------------------------- /switch_model/hawaii/no_wind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/no_wind.py -------------------------------------------------------------------------------- /switch_model/hawaii/oahu_plants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/oahu_plants.py -------------------------------------------------------------------------------- /switch_model/hawaii/psip_2016_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/psip_2016_04.py -------------------------------------------------------------------------------- /switch_model/hawaii/psip_2016_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/psip_2016_12.py -------------------------------------------------------------------------------- /switch_model/hawaii/pumped_hydro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/pumped_hydro.py -------------------------------------------------------------------------------- /switch_model/hawaii/register_hi_storage_reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/register_hi_storage_reserves.py -------------------------------------------------------------------------------- /switch_model/hawaii/reserves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/reserves.py -------------------------------------------------------------------------------- /switch_model/hawaii/rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/rps.py -------------------------------------------------------------------------------- /switch_model/hawaii/save_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/save_results.py -------------------------------------------------------------------------------- /switch_model/hawaii/scenario_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/scenario_data.py -------------------------------------------------------------------------------- /switch_model/hawaii/scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/scenarios.py -------------------------------------------------------------------------------- /switch_model/hawaii/smooth_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/smooth_dispatch.py -------------------------------------------------------------------------------- /switch_model/hawaii/smooth_dispatch_quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/smooth_dispatch_quadratic.py -------------------------------------------------------------------------------- /switch_model/hawaii/switch_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/switch_patch.py -------------------------------------------------------------------------------- /switch_model/hawaii/unserved_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/unserved_load.py -------------------------------------------------------------------------------- /switch_model/hawaii/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/hawaii/util.py -------------------------------------------------------------------------------- /switch_model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/main.py -------------------------------------------------------------------------------- /switch_model/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/policies/carbon_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/policies/carbon_policies.py -------------------------------------------------------------------------------- /switch_model/policies/rps_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/policies/rps_simple.py -------------------------------------------------------------------------------- /switch_model/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/reporting/__init__.py -------------------------------------------------------------------------------- /switch_model/reporting/basic_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/reporting/basic_exports.py -------------------------------------------------------------------------------- /switch_model/reporting/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/reporting/dump.py -------------------------------------------------------------------------------- /switch_model/reporting/example_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/reporting/example_export.py -------------------------------------------------------------------------------- /switch_model/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/solve.py -------------------------------------------------------------------------------- /switch_model/solve_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/solve_scenarios.py -------------------------------------------------------------------------------- /switch_model/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/test.py -------------------------------------------------------------------------------- /switch_model/timescales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/timescales.py -------------------------------------------------------------------------------- /switch_model/transmission/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switch_model/transmission/copperplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/transmission/copperplate.py -------------------------------------------------------------------------------- /switch_model/transmission/local_td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/transmission/local_td.py -------------------------------------------------------------------------------- /switch_model/transmission/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/transmission/transport/__init__.py -------------------------------------------------------------------------------- /switch_model/transmission/transport/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/transmission/transport/build.py -------------------------------------------------------------------------------- /switch_model/transmission/transport/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/transmission/transport/dispatch.py -------------------------------------------------------------------------------- /switch_model/upgrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/__init__.py -------------------------------------------------------------------------------- /switch_model/upgrade/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/manager.py -------------------------------------------------------------------------------- /switch_model/upgrade/re_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/re_upgrade.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_0b1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_0b1.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_0b2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_0b2.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_0b4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_0b4.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_1.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_4.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_5.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_6.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_7.py -------------------------------------------------------------------------------- /switch_model/upgrade/upgrade_2_0_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/upgrade/upgrade_2_0_9.py -------------------------------------------------------------------------------- /switch_model/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/utilities.py -------------------------------------------------------------------------------- /switch_model/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/switch_model/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/examples_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/examples_test.py -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/balancing_areas.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/balancing_areas.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/fuel_supply_curves.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/fuel_supply_curves.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/load_zones.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/load_zones.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/lz_balancing_areas.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/lz_balancing_areas.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/lz_fuel_cost_diff.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/lz_fuel_cost_diff.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/lz_peak_loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/lz_peak_loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/modules.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/regional_fuel_markets.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/regional_fuel_markets.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/transmission_lines.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/transmission_lines.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/inputs/variable_capacity_factors.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy/inputs/variable_capacity_factors.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 134733088.429 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/financials.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuel_supply_curves.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuel_supply_curves.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/fuels.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/load_zones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/load_zones.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/loads.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/modules.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Wind 3 | Solar 4 | Geothermal 5 | Water 6 | Electricity 7 | -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/periods.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/timepoints.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/timeseries.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/trans_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/trans_params.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/transmission_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/transmission_lines.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/inputs/zone_fuel_cost_diff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/3zone_toy_2_0_6/inputs/zone_fuel_cost_diff.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/3zone_toy_2_0_6/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 134733088.42929107 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/README.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/load_zones.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE cost_multipliers ccs_distance_km dbid 2 | South 1 0 3 -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | project.no_commit 2 | fuel_cost 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate0/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate0/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 18504623.6857 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/fuel_supply_curves.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/fuel_supply_curves.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/load_zones.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/load_zones.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | local_td 2 | project.no_commit 3 | fuel_markets 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/regional_fuel_markets.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/regional_fuel_markets.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/copperplate1/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/copperplate1/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34182745.1581 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/load_zones.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE cost_multipliers ccs_distance_km dbid 2 | South 1 0 3 -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/modules.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 25508464.8913 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/custom_extension/sunk_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/custom_extension/sunk_costs.py -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/hydro_timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/hydro_timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/load_zones.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE cost_multipliers ccs_distance_km dbid 2 | South 1 0 3 -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | project.no_commit 2 | fuel_cost 3 | generators.hydro_simple 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | Water 5 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_simple/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_simple/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 27519709.7687 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/hydro_projects.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/hydro_projects.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/load_zones.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE cost_multipliers ccs_distance_km dbid 2 | Unique . . 1 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | project.no_commit 2 | fuel_cost 3 | generators.hydro_system 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Water 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/reservoirs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/reservoirs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/water_connections.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/water_connections.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/water_node_tp_flows.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/water_node_tp_flows.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/inputs/water_nodes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/hydro_system/inputs/water_nodes.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/hydro_system/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 8116934.47803 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/4plants/inputs/lz_peak_loads.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE PERIOD peak_demand_mw 2 | South 2010 10 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/4plants/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | local_td 2 | project.no_commit 3 | fuel_cost 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/4plants/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/4plants/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/4plants/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34328152.2273 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/discrete_unit_commit/inputs/lz_peak_loads.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE PERIOD peak_demand_mw 2 | South 2010 10 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/discrete_unit_commit/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/discrete_unit_commit/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/discrete_unit_commit/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34524511.6092 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/unit_commit/inputs/lz_peak_loads.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE PERIOD peak_demand_mw 2 | South 2010 10 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/unit_commit/inputs/modules.txt: -------------------------------------------------------------------------------- 1 | local_td 2 | project.unitcommit 3 | fuel_cost 4 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/unit_commit/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Geothermal 3 | Solar -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/unit_commit/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/production_cost_models/unit_commit/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 34503472.2858 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/financials.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/financials.dat -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/fuel_cost.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/fuel_cost.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/fuels.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/fuels.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/gen_new_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/gen_new_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/generator_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/generator_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/load_zones.tab: -------------------------------------------------------------------------------- 1 | LOAD_ZONE cost_multipliers ccs_distance_km dbid 2 | South 1 0 3 -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/loads.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/loads.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/modules.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/non_fuel_energy_sources.tab: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | Electricity -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/periods.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/periods.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/proj_build_costs.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/proj_build_costs.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/proj_existing_builds.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/proj_existing_builds.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/project_info.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/project_info.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0b0 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/timepoints.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/timepoints.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/timeseries.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/timeseries.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/inputs/variable_capacity_factors.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage/inputs/variable_capacity_factors.tab -------------------------------------------------------------------------------- /tests/upgrade_dat/storage/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 24484908.913 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/financials.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/fuel_cost.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/fuel_cost.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/fuels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/fuels.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/gen_build_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/gen_build_costs.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/gen_build_predetermined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/gen_build_predetermined.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/load_zones.csv: -------------------------------------------------------------------------------- 1 | LOAD_ZONE,cost_multipliers,ccs_distance_km,dbid 2 | South,1,0,3 3 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/loads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/loads.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/modules.txt -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/non_fuel_energy_sources.csv: -------------------------------------------------------------------------------- 1 | energy_source 2 | Solar 3 | Geothermal 4 | Electricity 5 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/periods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/periods.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/switch_inputs_version.txt: -------------------------------------------------------------------------------- 1 | 2.0.6 2 | -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/timepoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/timepoints.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/inputs/timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_dat/storage_206/inputs/timeseries.csv -------------------------------------------------------------------------------- /tests/upgrade_dat/storage_206/outputs/total_cost.txt: -------------------------------------------------------------------------------- 1 | 24484908.913032416 2 | -------------------------------------------------------------------------------- /tests/upgrade_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/upgrade_test.py -------------------------------------------------------------------------------- /tests/utilities_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/tests/utilities_test.py -------------------------------------------------------------------------------- /updates201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates201.txt -------------------------------------------------------------------------------- /updates203.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /updates204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates204.txt -------------------------------------------------------------------------------- /updates205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates205.txt -------------------------------------------------------------------------------- /updates206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates206.txt -------------------------------------------------------------------------------- /updates207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates207.txt -------------------------------------------------------------------------------- /updates208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates208.txt -------------------------------------------------------------------------------- /updates209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-model/switch/HEAD/updates209.txt --------------------------------------------------------------------------------