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.
Files changed (635) hide show
  1. GridPath-0.16.0b1/GridPath.egg-info/PKG-INFO +138 -0
  2. GridPath-0.16.0b1/GridPath.egg-info/SOURCES.txt +633 -0
  3. GridPath-0.16.0b1/GridPath.egg-info/dependency_links.txt +1 -0
  4. GridPath-0.16.0b1/GridPath.egg-info/entry_points.txt +13 -0
  5. GridPath-0.16.0b1/GridPath.egg-info/requires.txt +43 -0
  6. GridPath-0.16.0b1/GridPath.egg-info/top_level.txt +5 -0
  7. GridPath-0.16.0b1/LICENSE.md +201 -0
  8. GridPath-0.16.0b1/MANIFEST.in +2 -0
  9. GridPath-0.16.0b1/PKG-INFO +138 -0
  10. GridPath-0.16.0b1/README.md +84 -0
  11. GridPath-0.16.0b1/db/__init__.py +115 -0
  12. GridPath-0.16.0b1/db/common_functions.py +161 -0
  13. GridPath-0.16.0b1/db/create_database.py +500 -0
  14. GridPath-0.16.0b1/db/csvs_test_examples/__init__.py +0 -0
  15. GridPath-0.16.0b1/db/csvs_test_examples/project/__init__.py +0 -0
  16. GridPath-0.16.0b1/db/db_schema.sql +5911 -0
  17. GridPath-0.16.0b1/db/utilities/__init__.py +0 -0
  18. GridPath-0.16.0b1/db/utilities/common_functions.py +1292 -0
  19. GridPath-0.16.0b1/db/utilities/create_project_files.py +145 -0
  20. GridPath-0.16.0b1/db/utilities/custom_functions.py +111 -0
  21. GridPath-0.16.0b1/db/utilities/port_csvs_to_db.py +492 -0
  22. GridPath-0.16.0b1/db/utilities/scenario.py +438 -0
  23. GridPath-0.16.0b1/gridpath/__init__.py +0 -0
  24. GridPath-0.16.0b1/gridpath/auxiliary/__init__.py +0 -0
  25. GridPath-0.16.0b1/gridpath/auxiliary/auxiliary.py +210 -0
  26. GridPath-0.16.0b1/gridpath/auxiliary/db_interface.py +299 -0
  27. GridPath-0.16.0b1/gridpath/auxiliary/dynamic_components.py +162 -0
  28. GridPath-0.16.0b1/gridpath/auxiliary/import_export_rules.py +77 -0
  29. GridPath-0.16.0b1/gridpath/auxiliary/module_list.py +709 -0
  30. GridPath-0.16.0b1/gridpath/auxiliary/plugins/__init__.py +0 -0
  31. GridPath-0.16.0b1/gridpath/auxiliary/plugins/common_functions.py +38 -0
  32. GridPath-0.16.0b1/gridpath/auxiliary/plugins/cplex_solve.py +46 -0
  33. GridPath-0.16.0b1/gridpath/auxiliary/plugins/gurobi_solve.py +63 -0
  34. GridPath-0.16.0b1/gridpath/auxiliary/scenario_chars.py +269 -0
  35. GridPath-0.16.0b1/gridpath/auxiliary/validations.py +960 -0
  36. GridPath-0.16.0b1/gridpath/common_functions.py +400 -0
  37. GridPath-0.16.0b1/gridpath/geography/__init__.py +18 -0
  38. GridPath-0.16.0b1/gridpath/geography/carbon_cap_zones.py +134 -0
  39. GridPath-0.16.0b1/gridpath/geography/carbon_credits_zones.py +132 -0
  40. GridPath-0.16.0b1/gridpath/geography/carbon_tax_zones.py +135 -0
  41. GridPath-0.16.0b1/gridpath/geography/energy_target_zones.py +137 -0
  42. GridPath-0.16.0b1/gridpath/geography/frequency_response_balancing_areas.py +146 -0
  43. GridPath-0.16.0b1/gridpath/geography/fuel_burn_limit_balancing_areas.py +179 -0
  44. GridPath-0.16.0b1/gridpath/geography/load_following_down_balancing_areas.py +144 -0
  45. GridPath-0.16.0b1/gridpath/geography/load_following_up_balancing_areas.py +144 -0
  46. GridPath-0.16.0b1/gridpath/geography/load_zones.py +171 -0
  47. GridPath-0.16.0b1/gridpath/geography/local_capacity_zones.py +148 -0
  48. GridPath-0.16.0b1/gridpath/geography/markets.py +121 -0
  49. GridPath-0.16.0b1/gridpath/geography/performance_standard_zones.py +139 -0
  50. GridPath-0.16.0b1/gridpath/geography/prm_zones.py +130 -0
  51. GridPath-0.16.0b1/gridpath/geography/regulation_down_balancing_areas.py +144 -0
  52. GridPath-0.16.0b1/gridpath/geography/regulation_up_balancing_areas.py +143 -0
  53. GridPath-0.16.0b1/gridpath/geography/spinning_reserves_balancing_areas.py +148 -0
  54. GridPath-0.16.0b1/gridpath/geography/transmission_target_zones.py +135 -0
  55. GridPath-0.16.0b1/gridpath/get_scenario_inputs.py +526 -0
  56. GridPath-0.16.0b1/gridpath/import_scenario_results.py +338 -0
  57. GridPath-0.16.0b1/gridpath/objective/__init__.py +18 -0
  58. GridPath-0.16.0b1/gridpath/objective/max_npv.py +174 -0
  59. GridPath-0.16.0b1/gridpath/objective/project/__init__.py +17 -0
  60. GridPath-0.16.0b1/gridpath/objective/project/aggregate_capacity_costs.py +71 -0
  61. GridPath-0.16.0b1/gridpath/objective/project/aggregate_operational_costs.py +212 -0
  62. GridPath-0.16.0b1/gridpath/objective/project/aggregate_operational_tuning_costs.py +63 -0
  63. GridPath-0.16.0b1/gridpath/objective/project/aggregate_prm_group_costs.py +58 -0
  64. GridPath-0.16.0b1/gridpath/objective/system/__init__.py +17 -0
  65. GridPath-0.16.0b1/gridpath/objective/system/aggregate_load_balance_penalties.py +92 -0
  66. GridPath-0.16.0b1/gridpath/objective/system/aggregate_market_revenue_and_costs.py +58 -0
  67. GridPath-0.16.0b1/gridpath/objective/system/policy/__init__.py +0 -0
  68. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_cap_violation_penalties.py +58 -0
  69. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_credit_sales.py +58 -0
  70. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_carbon_tax_costs.py +53 -0
  71. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_fuel_burn_limit_violation_penalties.py +108 -0
  72. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_horizon_energy_target_violation_penalties.py +58 -0
  73. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_performance_standard_violation_penalties.py +63 -0
  74. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_period_energy_target_violation_penalties.py +58 -0
  75. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_period_transmission_target_violation_penalties.py +61 -0
  76. GridPath-0.16.0b1/gridpath/objective/system/policy/aggregate_subsidies.py +64 -0
  77. GridPath-0.16.0b1/gridpath/objective/system/reliability/__init__.py +0 -0
  78. GridPath-0.16.0b1/gridpath/objective/system/reliability/local_capacity/__init__.py +0 -0
  79. GridPath-0.16.0b1/gridpath/objective/system/reliability/local_capacity/aggregate_local_capacity_violation_penalties.py +53 -0
  80. GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/__init__.py +0 -0
  81. GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/aggregate_capacity_transfer_costs.py +51 -0
  82. GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/aggregate_prm_violation_penalties.py +51 -0
  83. GridPath-0.16.0b1/gridpath/objective/system/reliability/prm/dynamic_elcc_tuning_penalties.py +221 -0
  84. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/__init__.py +0 -0
  85. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/aggregate_reserve_violation_penalties.py +74 -0
  86. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/frequency_response.py +75 -0
  87. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/lf_reserves_down.py +48 -0
  88. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/lf_reserves_up.py +48 -0
  89. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/regulation_down.py +48 -0
  90. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/regulation_up.py +46 -0
  91. GridPath-0.16.0b1/gridpath/objective/system/reserve_violation_penalties/spinning_reserves.py +48 -0
  92. GridPath-0.16.0b1/gridpath/objective/transmission/__init__.py +0 -0
  93. GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_capacity_costs.py +71 -0
  94. GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_export_penalty_costs.py +58 -0
  95. GridPath-0.16.0b1/gridpath/objective/transmission/aggregate_hurdle_costs.py +60 -0
  96. GridPath-0.16.0b1/gridpath/objective/transmission/carbon_imports_tuning_costs.py +224 -0
  97. GridPath-0.16.0b1/gridpath/process_results.py +124 -0
  98. GridPath-0.16.0b1/gridpath/project/__init__.py +593 -0
  99. GridPath-0.16.0b1/gridpath/project/availability/__init__.py +0 -0
  100. GridPath-0.16.0b1/gridpath/project/availability/availability.py +298 -0
  101. GridPath-0.16.0b1/gridpath/project/availability/availability_types/__init__.py +0 -0
  102. GridPath-0.16.0b1/gridpath/project/availability/availability_types/binary.py +575 -0
  103. GridPath-0.16.0b1/gridpath/project/availability/availability_types/continuous.py +582 -0
  104. GridPath-0.16.0b1/gridpath/project/availability/availability_types/exogenous.py +348 -0
  105. GridPath-0.16.0b1/gridpath/project/capacity/__init__.py +52 -0
  106. GridPath-0.16.0b1/gridpath/project/capacity/capacity.py +416 -0
  107. GridPath-0.16.0b1/gridpath/project/capacity/capacity_groups.py +625 -0
  108. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/__init__.py +153 -0
  109. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/common_methods.py +452 -0
  110. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/dr_new.py +713 -0
  111. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/fuel_prod_new.py +879 -0
  112. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/fuel_prod_spec.py +375 -0
  113. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_new_bin.py +803 -0
  114. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_new_lin.py +708 -0
  115. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_ret_bin.py +472 -0
  116. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_ret_lin.py +538 -0
  117. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_spec.py +302 -0
  118. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/gen_stor_hyb_spec.py +427 -0
  119. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_new_bin.py +907 -0
  120. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_new_lin.py +937 -0
  121. GridPath-0.16.0b1/gridpath/project/capacity/capacity_types/stor_spec.py +351 -0
  122. GridPath-0.16.0b1/gridpath/project/capacity/common_functions.py +17 -0
  123. GridPath-0.16.0b1/gridpath/project/capacity/costs.py +271 -0
  124. GridPath-0.16.0b1/gridpath/project/capacity/potential.py +713 -0
  125. GridPath-0.16.0b1/gridpath/project/capacity/relative_capacity.py +387 -0
  126. GridPath-0.16.0b1/gridpath/project/common_functions.py +166 -0
  127. GridPath-0.16.0b1/gridpath/project/consolidate_results.py +53 -0
  128. GridPath-0.16.0b1/gridpath/project/fuels.py +383 -0
  129. GridPath-0.16.0b1/gridpath/project/operations/__init__.py +1585 -0
  130. GridPath-0.16.0b1/gridpath/project/operations/cap_factor_limits.py +273 -0
  131. GridPath-0.16.0b1/gridpath/project/operations/carbon_cap.py +293 -0
  132. GridPath-0.16.0b1/gridpath/project/operations/carbon_credits.py +455 -0
  133. GridPath-0.16.0b1/gridpath/project/operations/carbon_emissions.py +158 -0
  134. GridPath-0.16.0b1/gridpath/project/operations/carbon_tax.py +646 -0
  135. GridPath-0.16.0b1/gridpath/project/operations/common_functions.py +17 -0
  136. GridPath-0.16.0b1/gridpath/project/operations/costs.py +641 -0
  137. GridPath-0.16.0b1/gridpath/project/operations/cycle_select.py +164 -0
  138. GridPath-0.16.0b1/gridpath/project/operations/energy_target_contributions.py +501 -0
  139. GridPath-0.16.0b1/gridpath/project/operations/fix_commitment.py +342 -0
  140. GridPath-0.16.0b1/gridpath/project/operations/fuel_burn.py +657 -0
  141. GridPath-0.16.0b1/gridpath/project/operations/operational_types/__init__.py +458 -0
  142. GridPath-0.16.0b1/gridpath/project/operations/operational_types/common_functions.py +1002 -0
  143. GridPath-0.16.0b1/gridpath/project/operations/operational_types/dac.py +281 -0
  144. GridPath-0.16.0b1/gridpath/project/operations/operational_types/dr.py +284 -0
  145. GridPath-0.16.0b1/gridpath/project/operations/operational_types/flex_load.py +716 -0
  146. GridPath-0.16.0b1/gridpath/project/operations/operational_types/fuel_prod.py +563 -0
  147. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_always_on.py +750 -0
  148. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_bin.py +323 -0
  149. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_cap.py +1555 -0
  150. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_lin.py +297 -0
  151. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_commit_unit_common.py +3811 -0
  152. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_hydro.py +968 -0
  153. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_hydro_must_take.py +877 -0
  154. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_must_run.py +388 -0
  155. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_simple.py +632 -0
  156. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var.py +637 -0
  157. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var_must_take.py +382 -0
  158. GridPath-0.16.0b1/gridpath/project/operations/operational_types/gen_var_stor_hyb.py +959 -0
  159. GridPath-0.16.0b1/gridpath/project/operations/operational_types/opchar_param_requirements.csv +19 -0
  160. GridPath-0.16.0b1/gridpath/project/operations/operational_types/stor.py +1007 -0
  161. GridPath-0.16.0b1/gridpath/project/operations/performance_standard.py +327 -0
  162. GridPath-0.16.0b1/gridpath/project/operations/power.py +331 -0
  163. GridPath-0.16.0b1/gridpath/project/operations/reserves/__init__.py +0 -0
  164. GridPath-0.16.0b1/gridpath/project/operations/reserves/frequency_response.py +362 -0
  165. GridPath-0.16.0b1/gridpath/project/operations/reserves/lf_reserves_down.py +268 -0
  166. GridPath-0.16.0b1/gridpath/project/operations/reserves/lf_reserves_up.py +269 -0
  167. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/__init__.py +0 -0
  168. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/frequency_response.py +201 -0
  169. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/lf_reserves_down.py +200 -0
  170. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/lf_reserves_up.py +200 -0
  171. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/regulation_down.py +200 -0
  172. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/regulation_up.py +200 -0
  173. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/reserve_limits_by_op_type.py +160 -0
  174. GridPath-0.16.0b1/gridpath/project/operations/reserves/op_type_dependent/spinning_reserves.py +200 -0
  175. GridPath-0.16.0b1/gridpath/project/operations/reserves/regulation_down.py +266 -0
  176. GridPath-0.16.0b1/gridpath/project/operations/reserves/regulation_up.py +269 -0
  177. GridPath-0.16.0b1/gridpath/project/operations/reserves/reserve_provision.py +601 -0
  178. GridPath-0.16.0b1/gridpath/project/operations/reserves/spinning_reserves.py +268 -0
  179. GridPath-0.16.0b1/gridpath/project/operations/reserves/subhourly_energy_adjustment.py +114 -0
  180. GridPath-0.16.0b1/gridpath/project/operations/supplemental_firing.py +175 -0
  181. GridPath-0.16.0b1/gridpath/project/operations/tuning_costs.py +362 -0
  182. GridPath-0.16.0b1/gridpath/project/reliability/__init__.py +0 -0
  183. GridPath-0.16.0b1/gridpath/project/reliability/local_capacity/__init__.py +228 -0
  184. GridPath-0.16.0b1/gridpath/project/reliability/local_capacity/local_capacity_contribution.py +243 -0
  185. GridPath-0.16.0b1/gridpath/project/reliability/prm/__init__.py +269 -0
  186. GridPath-0.16.0b1/gridpath/project/reliability/prm/common_functions.py +19 -0
  187. GridPath-0.16.0b1/gridpath/project/reliability/prm/elcc_surface.py +483 -0
  188. GridPath-0.16.0b1/gridpath/project/reliability/prm/group_costs.py +828 -0
  189. GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_simple.py +283 -0
  190. GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/__init__.py +322 -0
  191. GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/energy_only_allowed.py +267 -0
  192. GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/fully_deliverable.py +50 -0
  193. GridPath-0.16.0b1/gridpath/project/reliability/prm/prm_types/fully_deliverable_energy_limited.py +272 -0
  194. GridPath-0.16.0b1/gridpath/run_end_to_end.py +521 -0
  195. GridPath-0.16.0b1/gridpath/run_scenario.py +1406 -0
  196. GridPath-0.16.0b1/gridpath/run_scenario_parallel.py +102 -0
  197. GridPath-0.16.0b1/gridpath/system/__init__.py +0 -0
  198. GridPath-0.16.0b1/gridpath/system/load_balance/__init__.py +81 -0
  199. GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_market_participation.py +97 -0
  200. GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_project_power.py +102 -0
  201. GridPath-0.16.0b1/gridpath/system/load_balance/aggregate_transmission_power.py +130 -0
  202. GridPath-0.16.0b1/gridpath/system/load_balance/consolidate_results.py +37 -0
  203. GridPath-0.16.0b1/gridpath/system/load_balance/load_balance.py +216 -0
  204. GridPath-0.16.0b1/gridpath/system/load_balance/static_load_requirement.py +201 -0
  205. GridPath-0.16.0b1/gridpath/system/markets/__init__.py +0 -0
  206. GridPath-0.16.0b1/gridpath/system/markets/fix_market_participation.py +85 -0
  207. GridPath-0.16.0b1/gridpath/system/markets/market_participation.py +351 -0
  208. GridPath-0.16.0b1/gridpath/system/markets/prices.py +124 -0
  209. GridPath-0.16.0b1/gridpath/system/markets/volume.py +209 -0
  210. GridPath-0.16.0b1/gridpath/system/policy/__init__.py +0 -0
  211. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/__init__.py +74 -0
  212. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/aggregate_project_carbon_emissions.py +101 -0
  213. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/aggregate_transmission_carbon_emissions.py +148 -0
  214. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/carbon_balance.py +138 -0
  215. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/carbon_cap.py +184 -0
  216. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/consolidate_results.py +37 -0
  217. GridPath-0.16.0b1/gridpath/system/policy/carbon_cap/purchase_credits.py +173 -0
  218. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/__init__.py +75 -0
  219. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_carbon_cap_zone_purchases.py +88 -0
  220. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_carbon_tax_zone_purchases.py +88 -0
  221. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_performance_standard_zone_purchases.py +92 -0
  222. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/aggregate_project_carbon_credits.py +103 -0
  223. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/carbon_credits_balance.py +100 -0
  224. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/consolidate_results.py +37 -0
  225. GridPath-0.16.0b1/gridpath/system/policy/carbon_credits/sell_credits.py +190 -0
  226. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/__init__.py +74 -0
  227. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/aggregate_project_carbon_emissions.py +135 -0
  228. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/carbon_tax.py +147 -0
  229. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/carbon_tax_costs.py +90 -0
  230. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/consolidate_results.py +37 -0
  231. GridPath-0.16.0b1/gridpath/system/policy/carbon_tax/purchase_credits.py +182 -0
  232. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/__init__.py +127 -0
  233. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/aggregate_horizon_energy_target_contributions.py +128 -0
  234. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/aggregate_period_energy_target_contributions.py +124 -0
  235. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/consolidate_results.py +54 -0
  236. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/horizon_energy_target.py +284 -0
  237. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/horizon_energy_target_balance.py +226 -0
  238. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/period_energy_target.py +283 -0
  239. GridPath-0.16.0b1/gridpath/system/policy/energy_targets/period_energy_target_balance.py +222 -0
  240. GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/__init__.py +85 -0
  241. GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/aggregate_project_fuel_burn.py +230 -0
  242. GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/consolidate_results.py +37 -0
  243. GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/fuel_burn_limit_balance.py +309 -0
  244. GridPath-0.16.0b1/gridpath/system/policy/fuel_burn_limits/fuel_burn_limits.py +252 -0
  245. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/__init__.py +74 -0
  246. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/aggregate_project_performance_standard.py +130 -0
  247. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/consolidate_results.py +37 -0
  248. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/performance_standard.py +197 -0
  249. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/performance_standard_balance.py +133 -0
  250. GridPath-0.16.0b1/gridpath/system/policy/performance_standard/purchase_credits.py +178 -0
  251. GridPath-0.16.0b1/gridpath/system/policy/subsidies.py +453 -0
  252. GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/__init__.py +74 -0
  253. GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/aggregate_period_transmission_target_contributions.py +119 -0
  254. GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/consolidate_results.py +37 -0
  255. GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/period_transmission_target.py +225 -0
  256. GridPath-0.16.0b1/gridpath/system/policy/transmission_targets/period_transmission_target_balance.py +159 -0
  257. GridPath-0.16.0b1/gridpath/system/reliability/__init__.py +0 -0
  258. GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/__init__.py +74 -0
  259. GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/aggregate_local_capacity_contribution.py +104 -0
  260. GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/consolidate_results.py +37 -0
  261. GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/local_capacity_balance.py +136 -0
  262. GridPath-0.16.0b1/gridpath/system/reliability/local_capacity/local_capacity_requirement.py +189 -0
  263. GridPath-0.16.0b1/gridpath/system/reliability/prm/__init__.py +74 -0
  264. GridPath-0.16.0b1/gridpath/system/reliability/prm/aggregate_project_simple_prm_contribution.py +94 -0
  265. GridPath-0.16.0b1/gridpath/system/reliability/prm/capacity_contribution_transfers.py +538 -0
  266. GridPath-0.16.0b1/gridpath/system/reliability/prm/consolidate_results.py +37 -0
  267. GridPath-0.16.0b1/gridpath/system/reliability/prm/elcc_surface.py +282 -0
  268. GridPath-0.16.0b1/gridpath/system/reliability/prm/prm_balance.py +127 -0
  269. GridPath-0.16.0b1/gridpath/system/reliability/prm/prm_requirement.py +187 -0
  270. GridPath-0.16.0b1/gridpath/system/reserves/__init__.py +0 -0
  271. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/__init__.py +0 -0
  272. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/frequency_response.py +57 -0
  273. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/lf_reserves_down.py +35 -0
  274. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/lf_reserves_up.py +35 -0
  275. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/regulation_down.py +35 -0
  276. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/regulation_up.py +35 -0
  277. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/reserve_aggregation.py +68 -0
  278. GridPath-0.16.0b1/gridpath/system/reserves/aggregation/spinning_reserves.py +35 -0
  279. GridPath-0.16.0b1/gridpath/system/reserves/balance/__init__.py +0 -0
  280. GridPath-0.16.0b1/gridpath/system/reserves/balance/frequency_response.py +140 -0
  281. GridPath-0.16.0b1/gridpath/system/reserves/balance/lf_reserves_down.py +97 -0
  282. GridPath-0.16.0b1/gridpath/system/reserves/balance/lf_reserves_up.py +98 -0
  283. GridPath-0.16.0b1/gridpath/system/reserves/balance/regulation_down.py +98 -0
  284. GridPath-0.16.0b1/gridpath/system/reserves/balance/regulation_up.py +98 -0
  285. GridPath-0.16.0b1/gridpath/system/reserves/balance/reserve_balance.py +210 -0
  286. GridPath-0.16.0b1/gridpath/system/reserves/balance/spinning_reserves.py +98 -0
  287. GridPath-0.16.0b1/gridpath/system/reserves/requirement/__init__.py +0 -0
  288. GridPath-0.16.0b1/gridpath/system/reserves/requirement/frequency_response.py +144 -0
  289. GridPath-0.16.0b1/gridpath/system/reserves/requirement/lf_reserves_down.py +126 -0
  290. GridPath-0.16.0b1/gridpath/system/reserves/requirement/lf_reserves_up.py +125 -0
  291. GridPath-0.16.0b1/gridpath/system/reserves/requirement/regulation_down.py +125 -0
  292. GridPath-0.16.0b1/gridpath/system/reserves/requirement/regulation_up.py +125 -0
  293. GridPath-0.16.0b1/gridpath/system/reserves/requirement/reserve_requirements.py +473 -0
  294. GridPath-0.16.0b1/gridpath/system/reserves/requirement/spinning_reserves.py +125 -0
  295. GridPath-0.16.0b1/gridpath/temporal/__init__.py +39 -0
  296. GridPath-0.16.0b1/gridpath/temporal/finalize.py +70 -0
  297. GridPath-0.16.0b1/gridpath/temporal/investment/__init__.py +18 -0
  298. GridPath-0.16.0b1/gridpath/temporal/investment/periods.py +423 -0
  299. GridPath-0.16.0b1/gridpath/temporal/investment/superperiods.py +148 -0
  300. GridPath-0.16.0b1/gridpath/temporal/operations/__init__.py +18 -0
  301. GridPath-0.16.0b1/gridpath/temporal/operations/horizons.py +600 -0
  302. GridPath-0.16.0b1/gridpath/temporal/operations/timepoints.py +431 -0
  303. GridPath-0.16.0b1/gridpath/transmission/__init__.py +490 -0
  304. GridPath-0.16.0b1/gridpath/transmission/availability/__init__.py +0 -0
  305. GridPath-0.16.0b1/gridpath/transmission/availability/availability.py +261 -0
  306. GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/__init__.py +0 -0
  307. GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/exogenous.py +329 -0
  308. GridPath-0.16.0b1/gridpath/transmission/availability/availability_types/exogenous_monthly.py +305 -0
  309. GridPath-0.16.0b1/gridpath/transmission/capacity/__init__.py +45 -0
  310. GridPath-0.16.0b1/gridpath/transmission/capacity/capacity.py +348 -0
  311. GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_groups.py +420 -0
  312. GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/__init__.py +219 -0
  313. GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/tx_new_lin.py +901 -0
  314. GridPath-0.16.0b1/gridpath/transmission/capacity/capacity_types/tx_spec.py +344 -0
  315. GridPath-0.16.0b1/gridpath/transmission/capacity/common_functions.py +19 -0
  316. GridPath-0.16.0b1/gridpath/transmission/capacity/consolidate_results.py +42 -0
  317. GridPath-0.16.0b1/gridpath/transmission/capacity/costs.py +400 -0
  318. GridPath-0.16.0b1/gridpath/transmission/operations/__init__.py +39 -0
  319. GridPath-0.16.0b1/gridpath/transmission/operations/carbon_emissions.py +440 -0
  320. GridPath-0.16.0b1/gridpath/transmission/operations/common_functions.py +20 -0
  321. GridPath-0.16.0b1/gridpath/transmission/operations/consolidate_results.py +38 -0
  322. GridPath-0.16.0b1/gridpath/transmission/operations/export_penalty_costs.py +47 -0
  323. GridPath-0.16.0b1/gridpath/transmission/operations/hurdle_costs.py +476 -0
  324. GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/__init__.py +286 -0
  325. GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_dcopf.py +556 -0
  326. GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_simple.py +412 -0
  327. GridPath-0.16.0b1/gridpath/transmission/operations/operational_types/tx_simple_binary.py +497 -0
  328. GridPath-0.16.0b1/gridpath/transmission/operations/operations.py +338 -0
  329. GridPath-0.16.0b1/gridpath/transmission/operations/simultaneous_flow_limits.py +470 -0
  330. GridPath-0.16.0b1/gridpath/transmission/operations/transmission_flow_limits.py +355 -0
  331. GridPath-0.16.0b1/gridpath/transmission/operations/transmission_target_contributions.py +458 -0
  332. GridPath-0.16.0b1/gridpath/transmission/reliability/__init__.py +0 -0
  333. GridPath-0.16.0b1/gridpath/transmission/reliability/capacity_transfer_links.py +145 -0
  334. GridPath-0.16.0b1/gridpath/validate_inputs.py +445 -0
  335. GridPath-0.16.0b1/setup.cfg +4 -0
  336. GridPath-0.16.0b1/setup.py +82 -0
  337. GridPath-0.16.0b1/tests/__init__.py +0 -0
  338. GridPath-0.16.0b1/tests/auxiliary/__init__.py +0 -0
  339. GridPath-0.16.0b1/tests/auxiliary/test_auxiliary.py +96 -0
  340. GridPath-0.16.0b1/tests/auxiliary/test_validations.py +1067 -0
  341. GridPath-0.16.0b1/tests/common_functions.py +104 -0
  342. GridPath-0.16.0b1/tests/geography/__init__.py +0 -0
  343. GridPath-0.16.0b1/tests/geography/test_carbon_cap_zones.py +124 -0
  344. GridPath-0.16.0b1/tests/geography/test_carbon_credits_zones.py +99 -0
  345. GridPath-0.16.0b1/tests/geography/test_carbon_tax_zones.py +99 -0
  346. GridPath-0.16.0b1/tests/geography/test_energy_target_zones.py +124 -0
  347. GridPath-0.16.0b1/tests/geography/test_frequency_response_balancing_areas.py +116 -0
  348. GridPath-0.16.0b1/tests/geography/test_fuel_burn_limit_balancing_areas.py +231 -0
  349. GridPath-0.16.0b1/tests/geography/test_load_following_down_balancing_areas.py +116 -0
  350. GridPath-0.16.0b1/tests/geography/test_load_following_up_balancing_areas.py +114 -0
  351. GridPath-0.16.0b1/tests/geography/test_load_zones.py +211 -0
  352. GridPath-0.16.0b1/tests/geography/test_local_capacity_zones.py +97 -0
  353. GridPath-0.16.0b1/tests/geography/test_markets.py +95 -0
  354. GridPath-0.16.0b1/tests/geography/test_performance_standard_zones.py +126 -0
  355. GridPath-0.16.0b1/tests/geography/test_prm_zones.py +95 -0
  356. GridPath-0.16.0b1/tests/geography/test_regulation_down_balancing_areas.py +116 -0
  357. GridPath-0.16.0b1/tests/geography/test_regulation_up_balancing_areas.py +116 -0
  358. GridPath-0.16.0b1/tests/geography/test_spinning_reserves_balancing_areas.py +116 -0
  359. GridPath-0.16.0b1/tests/geography/test_transmission_target_zones.py +116 -0
  360. GridPath-0.16.0b1/tests/objective/__init__.py +0 -0
  361. GridPath-0.16.0b1/tests/objective/project/__init__.py +0 -0
  362. GridPath-0.16.0b1/tests/objective/project/test_aggregate_capacity_costs.py +99 -0
  363. GridPath-0.16.0b1/tests/objective/project/test_aggregate_operational_costs.py +105 -0
  364. GridPath-0.16.0b1/tests/objective/project/test_aggregate_operational_tuning_costs.py +104 -0
  365. GridPath-0.16.0b1/tests/objective/project/test_aggregate_prm_group_costs.py +102 -0
  366. GridPath-0.16.0b1/tests/objective/system/__init__.py +0 -0
  367. GridPath-0.16.0b1/tests/objective/system/policy/__init__.py +0 -0
  368. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_carbon_cap_violation_penalties.py +102 -0
  369. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_carbon_tax_costs.py +112 -0
  370. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_fuel_burn_limit_violation_penalties.py +112 -0
  371. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_horizon_energy_target_violation_penalties.py +114 -0
  372. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_performance_standard_violation_penalties.py +114 -0
  373. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_period_energy_target_violation_penalties.py +114 -0
  374. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_period_transmission_target_violation_penalties.py +113 -0
  375. GridPath-0.16.0b1/tests/objective/system/policy/test_aggregate_subsidies.py +110 -0
  376. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/__init__.py +0 -0
  377. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_frequency_response.py +123 -0
  378. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_lf_reserves_down.py +124 -0
  379. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_lf_reserves_up.py +126 -0
  380. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_regulation_down.py +123 -0
  381. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_regulation_up.py +123 -0
  382. GridPath-0.16.0b1/tests/objective/system/reserve_violation_penalties/test_spinning_reserves.py +123 -0
  383. GridPath-0.16.0b1/tests/objective/system/test_aggregate_load_balance_penalties.py +97 -0
  384. GridPath-0.16.0b1/tests/objective/system/test_aggregate_market_revenue_and_costs.py +100 -0
  385. GridPath-0.16.0b1/tests/objective/test_max_npv.py +63 -0
  386. GridPath-0.16.0b1/tests/objective/transmission/__init__.py +0 -0
  387. GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_capacity_costs.py +70 -0
  388. GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_export_penalty_costs.py +103 -0
  389. GridPath-0.16.0b1/tests/objective/transmission/test_aggregate_hurdle_costs.py +102 -0
  390. GridPath-0.16.0b1/tests/objective/transmission/test_carbon_imports_tuning_costs.py +109 -0
  391. GridPath-0.16.0b1/tests/project/__init__.py +0 -0
  392. GridPath-0.16.0b1/tests/project/availability/__init__.py +0 -0
  393. GridPath-0.16.0b1/tests/project/availability/availability_types/__init__.py +0 -0
  394. GridPath-0.16.0b1/tests/project/availability/availability_types/common_functions.py +46 -0
  395. GridPath-0.16.0b1/tests/project/availability/availability_types/test_binary.py +163 -0
  396. GridPath-0.16.0b1/tests/project/availability/availability_types/test_continuous.py +163 -0
  397. GridPath-0.16.0b1/tests/project/availability/availability_types/test_exogenous.py +179 -0
  398. GridPath-0.16.0b1/tests/project/availability/test_availability.py +100 -0
  399. GridPath-0.16.0b1/tests/project/capacity/__init__.py +0 -0
  400. GridPath-0.16.0b1/tests/project/capacity/capacity_types/__init__.py +0 -0
  401. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_common_methods.py +208 -0
  402. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_dr_new.py +189 -0
  403. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_fuel_prod_new.py +330 -0
  404. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_fuel_prod_spec.py +199 -0
  405. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_new_bin.py +277 -0
  406. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_new_lin.py +301 -0
  407. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_ret_bin.py +151 -0
  408. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_ret_lin.py +148 -0
  409. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_spec.py +255 -0
  410. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_gen_stor_hyb_spec.py +281 -0
  411. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_new_bin.py +344 -0
  412. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_new_lin.py +330 -0
  413. GridPath-0.16.0b1/tests/project/capacity/capacity_types/test_stor_spec.py +162 -0
  414. GridPath-0.16.0b1/tests/project/capacity/test_capacity.py +294 -0
  415. GridPath-0.16.0b1/tests/project/capacity/test_capacity_groups.py +164 -0
  416. GridPath-0.16.0b1/tests/project/capacity/test_costs.py +98 -0
  417. GridPath-0.16.0b1/tests/project/capacity/test_potentials.py +281 -0
  418. GridPath-0.16.0b1/tests/project/capacity/test_relative_capacity.py +179 -0
  419. GridPath-0.16.0b1/tests/project/operations/__init__.py +0 -0
  420. GridPath-0.16.0b1/tests/project/operations/common_functions.py +131 -0
  421. GridPath-0.16.0b1/tests/project/operations/operational_types/__init__.py +0 -0
  422. GridPath-0.16.0b1/tests/project/operations/operational_types/test_common_functions.py +291 -0
  423. GridPath-0.16.0b1/tests/project/operations/operational_types/test_dac.py +136 -0
  424. GridPath-0.16.0b1/tests/project/operations/operational_types/test_dr.py +137 -0
  425. GridPath-0.16.0b1/tests/project/operations/operational_types/test_flex_load.py +172 -0
  426. GridPath-0.16.0b1/tests/project/operations/operational_types/test_fuel_prod.py +128 -0
  427. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_always_on.py +173 -0
  428. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_bin.py +322 -0
  429. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_cap.py +322 -0
  430. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_commit_lin.py +377 -0
  431. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_hydro.py +210 -0
  432. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_hydro_must_take.py +210 -0
  433. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_must_run.py +136 -0
  434. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_simple.py +158 -0
  435. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var.py +141 -0
  436. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var_must_take.py +142 -0
  437. GridPath-0.16.0b1/tests/project/operations/operational_types/test_gen_var_stor_hyb.py +165 -0
  438. GridPath-0.16.0b1/tests/project/operations/operational_types/test_init.py +102 -0
  439. GridPath-0.16.0b1/tests/project/operations/operational_types/test_stor.py +158 -0
  440. GridPath-0.16.0b1/tests/project/operations/reserves/__init__.py +0 -0
  441. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/__init__.py +0 -0
  442. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_frequency_response.py +135 -0
  443. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_lf_reserves_down.py +135 -0
  444. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_lf_reserves_up.py +135 -0
  445. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_regulation_down.py +137 -0
  446. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_regulation_up.py +137 -0
  447. GridPath-0.16.0b1/tests/project/operations/reserves/op_type_dependent/test_spinning_reserves.py +135 -0
  448. GridPath-0.16.0b1/tests/project/operations/reserves/test_frequency_response.py +202 -0
  449. GridPath-0.16.0b1/tests/project/operations/reserves/test_lf_reserves_down.py +193 -0
  450. GridPath-0.16.0b1/tests/project/operations/reserves/test_lf_reserves_up.py +193 -0
  451. GridPath-0.16.0b1/tests/project/operations/reserves/test_regulation_down.py +199 -0
  452. GridPath-0.16.0b1/tests/project/operations/reserves/test_regulation_up.py +199 -0
  453. GridPath-0.16.0b1/tests/project/operations/reserves/test_spinning_reserves.py +193 -0
  454. GridPath-0.16.0b1/tests/project/operations/test_cap_factor_limits.py +127 -0
  455. GridPath-0.16.0b1/tests/project/operations/test_carbon_cap.py +206 -0
  456. GridPath-0.16.0b1/tests/project/operations/test_carbon_credits.py +175 -0
  457. GridPath-0.16.0b1/tests/project/operations/test_carbon_emissions.py +80 -0
  458. GridPath-0.16.0b1/tests/project/operations/test_carbon_tax.py +406 -0
  459. GridPath-0.16.0b1/tests/project/operations/test_costs.py +288 -0
  460. GridPath-0.16.0b1/tests/project/operations/test_cycle_select.py +158 -0
  461. GridPath-0.16.0b1/tests/project/operations/test_energy_target_contributions.py +156 -0
  462. GridPath-0.16.0b1/tests/project/operations/test_fix_commitment.py +502 -0
  463. GridPath-0.16.0b1/tests/project/operations/test_fuel_burn.py +334 -0
  464. GridPath-0.16.0b1/tests/project/operations/test_init.py +1174 -0
  465. GridPath-0.16.0b1/tests/project/operations/test_performance_standard.py +180 -0
  466. GridPath-0.16.0b1/tests/project/operations/test_power.py +83 -0
  467. GridPath-0.16.0b1/tests/project/operations/test_supplemental_firing.py +155 -0
  468. GridPath-0.16.0b1/tests/project/operations/test_tuning_costs.py +106 -0
  469. GridPath-0.16.0b1/tests/project/reliability/__init__.py +0 -0
  470. GridPath-0.16.0b1/tests/project/reliability/local_capacity/__init__.py +0 -0
  471. GridPath-0.16.0b1/tests/project/reliability/local_capacity/test_init.py +256 -0
  472. GridPath-0.16.0b1/tests/project/reliability/local_capacity/test_local_capacity_contribution.py +137 -0
  473. GridPath-0.16.0b1/tests/project/reliability/prm/__init__.py +0 -0
  474. GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/__init__.py +0 -0
  475. GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_energy_only_allowed.py +118 -0
  476. GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_fully_deliverable.py +132 -0
  477. GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_fully_deliverable_energy_limited.py +139 -0
  478. GridPath-0.16.0b1/tests/project/reliability/prm/prm_types/test_init.py +101 -0
  479. GridPath-0.16.0b1/tests/project/reliability/prm/test_elcc_surface.py +344 -0
  480. GridPath-0.16.0b1/tests/project/reliability/prm/test_group_costs.py +370 -0
  481. GridPath-0.16.0b1/tests/project/reliability/prm/test_init.py +303 -0
  482. GridPath-0.16.0b1/tests/project/reliability/prm/test_prm_simple.py +165 -0
  483. GridPath-0.16.0b1/tests/project/test_fuels.py +188 -0
  484. GridPath-0.16.0b1/tests/project/test_init.py +169 -0
  485. GridPath-0.16.0b1/tests/system/__init__.py +0 -0
  486. GridPath-0.16.0b1/tests/system/load_balance/__init__.py +0 -0
  487. GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_market_participation.py +98 -0
  488. GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_project_power.py +84 -0
  489. GridPath-0.16.0b1/tests/system/load_balance/test_aggregate_transmission_power.py +103 -0
  490. GridPath-0.16.0b1/tests/system/load_balance/test_load_balance.py +91 -0
  491. GridPath-0.16.0b1/tests/system/load_balance/test_static_load_requirement.py +114 -0
  492. GridPath-0.16.0b1/tests/system/markets/__init__.py +0 -0
  493. GridPath-0.16.0b1/tests/system/markets/test_market_participation.py +156 -0
  494. GridPath-0.16.0b1/tests/system/markets/test_prices.py +122 -0
  495. GridPath-0.16.0b1/tests/system/markets/test_volume.py +184 -0
  496. GridPath-0.16.0b1/tests/system/policy/__init__.py +0 -0
  497. GridPath-0.16.0b1/tests/system/policy/carbon_cap/__init__.py +0 -0
  498. GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_aggregate_project_carbon_emissions.py +112 -0
  499. GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_aggregate_transmission_carbon_emissions.py +110 -0
  500. GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_carbon_balance.py +120 -0
  501. GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_carbon_cap.py +133 -0
  502. GridPath-0.16.0b1/tests/system/policy/carbon_cap/test_purchase_credits.py +115 -0
  503. GridPath-0.16.0b1/tests/system/policy/carbon_credits/__init__.py +75 -0
  504. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_carbon_cap_zone_purchases.py +103 -0
  505. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_carbon_tax_zone_purchases.py +103 -0
  506. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_performance_standard_zone_purchases.py +103 -0
  507. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_aggregate_project_carbon_credits.py +111 -0
  508. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_carbon_credits_balance.py +98 -0
  509. GridPath-0.16.0b1/tests/system/policy/carbon_credits/test_sell_credits.py +98 -0
  510. GridPath-0.16.0b1/tests/system/policy/carbon_tax/__init__.py +0 -0
  511. GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_aggregate_project_carbon_emissions.py +112 -0
  512. GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_carbon_tax.py +133 -0
  513. GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_carbon_tax_costs.py +111 -0
  514. GridPath-0.16.0b1/tests/system/policy/carbon_tax/test_purchase_credits.py +115 -0
  515. GridPath-0.16.0b1/tests/system/policy/energy_targets/__init__.py +0 -0
  516. GridPath-0.16.0b1/tests/system/policy/energy_targets/test_aggregate_horizon_energy_target_contributions.py +111 -0
  517. GridPath-0.16.0b1/tests/system/policy/energy_targets/test_aggregate_period_energy_target_contributions.py +111 -0
  518. GridPath-0.16.0b1/tests/system/policy/energy_targets/test_horizon_energy_target.py +186 -0
  519. GridPath-0.16.0b1/tests/system/policy/energy_targets/test_period_energy_target.py +174 -0
  520. GridPath-0.16.0b1/tests/system/policy/energy_targets/test_period_energy_target_balance.py +112 -0
  521. GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/__init__.py +0 -0
  522. GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_aggregate_project_fuel_burn.py +165 -0
  523. GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_fuel_burn_limit_balance.py +109 -0
  524. GridPath-0.16.0b1/tests/system/policy/fuel_burn_limits/test_fuel_burn_limits.py +353 -0
  525. GridPath-0.16.0b1/tests/system/policy/test_subsidies.py +238 -0
  526. GridPath-0.16.0b1/tests/system/policy/transmission_targets/__init__.py +0 -0
  527. GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_aggregate_period_transmission_target_contributions.py +109 -0
  528. GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_period_transmission_target.py +170 -0
  529. GridPath-0.16.0b1/tests/system/policy/transmission_targets/test_period_transmission_target_balance.py +112 -0
  530. GridPath-0.16.0b1/tests/system/reliability/__init__.py +0 -0
  531. GridPath-0.16.0b1/tests/system/reliability/local_capacity/__init__.py +0 -0
  532. GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_aggregate_local_capacity_contribution.py +106 -0
  533. GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_local_capacity_balance.py +121 -0
  534. GridPath-0.16.0b1/tests/system/reliability/local_capacity/test_local_capacity_requirement.py +135 -0
  535. GridPath-0.16.0b1/tests/system/reliability/prm/__init__.py +0 -0
  536. GridPath-0.16.0b1/tests/system/reliability/prm/test_aggregate_project_simple_prm_contribution.py +107 -0
  537. GridPath-0.16.0b1/tests/system/reliability/prm/test_capacity_contribution_transfers.py +175 -0
  538. GridPath-0.16.0b1/tests/system/reliability/prm/test_elcc_surface.py +163 -0
  539. GridPath-0.16.0b1/tests/system/reliability/prm/test_prm_balance.py +106 -0
  540. GridPath-0.16.0b1/tests/system/reliability/prm/test_prm_requirement.py +133 -0
  541. GridPath-0.16.0b1/tests/system/reserves/__init__.py +0 -0
  542. GridPath-0.16.0b1/tests/system/reserves/aggregation/__init__.py +0 -0
  543. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_frequency_response.py +376 -0
  544. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_lf_reserves_down.py +251 -0
  545. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_lf_reserves_up.py +253 -0
  546. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_regulation_down.py +254 -0
  547. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_regulation_up.py +254 -0
  548. GridPath-0.16.0b1/tests/system/reserves/aggregation/test_spinning_reserves.py +250 -0
  549. GridPath-0.16.0b1/tests/system/reserves/balance/__init__.py +0 -0
  550. GridPath-0.16.0b1/tests/system/reserves/balance/test_frequency_response.py +106 -0
  551. GridPath-0.16.0b1/tests/system/reserves/balance/test_lf_reserves_down.py +107 -0
  552. GridPath-0.16.0b1/tests/system/reserves/balance/test_lf_reserves_up.py +109 -0
  553. GridPath-0.16.0b1/tests/system/reserves/balance/test_regulation_down.py +106 -0
  554. GridPath-0.16.0b1/tests/system/reserves/balance/test_regulation_up.py +106 -0
  555. GridPath-0.16.0b1/tests/system/reserves/balance/test_spinning_reserves.py +106 -0
  556. GridPath-0.16.0b1/tests/system/reserves/requirement/__init__.py +0 -0
  557. GridPath-0.16.0b1/tests/system/reserves/requirement/test_frequency_response.py +155 -0
  558. GridPath-0.16.0b1/tests/system/reserves/requirement/test_lf_reserves_down.py +157 -0
  559. GridPath-0.16.0b1/tests/system/reserves/requirement/test_lf_reserves_up.py +164 -0
  560. GridPath-0.16.0b1/tests/system/reserves/requirement/test_regulation_down.py +137 -0
  561. GridPath-0.16.0b1/tests/system/reserves/requirement/test_regulation_up.py +137 -0
  562. GridPath-0.16.0b1/tests/system/reserves/requirement/test_spinning_reserves.py +137 -0
  563. GridPath-0.16.0b1/tests/temporal/__init__.py +0 -0
  564. GridPath-0.16.0b1/tests/temporal/investment/__init__.py +0 -0
  565. GridPath-0.16.0b1/tests/temporal/investment/test_periods.py +250 -0
  566. GridPath-0.16.0b1/tests/temporal/investment/test_superperiods.py +112 -0
  567. GridPath-0.16.0b1/tests/temporal/operations/__init__.py +0 -0
  568. GridPath-0.16.0b1/tests/temporal/operations/test_horizons.py +321 -0
  569. GridPath-0.16.0b1/tests/temporal/operations/test_timepoints.py +185 -0
  570. GridPath-0.16.0b1/tests/test_create_database.py +29 -0
  571. GridPath-0.16.0b1/tests/test_examples.py +1285 -0
  572. GridPath-0.16.0b1/tests/test_run_scenario_parallel.py +37 -0
  573. GridPath-0.16.0b1/tests/test_viz.py +359 -0
  574. GridPath-0.16.0b1/tests/transmission/__init__.py +0 -0
  575. GridPath-0.16.0b1/tests/transmission/availability/__init__.py +0 -0
  576. GridPath-0.16.0b1/tests/transmission/availability/availability_types/__init__.py +0 -0
  577. GridPath-0.16.0b1/tests/transmission/availability/availability_types/test_exogenous.py +535 -0
  578. GridPath-0.16.0b1/tests/transmission/availability/availability_types/test_exogenous_monthly.py +145 -0
  579. GridPath-0.16.0b1/tests/transmission/availability/test_availability.py +100 -0
  580. GridPath-0.16.0b1/tests/transmission/capacity/__init__.py +0 -0
  581. GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/__init__.py +0 -0
  582. GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/test_tx_new_lin.py +245 -0
  583. GridPath-0.16.0b1/tests/transmission/capacity/capacity_types/test_tx_spec.py +187 -0
  584. GridPath-0.16.0b1/tests/transmission/capacity/test_capacity.py +118 -0
  585. GridPath-0.16.0b1/tests/transmission/capacity/test_capacity_groups.py +142 -0
  586. GridPath-0.16.0b1/tests/transmission/capacity/test_costs.py +111 -0
  587. GridPath-0.16.0b1/tests/transmission/operations/__init__.py +0 -0
  588. GridPath-0.16.0b1/tests/transmission/operations/operational_types/__init__.py +0 -0
  589. GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_dcopf.py +642 -0
  590. GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_simple.py +226 -0
  591. GridPath-0.16.0b1/tests/transmission/operations/operational_types/test_tx_simple_binary.py +229 -0
  592. GridPath-0.16.0b1/tests/transmission/operations/test_carbon_emissions.py +370 -0
  593. GridPath-0.16.0b1/tests/transmission/operations/test_export_penalty_costs.py +102 -0
  594. GridPath-0.16.0b1/tests/transmission/operations/test_hurdle_costs.py +157 -0
  595. GridPath-0.16.0b1/tests/transmission/operations/test_operations.py +727 -0
  596. GridPath-0.16.0b1/tests/transmission/operations/test_simultaneous_flow_limits.py +337 -0
  597. GridPath-0.16.0b1/tests/transmission/operations/test_transmission_flow_limits.py +146 -0
  598. GridPath-0.16.0b1/tests/transmission/operations/test_transmission_target_contributions.py +242 -0
  599. GridPath-0.16.0b1/tests/transmission/test_init.py +173 -0
  600. GridPath-0.16.0b1/ui/__init__.py +0 -0
  601. GridPath-0.16.0b1/ui/server/__init__.py +0 -0
  602. GridPath-0.16.0b1/ui/server/api/__init__.py +0 -0
  603. GridPath-0.16.0b1/ui/server/api/home.py +78 -0
  604. GridPath-0.16.0b1/ui/server/api/scenario_detail.py +233 -0
  605. GridPath-0.16.0b1/ui/server/api/scenario_inputs.py +127 -0
  606. GridPath-0.16.0b1/ui/server/api/scenario_new.py +133 -0
  607. GridPath-0.16.0b1/ui/server/api/scenario_results.py +416 -0
  608. GridPath-0.16.0b1/ui/server/api/scenarios.py +46 -0
  609. GridPath-0.16.0b1/ui/server/api/view_data.py +95 -0
  610. GridPath-0.16.0b1/ui/server/common_functions.py +54 -0
  611. GridPath-0.16.0b1/ui/server/create_api.py +178 -0
  612. GridPath-0.16.0b1/ui/server/db_ops/__init__.py +0 -0
  613. GridPath-0.16.0b1/ui/server/db_ops/add_scenario.py +167 -0
  614. GridPath-0.16.0b1/ui/server/db_ops/delete_scenario.py +43 -0
  615. GridPath-0.16.0b1/ui/server/run_queue_manager.py +241 -0
  616. GridPath-0.16.0b1/ui/server/run_server.py +365 -0
  617. GridPath-0.16.0b1/ui/server/save_data.py +172 -0
  618. GridPath-0.16.0b1/ui/server/scenario_process.py +199 -0
  619. GridPath-0.16.0b1/ui/server/validate_scenario.py +30 -0
  620. GridPath-0.16.0b1/viz/__init__.py +0 -0
  621. GridPath-0.16.0b1/viz/capacity_factor_plot.py +320 -0
  622. GridPath-0.16.0b1/viz/capacity_new_plot.py +178 -0
  623. GridPath-0.16.0b1/viz/capacity_retired_plot.py +175 -0
  624. GridPath-0.16.0b1/viz/capacity_total_loadzone_comparison_plot.py +185 -0
  625. GridPath-0.16.0b1/viz/capacity_total_plot.py +180 -0
  626. GridPath-0.16.0b1/viz/capacity_total_scenario_comparison_plot.py +162 -0
  627. GridPath-0.16.0b1/viz/carbon_plot.py +341 -0
  628. GridPath-0.16.0b1/viz/common_functions.py +465 -0
  629. GridPath-0.16.0b1/viz/cost_plot.py +210 -0
  630. GridPath-0.16.0b1/viz/curtailment_hydro_heatmap_plot.py +309 -0
  631. GridPath-0.16.0b1/viz/curtailment_variable_heatmap_plot.py +309 -0
  632. GridPath-0.16.0b1/viz/dispatch_plot.py +738 -0
  633. GridPath-0.16.0b1/viz/energy_plot.py +175 -0
  634. GridPath-0.16.0b1/viz/energy_target_plot.py +336 -0
  635. 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
+ [![GridPath Test Suite Status](https://github.com/blue-marble/gridpath/actions/workflows/test_gridpath.yml/badge.svg?branch=main)](https://github.com/blue-marble/gridpath/actions/workflows/test_gridpath.yml)
56
+ [![Documentation Status](https://readthedocs.org/projects/gridpath/badge/?version=latest)](https://gridpath.readthedocs.io/en/latest/?badge=latest)
57
+ [![Coverage Status](https://coveralls.io/repos/github/blue-marble/gridpath/badge.svg?branch=main)](https://coveralls.io/github/blue-marble/gridpath?branch=main)
58
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
59
+ [![Lint Black](https://github.com/blue-marble/gridpath/actions/workflows/black.yml/badge.svg?branch=main)](https://github.com/blue-marble/gridpath/actions/workflows/black.yml)
60
+ [![DOI](https://zenodo.org/badge/65574330.svg)](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
+ ![Approaches](https://github.com/blue-marble/gridpath/blob/main/doc/graphics/approaches.png?raw=true)
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
+ ```