GridPath 0.16.0b1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- GridPath-0.16.0b1/GridPath.egg-info/PKG-INFO +138 -0
- GridPath-0.16.0b1/GridPath.egg-info/SOURCES.txt +633 -0
- GridPath-0.16.0b1/GridPath.egg-info/dependency_links.txt +1 -0
- GridPath-0.16.0b1/GridPath.egg-info/entry_points.txt +13 -0
- GridPath-0.16.0b1/GridPath.egg-info/requires.txt +43 -0
- GridPath-0.16.0b1/GridPath.egg-info/top_level.txt +5 -0
- GridPath-0.16.0b1/LICENSE.md +201 -0
- GridPath-0.16.0b1/MANIFEST.in +2 -0
- GridPath-0.16.0b1/PKG-INFO +138 -0
- GridPath-0.16.0b1/README.md +84 -0
- GridPath-0.16.0b1/db/__init__.py +115 -0
- GridPath-0.16.0b1/db/common_functions.py +161 -0
- GridPath-0.16.0b1/db/create_database.py +500 -0
- GridPath-0.16.0b1/db/csvs_test_examples/__init__.py +0 -0
- GridPath-0.16.0b1/db/csvs_test_examples/project/__init__.py +0 -0
- GridPath-0.16.0b1/db/db_schema.sql +5911 -0
- GridPath-0.16.0b1/db/utilities/__init__.py +0 -0
- GridPath-0.16.0b1/db/utilities/common_functions.py +1292 -0
- GridPath-0.16.0b1/db/utilities/create_project_files.py +145 -0
- GridPath-0.16.0b1/db/utilities/custom_functions.py +111 -0
- GridPath-0.16.0b1/db/utilities/port_csvs_to_db.py +492 -0
- GridPath-0.16.0b1/db/utilities/scenario.py +438 -0
- GridPath-0.16.0b1/gridpath/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/auxiliary/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/auxiliary/auxiliary.py +210 -0
- GridPath-0.16.0b1/gridpath/auxiliary/db_interface.py +299 -0
- GridPath-0.16.0b1/gridpath/auxiliary/dynamic_components.py +162 -0
- GridPath-0.16.0b1/gridpath/auxiliary/import_export_rules.py +77 -0
- GridPath-0.16.0b1/gridpath/auxiliary/module_list.py +709 -0
- GridPath-0.16.0b1/gridpath/auxiliary/plugins/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/auxiliary/plugins/common_functions.py +38 -0
- GridPath-0.16.0b1/gridpath/auxiliary/plugins/cplex_solve.py +46 -0
- GridPath-0.16.0b1/gridpath/auxiliary/plugins/gurobi_solve.py +63 -0
- GridPath-0.16.0b1/gridpath/auxiliary/scenario_chars.py +269 -0
- GridPath-0.16.0b1/gridpath/auxiliary/validations.py +960 -0
- GridPath-0.16.0b1/gridpath/common_functions.py +400 -0
- GridPath-0.16.0b1/gridpath/geography/__init__.py +18 -0
- GridPath-0.16.0b1/gridpath/geography/carbon_cap_zones.py +134 -0
- GridPath-0.16.0b1/gridpath/geography/carbon_credits_zones.py +132 -0
- GridPath-0.16.0b1/gridpath/geography/carbon_tax_zones.py +135 -0
- GridPath-0.16.0b1/gridpath/geography/energy_target_zones.py +137 -0
- GridPath-0.16.0b1/gridpath/geography/frequency_response_balancing_areas.py +146 -0
- GridPath-0.16.0b1/gridpath/geography/fuel_burn_limit_balancing_areas.py +179 -0
- GridPath-0.16.0b1/gridpath/geography/load_following_down_balancing_areas.py +144 -0
- GridPath-0.16.0b1/gridpath/geography/load_following_up_balancing_areas.py +144 -0
- GridPath-0.16.0b1/gridpath/geography/load_zones.py +171 -0
- GridPath-0.16.0b1/gridpath/geography/local_capacity_zones.py +148 -0
- GridPath-0.16.0b1/gridpath/geography/markets.py +121 -0
- GridPath-0.16.0b1/gridpath/geography/performance_standard_zones.py +139 -0
- GridPath-0.16.0b1/gridpath/geography/prm_zones.py +130 -0
- GridPath-0.16.0b1/gridpath/geography/regulation_down_balancing_areas.py +144 -0
- GridPath-0.16.0b1/gridpath/geography/regulation_up_balancing_areas.py +143 -0
- GridPath-0.16.0b1/gridpath/geography/spinning_reserves_balancing_areas.py +148 -0
- GridPath-0.16.0b1/gridpath/geography/transmission_target_zones.py +135 -0
- GridPath-0.16.0b1/gridpath/get_scenario_inputs.py +526 -0
- GridPath-0.16.0b1/gridpath/import_scenario_results.py +338 -0
- GridPath-0.16.0b1/gridpath/objective/__init__.py +18 -0
- GridPath-0.16.0b1/gridpath/objective/max_npv.py +174 -0
- GridPath-0.16.0b1/gridpath/objective/project/__init__.py +17 -0
- GridPath-0.16.0b1/gridpath/objective/project/aggregate_capacity_costs.py +71 -0
- GridPath-0.16.0b1/gridpath/objective/project/aggregate_operational_costs.py +212 -0
- GridPath-0.16.0b1/gridpath/objective/project/aggregate_operational_tuning_costs.py +63 -0
- GridPath-0.16.0b1/gridpath/objective/project/aggregate_prm_group_costs.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/__init__.py +17 -0
- GridPath-0.16.0b1/gridpath/objective/system/aggregate_load_balance_penalties.py +92 -0
- GridPath-0.16.0b1/gridpath/objective/system/aggregate_market_revenue_and_costs.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_cap_violation_penalties.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_credit_sales.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_tax_costs.py +53 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_fuel_burn_limit_violation_penalties.py +108 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_horizon_energy_target_violation_penalties.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_performance_standard_violation_penalties.py +63 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_period_energy_target_violation_penalties.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_period_transmission_target_violation_penalties.py +61 -0
- GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_subsidies.py +64 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/local_capacity/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/local_capacity/aggregate_local_capacity_violation_penalties.py +53 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/aggregate_capacity_transfer_costs.py +51 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/aggregate_prm_violation_penalties.py +51 -0
- GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/dynamic_elcc_tuning_penalties.py +221 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/aggregate_reserve_violation_penalties.py +74 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/frequency_response.py +75 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/lf_reserves_down.py +48 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/lf_reserves_up.py +48 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/regulation_down.py +48 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/regulation_up.py +46 -0
- GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/spinning_reserves.py +48 -0
- GridPath-0.16.0b1/gridpath/objective/transmission/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_capacity_costs.py +71 -0
- GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_export_penalty_costs.py +58 -0
- GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_hurdle_costs.py +60 -0
- GridPath-0.16.0b1/gridpath/objective/transmission/carbon_imports_tuning_costs.py +224 -0
- GridPath-0.16.0b1/gridpath/process_results.py +124 -0
- GridPath-0.16.0b1/gridpath/project/__init__.py +593 -0
- GridPath-0.16.0b1/gridpath/project/availability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/project/availability/availability.py +298 -0
- GridPath-0.16.0b1/gridpath/project/availability/availability_types/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/project/availability/availability_types/binary.py +575 -0
- GridPath-0.16.0b1/gridpath/project/availability/availability_types/continuous.py +582 -0
- GridPath-0.16.0b1/gridpath/project/availability/availability_types/exogenous.py +348 -0
- GridPath-0.16.0b1/gridpath/project/capacity/__init__.py +52 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity.py +416 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_groups.py +625 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/__init__.py +153 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/common_methods.py +452 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/dr_new.py +713 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/fuel_prod_new.py +879 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/fuel_prod_spec.py +375 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_new_bin.py +803 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_new_lin.py +708 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_ret_bin.py +472 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_ret_lin.py +538 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_spec.py +302 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_stor_hyb_spec.py +427 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_new_bin.py +907 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_new_lin.py +937 -0
- GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_spec.py +351 -0
- GridPath-0.16.0b1/gridpath/project/capacity/common_functions.py +17 -0
- GridPath-0.16.0b1/gridpath/project/capacity/costs.py +271 -0
- GridPath-0.16.0b1/gridpath/project/capacity/potential.py +713 -0
- GridPath-0.16.0b1/gridpath/project/capacity/relative_capacity.py +387 -0
- GridPath-0.16.0b1/gridpath/project/common_functions.py +166 -0
- GridPath-0.16.0b1/gridpath/project/consolidate_results.py +53 -0
- GridPath-0.16.0b1/gridpath/project/fuels.py +383 -0
- GridPath-0.16.0b1/gridpath/project/operations/__init__.py +1585 -0
- GridPath-0.16.0b1/gridpath/project/operations/cap_factor_limits.py +273 -0
- GridPath-0.16.0b1/gridpath/project/operations/carbon_cap.py +293 -0
- GridPath-0.16.0b1/gridpath/project/operations/carbon_credits.py +455 -0
- GridPath-0.16.0b1/gridpath/project/operations/carbon_emissions.py +158 -0
- GridPath-0.16.0b1/gridpath/project/operations/carbon_tax.py +646 -0
- GridPath-0.16.0b1/gridpath/project/operations/common_functions.py +17 -0
- GridPath-0.16.0b1/gridpath/project/operations/costs.py +641 -0
- GridPath-0.16.0b1/gridpath/project/operations/cycle_select.py +164 -0
- GridPath-0.16.0b1/gridpath/project/operations/energy_target_contributions.py +501 -0
- GridPath-0.16.0b1/gridpath/project/operations/fix_commitment.py +342 -0
- GridPath-0.16.0b1/gridpath/project/operations/fuel_burn.py +657 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/__init__.py +458 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/common_functions.py +1002 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/dac.py +281 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/dr.py +284 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/flex_load.py +716 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/fuel_prod.py +563 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_always_on.py +750 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_bin.py +323 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_cap.py +1555 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_lin.py +297 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_unit_common.py +3811 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_hydro.py +968 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_hydro_must_take.py +877 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_must_run.py +388 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_simple.py +632 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var.py +637 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var_must_take.py +382 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var_stor_hyb.py +959 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/opchar_param_requirements.csv +19 -0
- GridPath-0.16.0b1/gridpath/project/operations/operational_types/stor.py +1007 -0
- GridPath-0.16.0b1/gridpath/project/operations/performance_standard.py +327 -0
- GridPath-0.16.0b1/gridpath/project/operations/power.py +331 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/frequency_response.py +362 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/lf_reserves_down.py +268 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/lf_reserves_up.py +269 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/frequency_response.py +201 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/lf_reserves_down.py +200 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/lf_reserves_up.py +200 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/regulation_down.py +200 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/regulation_up.py +200 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/reserve_limits_by_op_type.py +160 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/spinning_reserves.py +200 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/regulation_down.py +266 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/regulation_up.py +269 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/reserve_provision.py +601 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/spinning_reserves.py +268 -0
- GridPath-0.16.0b1/gridpath/project/operations/reserves/subhourly_energy_adjustment.py +114 -0
- GridPath-0.16.0b1/gridpath/project/operations/supplemental_firing.py +175 -0
- GridPath-0.16.0b1/gridpath/project/operations/tuning_costs.py +362 -0
- GridPath-0.16.0b1/gridpath/project/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/project/reliability/local_capacity/__init__.py +228 -0
- GridPath-0.16.0b1/gridpath/project/reliability/local_capacity/local_capacity_contribution.py +243 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/__init__.py +269 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/common_functions.py +19 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/elcc_surface.py +483 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/group_costs.py +828 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_simple.py +283 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/__init__.py +322 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/energy_only_allowed.py +267 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/fully_deliverable.py +50 -0
- GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/fully_deliverable_energy_limited.py +272 -0
- GridPath-0.16.0b1/gridpath/run_end_to_end.py +521 -0
- GridPath-0.16.0b1/gridpath/run_scenario.py +1406 -0
- GridPath-0.16.0b1/gridpath/run_scenario_parallel.py +102 -0
- GridPath-0.16.0b1/gridpath/system/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/__init__.py +81 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_market_participation.py +97 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_project_power.py +102 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_transmission_power.py +130 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/load_balance.py +216 -0
- GridPath-0.16.0b1/gridpath/system/load_balance/static_load_requirement.py +201 -0
- GridPath-0.16.0b1/gridpath/system/markets/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/markets/fix_market_participation.py +85 -0
- GridPath-0.16.0b1/gridpath/system/markets/market_participation.py +351 -0
- GridPath-0.16.0b1/gridpath/system/markets/prices.py +124 -0
- GridPath-0.16.0b1/gridpath/system/markets/volume.py +209 -0
- GridPath-0.16.0b1/gridpath/system/policy/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/aggregate_project_carbon_emissions.py +101 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/aggregate_transmission_carbon_emissions.py +148 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/carbon_balance.py +138 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/carbon_cap.py +184 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/purchase_credits.py +173 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/__init__.py +75 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_carbon_cap_zone_purchases.py +88 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_carbon_tax_zone_purchases.py +88 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_performance_standard_zone_purchases.py +92 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_project_carbon_credits.py +103 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/carbon_credits_balance.py +100 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/sell_credits.py +190 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/aggregate_project_carbon_emissions.py +135 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/carbon_tax.py +147 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/carbon_tax_costs.py +90 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/purchase_credits.py +182 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/__init__.py +127 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/aggregate_horizon_energy_target_contributions.py +128 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/aggregate_period_energy_target_contributions.py +124 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/consolidate_results.py +54 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/horizon_energy_target.py +284 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/horizon_energy_target_balance.py +226 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/period_energy_target.py +283 -0
- GridPath-0.16.0b1/gridpath/system/policy/energy_targets/period_energy_target_balance.py +222 -0
- GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/__init__.py +85 -0
- GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/aggregate_project_fuel_burn.py +230 -0
- GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/fuel_burn_limit_balance.py +309 -0
- GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/fuel_burn_limits.py +252 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/aggregate_project_performance_standard.py +130 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/performance_standard.py +197 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/performance_standard_balance.py +133 -0
- GridPath-0.16.0b1/gridpath/system/policy/performance_standard/purchase_credits.py +178 -0
- GridPath-0.16.0b1/gridpath/system/policy/subsidies.py +453 -0
- GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/aggregate_period_transmission_target_contributions.py +119 -0
- GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/period_transmission_target.py +225 -0
- GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/period_transmission_target_balance.py +159 -0
- GridPath-0.16.0b1/gridpath/system/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/aggregate_local_capacity_contribution.py +104 -0
- GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/local_capacity_balance.py +136 -0
- GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/local_capacity_requirement.py +189 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/__init__.py +74 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/aggregate_project_simple_prm_contribution.py +94 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/capacity_contribution_transfers.py +538 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/consolidate_results.py +37 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/elcc_surface.py +282 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/prm_balance.py +127 -0
- GridPath-0.16.0b1/gridpath/system/reliability/prm/prm_requirement.py +187 -0
- GridPath-0.16.0b1/gridpath/system/reserves/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/frequency_response.py +57 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/lf_reserves_down.py +35 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/lf_reserves_up.py +35 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/regulation_down.py +35 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/regulation_up.py +35 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/reserve_aggregation.py +68 -0
- GridPath-0.16.0b1/gridpath/system/reserves/aggregation/spinning_reserves.py +35 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/frequency_response.py +140 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/lf_reserves_down.py +97 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/lf_reserves_up.py +98 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/regulation_down.py +98 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/regulation_up.py +98 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/reserve_balance.py +210 -0
- GridPath-0.16.0b1/gridpath/system/reserves/balance/spinning_reserves.py +98 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/frequency_response.py +144 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/lf_reserves_down.py +126 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/lf_reserves_up.py +125 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/regulation_down.py +125 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/regulation_up.py +125 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/reserve_requirements.py +473 -0
- GridPath-0.16.0b1/gridpath/system/reserves/requirement/spinning_reserves.py +125 -0
- GridPath-0.16.0b1/gridpath/temporal/__init__.py +39 -0
- GridPath-0.16.0b1/gridpath/temporal/finalize.py +70 -0
- GridPath-0.16.0b1/gridpath/temporal/investment/__init__.py +18 -0
- GridPath-0.16.0b1/gridpath/temporal/investment/periods.py +423 -0
- GridPath-0.16.0b1/gridpath/temporal/investment/superperiods.py +148 -0
- GridPath-0.16.0b1/gridpath/temporal/operations/__init__.py +18 -0
- GridPath-0.16.0b1/gridpath/temporal/operations/horizons.py +600 -0
- GridPath-0.16.0b1/gridpath/temporal/operations/timepoints.py +431 -0
- GridPath-0.16.0b1/gridpath/transmission/__init__.py +490 -0
- GridPath-0.16.0b1/gridpath/transmission/availability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/transmission/availability/availability.py +261 -0
- GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/exogenous.py +329 -0
- GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/exogenous_monthly.py +305 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/__init__.py +45 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/capacity.py +348 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_groups.py +420 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/__init__.py +219 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/tx_new_lin.py +901 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/tx_spec.py +344 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/common_functions.py +19 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/consolidate_results.py +42 -0
- GridPath-0.16.0b1/gridpath/transmission/capacity/costs.py +400 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/__init__.py +39 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/carbon_emissions.py +440 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/common_functions.py +20 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/consolidate_results.py +38 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/export_penalty_costs.py +47 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/hurdle_costs.py +476 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/__init__.py +286 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_dcopf.py +556 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_simple.py +412 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_simple_binary.py +497 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/operations.py +338 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/simultaneous_flow_limits.py +470 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/transmission_flow_limits.py +355 -0
- GridPath-0.16.0b1/gridpath/transmission/operations/transmission_target_contributions.py +458 -0
- GridPath-0.16.0b1/gridpath/transmission/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/gridpath/transmission/reliability/capacity_transfer_links.py +145 -0
- GridPath-0.16.0b1/gridpath/validate_inputs.py +445 -0
- GridPath-0.16.0b1/setup.cfg +4 -0
- GridPath-0.16.0b1/setup.py +82 -0
- GridPath-0.16.0b1/tests/__init__.py +0 -0
- GridPath-0.16.0b1/tests/auxiliary/__init__.py +0 -0
- GridPath-0.16.0b1/tests/auxiliary/test_auxiliary.py +96 -0
- GridPath-0.16.0b1/tests/auxiliary/test_validations.py +1067 -0
- GridPath-0.16.0b1/tests/common_functions.py +104 -0
- GridPath-0.16.0b1/tests/geography/__init__.py +0 -0
- GridPath-0.16.0b1/tests/geography/test_carbon_cap_zones.py +124 -0
- GridPath-0.16.0b1/tests/geography/test_carbon_credits_zones.py +99 -0
- GridPath-0.16.0b1/tests/geography/test_carbon_tax_zones.py +99 -0
- GridPath-0.16.0b1/tests/geography/test_energy_target_zones.py +124 -0
- GridPath-0.16.0b1/tests/geography/test_frequency_response_balancing_areas.py +116 -0
- GridPath-0.16.0b1/tests/geography/test_fuel_burn_limit_balancing_areas.py +231 -0
- GridPath-0.16.0b1/tests/geography/test_load_following_down_balancing_areas.py +116 -0
- GridPath-0.16.0b1/tests/geography/test_load_following_up_balancing_areas.py +114 -0
- GridPath-0.16.0b1/tests/geography/test_load_zones.py +211 -0
- GridPath-0.16.0b1/tests/geography/test_local_capacity_zones.py +97 -0
- GridPath-0.16.0b1/tests/geography/test_markets.py +95 -0
- GridPath-0.16.0b1/tests/geography/test_performance_standard_zones.py +126 -0
- GridPath-0.16.0b1/tests/geography/test_prm_zones.py +95 -0
- GridPath-0.16.0b1/tests/geography/test_regulation_down_balancing_areas.py +116 -0
- GridPath-0.16.0b1/tests/geography/test_regulation_up_balancing_areas.py +116 -0
- GridPath-0.16.0b1/tests/geography/test_spinning_reserves_balancing_areas.py +116 -0
- GridPath-0.16.0b1/tests/geography/test_transmission_target_zones.py +116 -0
- GridPath-0.16.0b1/tests/objective/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/project/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/project/test_aggregate_capacity_costs.py +99 -0
- GridPath-0.16.0b1/tests/objective/project/test_aggregate_operational_costs.py +105 -0
- GridPath-0.16.0b1/tests/objective/project/test_aggregate_operational_tuning_costs.py +104 -0
- GridPath-0.16.0b1/tests/objective/project/test_aggregate_prm_group_costs.py +102 -0
- GridPath-0.16.0b1/tests/objective/system/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/system/policy/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_carbon_cap_violation_penalties.py +102 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_carbon_tax_costs.py +112 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_fuel_burn_limit_violation_penalties.py +112 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_horizon_energy_target_violation_penalties.py +114 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_performance_standard_violation_penalties.py +114 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_period_energy_target_violation_penalties.py +114 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_period_transmission_target_violation_penalties.py +113 -0
- GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_subsidies.py +110 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_frequency_response.py +123 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_lf_reserves_down.py +124 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_lf_reserves_up.py +126 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_regulation_down.py +123 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_regulation_up.py +123 -0
- GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_spinning_reserves.py +123 -0
- GridPath-0.16.0b1/tests/objective/system/test_aggregate_load_balance_penalties.py +97 -0
- GridPath-0.16.0b1/tests/objective/system/test_aggregate_market_revenue_and_costs.py +100 -0
- GridPath-0.16.0b1/tests/objective/test_max_npv.py +63 -0
- GridPath-0.16.0b1/tests/objective/transmission/__init__.py +0 -0
- GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_capacity_costs.py +70 -0
- GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_export_penalty_costs.py +103 -0
- GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_hurdle_costs.py +102 -0
- GridPath-0.16.0b1/tests/objective/transmission/test_carbon_imports_tuning_costs.py +109 -0
- GridPath-0.16.0b1/tests/project/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/availability/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/availability/availability_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/availability/availability_types/common_functions.py +46 -0
- GridPath-0.16.0b1/tests/project/availability/availability_types/test_binary.py +163 -0
- GridPath-0.16.0b1/tests/project/availability/availability_types/test_continuous.py +163 -0
- GridPath-0.16.0b1/tests/project/availability/availability_types/test_exogenous.py +179 -0
- GridPath-0.16.0b1/tests/project/availability/test_availability.py +100 -0
- GridPath-0.16.0b1/tests/project/capacity/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_common_methods.py +208 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_dr_new.py +189 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_fuel_prod_new.py +330 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_fuel_prod_spec.py +199 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_new_bin.py +277 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_new_lin.py +301 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_ret_bin.py +151 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_ret_lin.py +148 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_spec.py +255 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_stor_hyb_spec.py +281 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_new_bin.py +344 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_new_lin.py +330 -0
- GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_spec.py +162 -0
- GridPath-0.16.0b1/tests/project/capacity/test_capacity.py +294 -0
- GridPath-0.16.0b1/tests/project/capacity/test_capacity_groups.py +164 -0
- GridPath-0.16.0b1/tests/project/capacity/test_costs.py +98 -0
- GridPath-0.16.0b1/tests/project/capacity/test_potentials.py +281 -0
- GridPath-0.16.0b1/tests/project/capacity/test_relative_capacity.py +179 -0
- GridPath-0.16.0b1/tests/project/operations/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/operations/common_functions.py +131 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_common_functions.py +291 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_dac.py +136 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_dr.py +137 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_flex_load.py +172 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_fuel_prod.py +128 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_always_on.py +173 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_bin.py +322 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_cap.py +322 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_lin.py +377 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_hydro.py +210 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_hydro_must_take.py +210 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_must_run.py +136 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_simple.py +158 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var.py +141 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var_must_take.py +142 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var_stor_hyb.py +165 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_init.py +102 -0
- GridPath-0.16.0b1/tests/project/operations/operational_types/test_stor.py +158 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_frequency_response.py +135 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_lf_reserves_down.py +135 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_lf_reserves_up.py +135 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_regulation_down.py +137 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_regulation_up.py +137 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_spinning_reserves.py +135 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_frequency_response.py +202 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_lf_reserves_down.py +193 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_lf_reserves_up.py +193 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_regulation_down.py +199 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_regulation_up.py +199 -0
- GridPath-0.16.0b1/tests/project/operations/reserves/test_spinning_reserves.py +193 -0
- GridPath-0.16.0b1/tests/project/operations/test_cap_factor_limits.py +127 -0
- GridPath-0.16.0b1/tests/project/operations/test_carbon_cap.py +206 -0
- GridPath-0.16.0b1/tests/project/operations/test_carbon_credits.py +175 -0
- GridPath-0.16.0b1/tests/project/operations/test_carbon_emissions.py +80 -0
- GridPath-0.16.0b1/tests/project/operations/test_carbon_tax.py +406 -0
- GridPath-0.16.0b1/tests/project/operations/test_costs.py +288 -0
- GridPath-0.16.0b1/tests/project/operations/test_cycle_select.py +158 -0
- GridPath-0.16.0b1/tests/project/operations/test_energy_target_contributions.py +156 -0
- GridPath-0.16.0b1/tests/project/operations/test_fix_commitment.py +502 -0
- GridPath-0.16.0b1/tests/project/operations/test_fuel_burn.py +334 -0
- GridPath-0.16.0b1/tests/project/operations/test_init.py +1174 -0
- GridPath-0.16.0b1/tests/project/operations/test_performance_standard.py +180 -0
- GridPath-0.16.0b1/tests/project/operations/test_power.py +83 -0
- GridPath-0.16.0b1/tests/project/operations/test_supplemental_firing.py +155 -0
- GridPath-0.16.0b1/tests/project/operations/test_tuning_costs.py +106 -0
- GridPath-0.16.0b1/tests/project/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/reliability/local_capacity/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/reliability/local_capacity/test_init.py +256 -0
- GridPath-0.16.0b1/tests/project/reliability/local_capacity/test_local_capacity_contribution.py +137 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_energy_only_allowed.py +118 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_fully_deliverable.py +132 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_fully_deliverable_energy_limited.py +139 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_init.py +101 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/test_elcc_surface.py +344 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/test_group_costs.py +370 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/test_init.py +303 -0
- GridPath-0.16.0b1/tests/project/reliability/prm/test_prm_simple.py +165 -0
- GridPath-0.16.0b1/tests/project/test_fuels.py +188 -0
- GridPath-0.16.0b1/tests/project/test_init.py +169 -0
- GridPath-0.16.0b1/tests/system/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/load_balance/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_market_participation.py +98 -0
- GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_project_power.py +84 -0
- GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_transmission_power.py +103 -0
- GridPath-0.16.0b1/tests/system/load_balance/test_load_balance.py +91 -0
- GridPath-0.16.0b1/tests/system/load_balance/test_static_load_requirement.py +114 -0
- GridPath-0.16.0b1/tests/system/markets/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/markets/test_market_participation.py +156 -0
- GridPath-0.16.0b1/tests/system/markets/test_prices.py +122 -0
- GridPath-0.16.0b1/tests/system/markets/test_volume.py +184 -0
- GridPath-0.16.0b1/tests/system/policy/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_aggregate_project_carbon_emissions.py +112 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_aggregate_transmission_carbon_emissions.py +110 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_carbon_balance.py +120 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_carbon_cap.py +133 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_purchase_credits.py +115 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/__init__.py +75 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_carbon_cap_zone_purchases.py +103 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_carbon_tax_zone_purchases.py +103 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_performance_standard_zone_purchases.py +103 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_project_carbon_credits.py +111 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_carbon_credits_balance.py +98 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_sell_credits.py +98 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_tax/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_aggregate_project_carbon_emissions.py +112 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_carbon_tax.py +133 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_carbon_tax_costs.py +111 -0
- GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_purchase_credits.py +115 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/test_aggregate_horizon_energy_target_contributions.py +111 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/test_aggregate_period_energy_target_contributions.py +111 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/test_horizon_energy_target.py +186 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/test_period_energy_target.py +174 -0
- GridPath-0.16.0b1/tests/system/policy/energy_targets/test_period_energy_target_balance.py +112 -0
- GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_aggregate_project_fuel_burn.py +165 -0
- GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_fuel_burn_limit_balance.py +109 -0
- GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_fuel_burn_limits.py +353 -0
- GridPath-0.16.0b1/tests/system/policy/test_subsidies.py +238 -0
- GridPath-0.16.0b1/tests/system/policy/transmission_targets/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_aggregate_period_transmission_target_contributions.py +109 -0
- GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_period_transmission_target.py +170 -0
- GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_period_transmission_target_balance.py +112 -0
- GridPath-0.16.0b1/tests/system/reliability/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reliability/local_capacity/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_aggregate_local_capacity_contribution.py +106 -0
- GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_local_capacity_balance.py +121 -0
- GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_local_capacity_requirement.py +135 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/test_aggregate_project_simple_prm_contribution.py +107 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/test_capacity_contribution_transfers.py +175 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/test_elcc_surface.py +163 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/test_prm_balance.py +106 -0
- GridPath-0.16.0b1/tests/system/reliability/prm/test_prm_requirement.py +133 -0
- GridPath-0.16.0b1/tests/system/reserves/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_frequency_response.py +376 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_lf_reserves_down.py +251 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_lf_reserves_up.py +253 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_regulation_down.py +254 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_regulation_up.py +254 -0
- GridPath-0.16.0b1/tests/system/reserves/aggregation/test_spinning_reserves.py +250 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_frequency_response.py +106 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_lf_reserves_down.py +107 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_lf_reserves_up.py +109 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_regulation_down.py +106 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_regulation_up.py +106 -0
- GridPath-0.16.0b1/tests/system/reserves/balance/test_spinning_reserves.py +106 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/__init__.py +0 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_frequency_response.py +155 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_lf_reserves_down.py +157 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_lf_reserves_up.py +164 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_regulation_down.py +137 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_regulation_up.py +137 -0
- GridPath-0.16.0b1/tests/system/reserves/requirement/test_spinning_reserves.py +137 -0
- GridPath-0.16.0b1/tests/temporal/__init__.py +0 -0
- GridPath-0.16.0b1/tests/temporal/investment/__init__.py +0 -0
- GridPath-0.16.0b1/tests/temporal/investment/test_periods.py +250 -0
- GridPath-0.16.0b1/tests/temporal/investment/test_superperiods.py +112 -0
- GridPath-0.16.0b1/tests/temporal/operations/__init__.py +0 -0
- GridPath-0.16.0b1/tests/temporal/operations/test_horizons.py +321 -0
- GridPath-0.16.0b1/tests/temporal/operations/test_timepoints.py +185 -0
- GridPath-0.16.0b1/tests/test_create_database.py +29 -0
- GridPath-0.16.0b1/tests/test_examples.py +1285 -0
- GridPath-0.16.0b1/tests/test_run_scenario_parallel.py +37 -0
- GridPath-0.16.0b1/tests/test_viz.py +359 -0
- GridPath-0.16.0b1/tests/transmission/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/availability/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/availability/availability_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/availability/availability_types/test_exogenous.py +535 -0
- GridPath-0.16.0b1/tests/transmission/availability/availability_types/test_exogenous_monthly.py +145 -0
- GridPath-0.16.0b1/tests/transmission/availability/test_availability.py +100 -0
- GridPath-0.16.0b1/tests/transmission/capacity/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/test_tx_new_lin.py +245 -0
- GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/test_tx_spec.py +187 -0
- GridPath-0.16.0b1/tests/transmission/capacity/test_capacity.py +118 -0
- GridPath-0.16.0b1/tests/transmission/capacity/test_capacity_groups.py +142 -0
- GridPath-0.16.0b1/tests/transmission/capacity/test_costs.py +111 -0
- GridPath-0.16.0b1/tests/transmission/operations/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/operations/operational_types/__init__.py +0 -0
- GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_dcopf.py +642 -0
- GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_simple.py +226 -0
- GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_simple_binary.py +229 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_carbon_emissions.py +370 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_export_penalty_costs.py +102 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_hurdle_costs.py +157 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_operations.py +727 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_simultaneous_flow_limits.py +337 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_transmission_flow_limits.py +146 -0
- GridPath-0.16.0b1/tests/transmission/operations/test_transmission_target_contributions.py +242 -0
- GridPath-0.16.0b1/tests/transmission/test_init.py +173 -0
- GridPath-0.16.0b1/ui/__init__.py +0 -0
- GridPath-0.16.0b1/ui/server/__init__.py +0 -0
- GridPath-0.16.0b1/ui/server/api/__init__.py +0 -0
- GridPath-0.16.0b1/ui/server/api/home.py +78 -0
- GridPath-0.16.0b1/ui/server/api/scenario_detail.py +233 -0
- GridPath-0.16.0b1/ui/server/api/scenario_inputs.py +127 -0
- GridPath-0.16.0b1/ui/server/api/scenario_new.py +133 -0
- GridPath-0.16.0b1/ui/server/api/scenario_results.py +416 -0
- GridPath-0.16.0b1/ui/server/api/scenarios.py +46 -0
- GridPath-0.16.0b1/ui/server/api/view_data.py +95 -0
- GridPath-0.16.0b1/ui/server/common_functions.py +54 -0
- GridPath-0.16.0b1/ui/server/create_api.py +178 -0
- GridPath-0.16.0b1/ui/server/db_ops/__init__.py +0 -0
- GridPath-0.16.0b1/ui/server/db_ops/add_scenario.py +167 -0
- GridPath-0.16.0b1/ui/server/db_ops/delete_scenario.py +43 -0
- GridPath-0.16.0b1/ui/server/run_queue_manager.py +241 -0
- GridPath-0.16.0b1/ui/server/run_server.py +365 -0
- GridPath-0.16.0b1/ui/server/save_data.py +172 -0
- GridPath-0.16.0b1/ui/server/scenario_process.py +199 -0
- GridPath-0.16.0b1/ui/server/validate_scenario.py +30 -0
- GridPath-0.16.0b1/viz/__init__.py +0 -0
- GridPath-0.16.0b1/viz/capacity_factor_plot.py +320 -0
- GridPath-0.16.0b1/viz/capacity_new_plot.py +178 -0
- GridPath-0.16.0b1/viz/capacity_retired_plot.py +175 -0
- GridPath-0.16.0b1/viz/capacity_total_loadzone_comparison_plot.py +185 -0
- GridPath-0.16.0b1/viz/capacity_total_plot.py +180 -0
- GridPath-0.16.0b1/viz/capacity_total_scenario_comparison_plot.py +162 -0
- GridPath-0.16.0b1/viz/carbon_plot.py +341 -0
- GridPath-0.16.0b1/viz/common_functions.py +465 -0
- GridPath-0.16.0b1/viz/cost_plot.py +210 -0
- GridPath-0.16.0b1/viz/curtailment_hydro_heatmap_plot.py +309 -0
- GridPath-0.16.0b1/viz/curtailment_variable_heatmap_plot.py +309 -0
- GridPath-0.16.0b1/viz/dispatch_plot.py +738 -0
- GridPath-0.16.0b1/viz/energy_plot.py +175 -0
- GridPath-0.16.0b1/viz/energy_target_plot.py +336 -0
- GridPath-0.16.0b1/viz/project_operations_plot.py +464 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: GridPath
|
|
3
|
+
Version: 0.16.0b1
|
|
4
|
+
Summary: A versatile simulation and optimization platform for power-system planning and operations.
|
|
5
|
+
Home-page: https://www.gridpath.io
|
|
6
|
+
Maintainer: Blue Marble Analytics LLC
|
|
7
|
+
Maintainer-email: info@gridpath.io
|
|
8
|
+
License: Apache v2
|
|
9
|
+
Keywords: energy,electricity,power,renewables,planning,operations
|
|
10
|
+
Platform: MacOS
|
|
11
|
+
Platform: Windows
|
|
12
|
+
Platform: Linux
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE.md
|
|
15
|
+
Requires-Dist: Pyomo==6.5.0
|
|
16
|
+
Requires-Dist: pandas==2.1.1
|
|
17
|
+
Requires-Dist: bokeh==2.2.3
|
|
18
|
+
Requires-Dist: pscript==0.7.5
|
|
19
|
+
Requires-Dist: networkx==3.1
|
|
20
|
+
Requires-Dist: PyUtilib==6.0.0
|
|
21
|
+
Requires-Dist: Jinja2==3.0.3
|
|
22
|
+
Requires-Dist: dill==0.3.7
|
|
23
|
+
Requires-Dist: eventlet==0.33.3
|
|
24
|
+
Requires-Dist: Flask==2.0.1
|
|
25
|
+
Requires-Dist: Flask-RESTful==0.3.9
|
|
26
|
+
Requires-Dist: Flask-SocketIO==4.3.2
|
|
27
|
+
Requires-Dist: psutil==5.9.6
|
|
28
|
+
Requires-Dist: python-socketio[client]<5,>=4.3.0
|
|
29
|
+
Requires-Dist: Werkzeug==2.0.2
|
|
30
|
+
Requires-Dist: dnspython==2.4.2
|
|
31
|
+
Provides-Extra: doc
|
|
32
|
+
Requires-Dist: Sphinx==7.2.6; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx-argparse==0.4.0; extra == "doc"
|
|
34
|
+
Provides-Extra: all
|
|
35
|
+
Requires-Dist: eventlet==0.33.3; extra == "all"
|
|
36
|
+
Requires-Dist: Flask==2.0.1; extra == "all"
|
|
37
|
+
Requires-Dist: Flask-RESTful==0.3.9; extra == "all"
|
|
38
|
+
Requires-Dist: Flask-SocketIO==4.3.2; extra == "all"
|
|
39
|
+
Requires-Dist: psutil==5.9.6; extra == "all"
|
|
40
|
+
Requires-Dist: python-socketio[client]<5,>=4.3.0; extra == "all"
|
|
41
|
+
Requires-Dist: Werkzeug==2.0.2; extra == "all"
|
|
42
|
+
Requires-Dist: dnspython==2.4.2; extra == "all"
|
|
43
|
+
Requires-Dist: Sphinx==7.2.6; extra == "all"
|
|
44
|
+
Requires-Dist: sphinx-argparse==0.4.0; extra == "all"
|
|
45
|
+
Requires-Dist: black; extra == "all"
|
|
46
|
+
Requires-Dist: coverage; extra == "all"
|
|
47
|
+
Requires-Dist: coveralls; extra == "all"
|
|
48
|
+
Requires-Dist: gurobipy; extra == "all"
|
|
49
|
+
Provides-Extra: coverage
|
|
50
|
+
Requires-Dist: coverage; extra == "coverage"
|
|
51
|
+
Requires-Dist: coveralls; extra == "coverage"
|
|
52
|
+
Provides-Extra: gurobi
|
|
53
|
+
Requires-Dist: gurobipy; extra == "gurobi"
|
|
54
|
+
|
|
55
|
+
[](https://github.com/blue-marble/gridpath/actions/workflows/test_gridpath.yml)
|
|
56
|
+
[](https://gridpath.readthedocs.io/en/latest/?badge=latest)
|
|
57
|
+
[](https://coveralls.io/github/blue-marble/gridpath?branch=main)
|
|
58
|
+
[](https://github.com/psf/black)
|
|
59
|
+
[](https://github.com/blue-marble/gridpath/actions/workflows/black.yml)
|
|
60
|
+
[](https://zenodo.org/badge/latestdoi/65574330)
|
|
61
|
+
|
|
62
|
+
# Welcome to GridPath
|
|
63
|
+
|
|
64
|
+
<p align="center" width="100%">
|
|
65
|
+
<img src="https://github.com/blue-marble/gridpath/blob/main/doc/graphics/gridpath_logo.png?raw=true" width="20%"/>
|
|
66
|
+
</p>
|
|
67
|
+
|
|
68
|
+

|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
GridPath is a versatile power-system planning platform capable of a range of
|
|
72
|
+
planning approaches including production-cost, capacity-expansion,
|
|
73
|
+
asset-valuation, and reliability modeling.
|
|
74
|
+
|
|
75
|
+
# Documentation
|
|
76
|
+
GridPath's documentation is hosted on [Read the Docs](https://gridpath.readthedocs.io/en/latest/).
|
|
77
|
+
|
|
78
|
+
# Installation
|
|
79
|
+
|
|
80
|
+
## Python
|
|
81
|
+
GridPath is tested on Python 3.9, 3.10, and 3.11. Get one of those Python versions [here](https://www.python.org/downloads/ "Python download").
|
|
82
|
+
|
|
83
|
+
## GridPath Python environment
|
|
84
|
+
You should create a Python environment for your GridPath installation, e.g. via
|
|
85
|
+
`venv`, [a lightweight environment manager](https://docs.python.org/3/library/venv.html "venv")
|
|
86
|
+
that is part of the standard Python distribution. Make sure to [create](https://docs.python.org/3/library/venv.html#creating-virtual-environments "create") [activate](https://docs.python.org/3/library/venv.html#how-venvs-work "activate") the environment before installing GridPath.
|
|
87
|
+
|
|
88
|
+
## Install GridPath from PyPi
|
|
89
|
+
|
|
90
|
+
Once you have _created and activated_ the GridPath Python environment, you
|
|
91
|
+
can install the latest version of GridPath from PyPi with:
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
pip install GridPath
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Install GridPath from source
|
|
98
|
+
|
|
99
|
+
You can alternatively download the GridPath source code and install from
|
|
100
|
+
source.
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
pip install .[all]
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**NOTE:** If you plan to edit the GridPath code, you should install with the `-e` flag.
|
|
107
|
+
|
|
108
|
+
## Solver
|
|
109
|
+
You will need a solver to use this platform. GridPath assumes you will be using Cbc (Coin-or branch and cut) by default, but you can specify a
|
|
110
|
+
different solver.
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
# Usage
|
|
114
|
+
|
|
115
|
+
## The gridpath_run and gridpath_run_e2e commands
|
|
116
|
+
If you install GridPath via the setup script following the instructions above,
|
|
117
|
+
you can use the command `gridpath_run` to run a scenario from any directory
|
|
118
|
+
-- as long as your GridPath Python environment is enabled -- as follows:
|
|
119
|
+
```bash
|
|
120
|
+
gridpath_run --scenario SCENARIO_NAME --scenario_location
|
|
121
|
+
/PATH/TO/SCENARIO
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
If you are using the database, you can use the command `gridpath_run_e2e` to
|
|
125
|
+
run GridPath end-to-end, i.e. get inputs for the scenario from the database,
|
|
126
|
+
solve the scenario problem, import the results into the database, and
|
|
127
|
+
process them. Refer to the documentation for how to build the database.
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
gridpath_run_e2e --scenario SCENARIO_NAME --scenario_location
|
|
131
|
+
/PATH/TO/SCENARIO
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
To see usage and other optional arguments, e.g. how to specify a
|
|
135
|
+
solver, check the help menu, e.g.:
|
|
136
|
+
```bash
|
|
137
|
+
gridpath_run --help
|
|
138
|
+
```
|