zen-garden 2.7.11__py3-none-any.whl → 2.7.13__py3-none-any.whl

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.
zen_garden/_internal.py CHANGED
@@ -71,7 +71,8 @@ def main(config, dataset_path=None, job_index=None, folder_output_path=None):
71
71
  if phase == 'operation' and not config.system.include_operation_only_phase:
72
72
  continue
73
73
  StringUtils.print_optimization_progress(scenario, steps_horizon, step, system=config.system)
74
- optimization_setup.set_phase_configurations(phase)
74
+ if optimization_setup.system.include_operation_only_phase:
75
+ optimization_setup.set_phase_configurations(phase)
75
76
  # overwrite time indices
76
77
  optimization_setup.overwrite_time_indices(step)
77
78
  # create optimization problem
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zen_garden
3
- Version: 2.7.11
3
+ Version: 2.7.13
4
4
  Summary: ZEN-garden is an optimization model of energy systems and value chains.
5
5
  Author: Alissa Ganter, Johannes Burger, Francesco De Marco, Lukas Kunz, Lukas Schmidt-Engelbertz, Paolo Gabrielli, Giovanni Sansavini
6
6
  Author-email: Jacob Mannhardt <zen-garden@ethz.ch>
@@ -1,6 +1,6 @@
1
1
  zen_garden/__init__.py,sha256=Jc8WQzHjL74sk4xOnbv1i68Bt6RuzXPkh9WYn3Jl_LE,376
2
2
  zen_garden/__main__.py,sha256=r3pop1FpaTfe9YUGxYP48T1uqdq5uZW8gBzZKbZOFno,4624
3
- zen_garden/_internal.py,sha256=COkgFHuPROBVLG_KRPnLRBZIkHdD8CuNISwOQBeV2yc,5268
3
+ zen_garden/_internal.py,sha256=K648bT1O8gD9uIrfmqPXP5lDdlkJd3-Ai111_IyIc1w,5347
4
4
  zen_garden/default_config.py,sha256=ozz2LBSGSaMH8alEAzh-6ziM9IE9zXM9PfRD3nulAIs,8663
5
5
  zen_garden/optimization_setup.py,sha256=Rv_IciR_Y9GF-OaPDDAvTQ2huTuAt94jrWpcDJCQgWQ,42176
6
6
  zen_garden/utils.py,sha256=-G4uaLix4U9Fzg7FWayK9QzHEbJ0uMdvLfgJDxVewpw,57461
@@ -30,7 +30,8 @@ zen_garden/preprocess/extract_input_data.py,sha256=PWKdel7s488SELseyAaoFkwXpzJU4
30
30
  zen_garden/preprocess/parameter_change_log.py,sha256=WNhLYTyuaFkUl_e4QH36W1chpqg00m7zg__PawPogAY,387
31
31
  zen_garden/preprocess/time_series_aggregation.py,sha256=v8xRRk4I9WZ2yi7V3I_Ersj2RV1T2WIKslx8ohkMfWI,32112
32
32
  zen_garden/preprocess/unit_handling.py,sha256=OGIHFyDdUmGU-GEGHkJGJ9RmKfDBy5-HmuBQmtYAK5Q,63043
33
- zen_garden-2.7.11.dist-info/licenses/LICENSE.txt,sha256=_kEtxPe9gWOwMzdiy8nLzgABiPdMvUS0kaSCOIrEA_E,1101
34
- zen_garden-2.7.11.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
35
- zen_garden-2.7.11.dist-info/METADATA,sha256=zasv75K3Up6l6x0wmpXez47Pgk5E5Upoh1arL8qls5A,5879
36
- zen_garden-2.7.11.dist-info/RECORD,,
33
+ zen_garden-2.7.13.dist-info/entry_points.txt,sha256=Jfa7k0xmvGql3hGJid62hGV1rzDt81uTs3PgZre0VJk,118
34
+ zen_garden-2.7.13.dist-info/licenses/LICENSE.txt,sha256=_kEtxPe9gWOwMzdiy8nLzgABiPdMvUS0kaSCOIrEA_E,1101
35
+ zen_garden-2.7.13.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
36
+ zen_garden-2.7.13.dist-info/METADATA,sha256=HCkYHQOf99ur33o1-sqAXVAxxddib2d4j3Ma9Pjy84c,5879
37
+ zen_garden-2.7.13.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ zen-garden=zen_garden.__main__:run_module
3
+ zen-viz=zen_garden.visualization:parse_arguments_and_run
4
+