pandapipes 0.8.4__zip → 0.9.0__zip

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 (413) hide show
  1. {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/release.yml +8 -6
  2. {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/run_tests_develop.yml +34 -29
  3. {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/run_tests_master.yml +28 -24
  4. {pandapipes-0.8.4 → pandapipes-0.9.0}/AUTHORS +2 -2
  5. {pandapipes-0.8.4 → pandapipes-0.9.0}/CHANGELOG.rst +34 -0
  6. {pandapipes-0.8.4 → pandapipes-0.9.0}/LICENSE +1 -1
  7. pandapipes-0.9.0/MANIFEST.in +3 -0
  8. {pandapipes-0.8.4 → pandapipes-0.9.0}/PKG-INFO +37 -7
  9. {pandapipes-0.8.4 → pandapipes-0.9.0}/README.rst +0 -4
  10. {pandapipes-0.8.4 → pandapipes-0.9.0}/setup.py +12 -10
  11. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/__init__.py +2 -2
  12. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/__init__.py +1 -1
  13. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/__init__.py +1 -1
  14. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/base_component.py +24 -39
  15. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_models.py +3 -70
  16. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_w_internals_models.py +8 -9
  17. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_wo_internals_models.py +8 -8
  18. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_wzerolength_models.py +2 -2
  19. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/circulation_pump.py +4 -10
  20. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/const_flow_models.py +6 -8
  21. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/node_element_models.py +2 -2
  22. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/node_models.py +2 -2
  23. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/circulation_pump_mass_component.py +1 -4
  24. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/circulation_pump_pressure_component.py +1 -5
  25. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/component_toolbox.py +44 -1
  26. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/compressor_component.py +31 -9
  27. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/ext_grid_component.py +4 -6
  28. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/flow_control_component.py +42 -51
  29. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/heat_exchanger_component.py +21 -33
  30. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/junction_component.py +27 -20
  31. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/mass_storage_component.py +1 -1
  32. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pipe_component.py +24 -33
  33. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pressure_control_component.py +13 -30
  34. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pump_component.py +67 -54
  35. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/sink_component.py +1 -1
  36. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/source_component.py +1 -1
  37. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/valve_component.py +7 -34
  38. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/constants.py +1 -1
  39. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/control/__init__.py +1 -1
  40. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/control/run_control.py +1 -1
  41. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/__init__.py +1 -1
  42. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/data_cleaning.py +1 -1
  43. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/preparing_steps.py +27 -22
  44. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/stanet2pandapipes.py +10 -5
  45. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/table_creation.py +140 -79
  46. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/__init__.py +1 -1
  47. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/create_valve_pipe.py +1 -1
  48. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_component.py +1 -1
  49. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_plotting.py +1 -1
  50. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/create.py +58 -4
  51. pandapipes-0.9.0/src/pandapipes/idx_branch.py +47 -0
  52. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/idx_node.py +3 -3
  53. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/__init__.py +1 -1
  54. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/convert_format.py +1 -1
  55. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/file_io.py +2 -3
  56. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/io_utils.py +1 -1
  57. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/__init__.py +1 -1
  58. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/__init__.py +1 -1
  59. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/controller/__init__.py +1 -1
  60. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/controller/multinet_control.py +1 -1
  61. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/run_control_multinet.py +1 -1
  62. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/create_multinet.py +1 -2
  63. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/multinet.py +1 -1
  64. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/timeseries/__init__.py +1 -1
  65. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/timeseries/run_time_series_multinet.py +7 -6
  66. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/__init__.py +1 -1
  67. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/nw_aux.py +1 -1
  68. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_gas_networks.py +1 -1
  69. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_heat_transfer_networks.py +1 -1
  70. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_water_networks.py +1 -1
  71. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pandapipes_net.py +1 -1
  72. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/__init__.py +1 -1
  73. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/build_system_matrix.py +1 -1
  74. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_calculation.py +36 -8
  75. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_toolbox.py +8 -7
  76. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_toolbox_numba.py +11 -6
  77. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/internals_toolbox.py +1 -1
  78. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/pipeflow_setup.py +138 -55
  79. pandapipes-0.9.0/src/pandapipes/pf/result_extraction.py +305 -0
  80. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pipeflow.py +58 -67
  81. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/__init__.py +1 -1
  82. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/collections.py +1 -1
  83. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/generic_geodata.py +9 -13
  84. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/geo.py +1 -1
  85. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/patch_makers.py +1 -1
  86. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/pipeflow_results.py +1 -1
  87. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/plotting_toolbox.py +1 -1
  88. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/simple_plot.py +1 -1
  89. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/__init__.py +1 -1
  90. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/compressibility.txt +3 -0
  91. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/density.txt +58 -0
  92. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/der_compressibility.txt +3 -0
  93. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/gas_composition.txt +10 -0
  94. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/heat_capacity.txt +58 -0
  95. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/higher_heating_value.txt +3 -0
  96. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/molar_mass.txt +2 -0
  97. pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/viscosity.txt +58 -0
  98. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/compressibility.txt +3 -0
  99. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/density.txt +58 -0
  100. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/der_compressibility.txt +3 -0
  101. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/gas_composition.txt +13 -0
  102. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/heat_capacity.txt +58 -0
  103. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/higher_heating_value.txt +3 -0
  104. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/molar_mass.txt +2 -0
  105. pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/viscosity.txt +58 -0
  106. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/fluids.py +26 -25
  107. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/properties_toolbox.py +1 -1
  108. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/__init__.py +1 -1
  109. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/std_type_class.py +4 -3
  110. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/std_types.py +1 -1
  111. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/__init__.py +1 -1
  112. {pandapipes-0.8.4/pandapipes/test/networks → pandapipes-0.9.0/src/pandapipes/test/api}/__init__.py +1 -1
  113. pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.8.5_gas.json +412 -0
  114. pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.8.5_water.json +466 -0
  115. pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.9.0_gas.json +458 -0
  116. pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.9.0_water.json +520 -0
  117. pandapipes-0.9.0/src/pandapipes/test/api/release_cycle/release_control_test_network.py +245 -0
  118. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_aux_function.py +1 -1
  119. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/__init__.py +1 -1
  120. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_circ_pump_mass.py +1 -1
  121. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_circ_pump_pressure.py +1 -1
  122. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_compressor.py +1 -1
  123. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_ext_grid.py +1 -1
  124. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_heat_exchanger.py +1 -1
  125. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_mass_storage.py +1 -1
  126. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pipe_results.py +1 -1
  127. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pressure_control.py +1 -1
  128. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pump.py +44 -1
  129. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_valve.py +1 -1
  130. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_convert_format.py +1 -1
  131. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_create.py +1 -1
  132. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_network_tables.py +1 -1
  133. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_special_networks.py +2 -2
  134. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_std_types.py +1 -1
  135. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/test_stanet_converter.py +1 -1
  136. {pandapipes-0.8.4/pandapipes/test/api → pandapipes-0.9.0/src/pandapipes/test/io}/__init__.py +1 -1
  137. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/io/test_file_io.py +2 -2
  138. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/__init__.py +1 -1
  139. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/test_control_multinet.py +1 -1
  140. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/test_time_series_multinet.py +1 -1
  141. {pandapipes-0.8.4/pandapipes/test/io → pandapipes-0.9.0/src/pandapipes/test/networks}/__init__.py +1 -1
  142. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/networks/test_networks.py +1 -1
  143. pandapipes-0.9.0/src/pandapipes/test/openmodelica_comparison/__init__.py +3 -0
  144. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/pipeflow_openmodelica_comparison.py +1 -1
  145. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/test_heat_transfer_openmodelica.py +1 -1
  146. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/test_water_openmodelica.py +1 -1
  147. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/__init__.py +1 -1
  148. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_inservice.py +136 -29
  149. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_non_convergence.py +1 -1
  150. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_options.py +1 -1
  151. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_pipeflow_analytic_comparison.py +1 -1
  152. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_pipeflow_modes.py +3 -3
  153. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_time_series.py +1 -1
  154. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_update_matrix.py +1 -1
  155. pandapipes-0.9.0/src/pandapipes/test/plotting/__init__.py +3 -0
  156. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_collections.py +1 -1
  157. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_generic_coordinates.py +2 -2
  158. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_pipeflow_results.py +1 -1
  159. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_simple_collections.py +1 -1
  160. pandapipes-0.9.0/src/pandapipes/test/properties/__init__.py +3 -0
  161. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/properties/test_fluid_specials.py +1 -1
  162. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/properties/test_properties_toolbox.py +1 -1
  163. pandapipes-0.9.0/src/pandapipes/test/pytest.ini +5 -0
  164. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/run_tests.py +1 -1
  165. pandapipes-0.9.0/src/pandapipes/test/stanet_comparison/__init__.py +3 -0
  166. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/pipeflow_stanet_comparison.py +1 -1
  167. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/test_gas_stanet.py +1 -1
  168. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/test_water_stanet.py +1 -1
  169. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/test_imports.py +1 -1
  170. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/test_toolbox.py +1 -1
  171. pandapipes-0.9.0/src/pandapipes/test/topology/__init__.py +3 -0
  172. pandapipes-0.9.0/src/pandapipes/test/topology/test_graph_searches.py +20 -0
  173. pandapipes-0.9.0/src/pandapipes/test/topology/test_nxgraph.py +27 -0
  174. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/timeseries/__init__.py +1 -1
  175. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/timeseries/run_time_series.py +4 -5
  176. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/toolbox.py +60 -92
  177. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/__init__.py +1 -1
  178. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/create_graph.py +2 -2
  179. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/graph_searches.py +1 -1
  180. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/PKG-INFO +37 -7
  181. pandapipes-0.9.0/src/pandapipes.egg-info/SOURCES.txt +403 -0
  182. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/requires.txt +3 -3
  183. pandapipes-0.8.4/MANIFEST.in +0 -7
  184. pandapipes-0.8.4/pandapipes/converter/__init__.py +0 -5
  185. pandapipes-0.8.4/pandapipes/idx_branch.py +0 -46
  186. pandapipes-0.8.4/pandapipes/pf/result_extraction.py +0 -255
  187. pandapipes-0.8.4/pandapipes/test/openmodelica_comparison/__init__.py +0 -3
  188. pandapipes-0.8.4/pandapipes/test/plotting/__init__.py +0 -3
  189. pandapipes-0.8.4/pandapipes/test/properties/__init__.py +0 -3
  190. pandapipes-0.8.4/pandapipes/test/stanet_comparison/__init__.py +0 -3
  191. pandapipes-0.8.4/pandapipes.egg-info/SOURCES.txt +0 -379
  192. {pandapipes-0.8.4 → pandapipes-0.9.0}/setup.cfg +0 -0
  193. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/gas_net_schutterwald_1bar.json +0 -0
  194. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta.json +0 -0
  195. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta_2sinks.json +0 -0
  196. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/heights.json +0 -0
  197. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_pipe.json +0 -0
  198. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_source.json +0 -0
  199. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/section_variation.json +0 -0
  200. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/t_cross.json +0 -0
  201. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/two_pipes.json +0 -0
  202. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/mixed_net.json +0 -0
  203. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/versatility.json +0 -0
  204. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/delta.json +0 -0
  205. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/heights.json +0 -0
  206. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/pumps.json +0 -0
  207. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/two_valves.json +0 -0
  208. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_1.json +0 -0
  209. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_2.json +0 -0
  210. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_3.json +0 -0
  211. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/cross_3ext.json +0 -0
  212. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/strand_net.json +0 -0
  213. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pipes.json +0 -0
  214. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pumps.json +0 -0
  215. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/t_cross.json +0 -0
  216. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/valves.json +0 -0
  217. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/two_pressure_junctions/two_pipes.json +0 -0
  218. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/mixed_net.json +0 -0
  219. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/versatility.json +0 -0
  220. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/delta.json +0 -0
  221. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/heights.json +0 -0
  222. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/one_valve_stanet.json +0 -0
  223. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/pumps.json +0 -0
  224. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/two_valves.json +0 -0
  225. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_1.json +0 -0
  226. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_2.json +0 -0
  227. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_3.json +0 -0
  228. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/cross_3ext.json +0 -0
  229. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net.json +0 -0
  230. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation1.json +0 -0
  231. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation2.json +0 -0
  232. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pipes.json +0 -0
  233. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pumps.json +0 -0
  234. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/t_cross.json +0 -0
  235. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/valves.json +0 -0
  236. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/one_pipe_stanet.json +0 -0
  237. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/two_pipes.json +0 -0
  238. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-no_sw.json +0 -0
  239. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-sw.json +0 -0
  240. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-no_sw.json +0 -0
  241. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-sw.json +0 -0
  242. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-no_sw.json +0 -0
  243. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-sw.json +0 -0
  244. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-no_sw.json +0 -0
  245. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-sw.json +0 -0
  246. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-no_sw.json +0 -0
  247. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-sw.json +0 -0
  248. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-no_sw.json +0 -0
  249. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-sw.json +0 -0
  250. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_N.json +0 -0
  251. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_PC.json +0 -0
  252. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/versatility_PC.json +0 -0
  253. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/delta_PC.json +0 -0
  254. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/pumps_N.json +0 -0
  255. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_N.json +0 -0
  256. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_PC.json +0 -0
  257. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_N.json +0 -0
  258. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_PC.json +0 -0
  259. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_N.json +0 -0
  260. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_PC.json +0 -0
  261. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_N.json +0 -0
  262. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_PC.json +0 -0
  263. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/pump_N.json +0 -0
  264. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_N.json +0 -0
  265. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_PC.json +0 -0
  266. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_N.json +0 -0
  267. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_PC.json +0 -0
  268. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_N.json +0 -0
  269. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_PC.json +0 -0
  270. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_N.json +0 -0
  271. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_PC.json +0 -0
  272. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_N.json +0 -0
  273. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_PC.json +0 -0
  274. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_N.json +0 -0
  275. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_PC.json +0 -0
  276. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/delta_N.json +0 -0
  277. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/pumps_N.json +0 -0
  278. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_N.json +0 -0
  279. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_PC.json +0 -0
  280. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_N.json +0 -0
  281. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_PC.json +0 -0
  282. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_N.json +0 -0
  283. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_PC.json +0 -0
  284. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_N.json +0 -0
  285. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_PC.json +0 -0
  286. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/cross_PC.json +0 -0
  287. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/pump_N.json +0 -0
  288. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_N.json +0 -0
  289. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_PC.json +0 -0
  290. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_N.json +0 -0
  291. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_PC.json +0 -0
  292. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_N.json +0 -0
  293. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_PC.json +0 -0
  294. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_N.json +0 -0
  295. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_PC.json +0 -0
  296. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/compressibility.txt +0 -0
  297. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/density.txt +0 -0
  298. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/der_compressibility.txt +0 -0
  299. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/heat_capacity.txt +0 -0
  300. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/molar_mass.txt +0 -0
  301. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/viscosity.txt +0 -0
  302. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/density.txt +0 -0
  303. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/heat_capacity.txt +0 -0
  304. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/molar_mass.txt +0 -0
  305. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/viscosity.txt +0 -0
  306. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/density.txt +0 -0
  307. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/heat_capacity.txt +0 -0
  308. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/molar_mass.txt +0 -0
  309. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/viscosity.txt +0 -0
  310. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/compressibility.txt +0 -0
  311. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/density.txt +0 -0
  312. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/der_compressibility.txt +0 -0
  313. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/heat_capacity.txt +0 -0
  314. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/higher_heating_value.txt +0 -0
  315. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/lower_heating_value.txt +0 -0
  316. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/molar_mass.txt +0 -0
  317. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/viscosity.txt +0 -0
  318. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/compressibility.txt +0 -0
  319. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/density.txt +0 -0
  320. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/der_compressibility.txt +0 -0
  321. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/heat_capacity.txt +0 -0
  322. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/higher_heating_value.txt +0 -0
  323. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/lower_heating_value.txt +0 -0
  324. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/molar_mass.txt +0 -0
  325. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/viscosity.txt +0 -0
  326. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/compressibility.txt +0 -0
  327. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/density.txt +0 -0
  328. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/der_compressibility.txt +0 -0
  329. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/heat_capacity.txt +0 -0
  330. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/higher_heating_value.txt +0 -0
  331. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/lower_heating_value.txt +0 -0
  332. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/molar_mass.txt +0 -0
  333. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/viscosity.txt +0 -0
  334. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/compressibility.txt +0 -0
  335. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/density.txt +0 -0
  336. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/der_compressibility.txt +0 -0
  337. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/heat_capacity.txt +0 -0
  338. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/higher_heating_value.txt +0 -0
  339. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/lower_heating_value.txt +0 -0
  340. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/molar_mass.txt +0 -0
  341. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/viscosity.txt +0 -0
  342. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/density.txt +0 -0
  343. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/heat_capacity.txt +0 -0
  344. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/molar_mass.txt +0 -0
  345. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/viscosity.txt +0 -0
  346. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/density.txt +0 -0
  347. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/heat_capacity.txt +0 -0
  348. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/molar_mass.txt +0 -0
  349. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/viscosity.txt +0 -0
  350. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/compressibility.txt +0 -0
  351. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/density.txt +0 -0
  352. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/der_compressibility.txt +0 -0
  353. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/heat_capacity.txt +0 -0
  354. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/molar_mass.txt +0 -0
  355. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/viscosity.txt +0 -0
  356. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pipe.csv +0 -0
  357. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P1.csv +0 -0
  358. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P2.csv +0 -0
  359. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P3.csv +0 -0
  360. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.0.json +0 -0
  361. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.1.json +0 -0
  362. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.2.json +0 -0
  363. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.2.0.json +0 -0
  364. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.4.0.json +0 -0
  365. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.5.0.json +0 -0
  366. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.6.0.json +0 -0
  367. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.7.0.json +0 -0
  368. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.0_gas.json +0 -0
  369. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.0_water.json +0 -0
  370. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.1_gas.json +0 -0
  371. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.1_water.json +0 -0
  372. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.2_gas.json +0 -0
  373. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.2_water.json +0 -0
  374. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.3_gas.json +0 -0
  375. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.3_water.json +0 -0
  376. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.4_gas.json +0 -0
  377. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.4_water.json +0 -0
  378. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/release_cycle/release_control_test_sink_profiles.csv +0 -0
  379. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/release_cycle/release_control_test_source_profiles.csv +0 -0
  380. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_flow_control.py +0 -0
  381. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_time_series.py +0 -0
  382. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/__init__.py +0 -0
  383. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini.csv +0 -0
  384. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_2valvepipe.csv +0 -0
  385. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_closed.csv +0 -0
  386. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_open.csv +0 -0
  387. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_2zu_2ab_an.csv +0 -0
  388. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_masche_1load_an.csv +0 -0
  389. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_masche_1load_direction_an.csv +0 -0
  390. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_one_pipe_an.csv +0 -0
  391. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_tee_2ab_1zu_an.csv +0 -0
  392. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_tee_2zu_1ab_an.csv +0 -0
  393. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/ext_grid_p.csv +0 -0
  394. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/gas_sections_an.csv +0 -0
  395. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/heat_exchanger_test.csv +0 -0
  396. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/hydraulics.csv +0 -0
  397. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/pressure_control_test_analytical.csv +0 -0
  398. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_circ_pump_mass.csv +0 -0
  399. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_circ_pump_pressure.csv +0 -0
  400. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_pressure_control.csv +0 -0
  401. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_pump.csv +0 -0
  402. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_ext_grid/mdot_kg_per_s.csv +0 -0
  403. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_junction/p_bar.csv +0 -0
  404. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_pipe/lambda.csv +0 -0
  405. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_pipe/reynolds.csv +0 -0
  406. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_pipe/v_mean_m_per_s.csv +0 -0
  407. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_sink/mdot_kg_per_s.csv +0 -0
  408. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_source/mdot_kg_per_s.csv +0 -0
  409. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_sink_profiles.csv +0 -0
  410. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_source_profiles.csv +0 -0
  411. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_valve.csv +0 -0
  412. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/dependency_links.txt +0 -0
  413. {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/top_level.txt +0 -0
@@ -75,28 +75,30 @@ jobs:
75
75
  needs: upload
76
76
  strategy:
77
77
  matrix:
78
- python-version: ['3.7', '3.8', '3.9', '3.10']
78
+ python-version: ['3.8', '3.9', '3.10', '3.11']
79
79
  os: [ ubuntu-latest, windows-latest ]
80
80
  steps:
81
81
  - name: Set up Python ${{ matrix.python-version }}
82
- uses: actions/setup-python@v2
82
+ uses: actions/setup-python@v4
83
83
  with:
84
84
  python-version: ${{ matrix.python-version }}
85
85
  - name: Install dependencies
86
86
  run: |
87
87
  python -m pip install --upgrade pip
88
- python -m pip install pytest python-igraph pytest-split numba
88
+ python -m pip install pytest igraph pytest-split
89
+ if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
90
+ shell: bash
89
91
  - name: Install pandapipes from TestPyPI
90
92
  if: ${{ inputs.upload_server == 'testpypi'}}
91
93
  run: |
92
- pip install --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pandapipes
94
+ python -m pip install --no-cache-dir -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pandapipes
93
95
  - name: Install pandapipes from PyPI
94
96
  if: ${{ inputs.upload_server == 'pypi'}}
95
97
  run: |
96
- pip install pandapipes
98
+ python -m pip install pandapipes
97
99
  - name: List all installed packages
98
100
  run: |
99
- pip list
101
+ python -m pip list
100
102
  - name: Test with pytest
101
103
  run: |
102
104
  pytest --pyargs pandapipes.test
@@ -14,36 +14,38 @@ on:
14
14
 
15
15
  jobs:
16
16
  build:
17
-
18
- runs-on: ubuntu-latest
17
+ runs-on: ${{ matrix.os }}
19
18
  strategy:
20
19
  matrix:
21
- python-version: ['3.7', '3.8', '3.9', '3.10']
20
+ python-version: ['3.8', '3.9', '3.10', '3.11']
21
+ os: [ ubuntu-latest, windows-latest ]
22
22
  steps:
23
- - uses: actions/checkout@v2
23
+ - uses: actions/checkout@v3
24
24
  - name: Set up Python ${{ matrix.python-version }}
25
- uses: actions/setup-python@v2
25
+ uses: actions/setup-python@v4
26
26
  with:
27
27
  python-version: ${{ matrix.python-version }}
28
28
  - name: Install dependencies
29
29
  run: |
30
30
  python -m pip install --upgrade pip
31
- python -m pip install pytest python-igraph pytest-split numba
31
+ python -m pip install pytest igraph pytest-split
32
+ if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
32
33
  if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
34
  python -m pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
34
- pip install .
35
+ python -m pip install .
36
+ shell: bash
35
37
  - name: List all installed packages
36
38
  run: |
37
- pip list
39
+ python -m pip list
38
40
  - name: Test with pytest
39
41
  if: ${{ matrix.python-version != '3.9' }}
40
42
  run: |
41
- pytest
43
+ python -m pytest
42
44
  - name: Test with pytest and Codecov
43
45
  if: ${{ matrix.python-version == '3.9' }}
44
46
  run: |
45
47
  python -m pip install pytest-cov
46
- pytest --cov=./ --cov-report=xml
48
+ python -m pytest --cov=./ --cov-report=xml
47
49
  - name: Upload coverage to Codecov
48
50
  if: ${{ matrix.python-version == '3.9' }}
49
51
  uses: codecov/codecov-action@v1
@@ -51,16 +53,15 @@ jobs:
51
53
  verbose: true
52
54
 
53
55
  linting:
54
-
55
- runs-on: ubuntu-latest
56
+ runs-on: ${{ matrix.os }}
56
57
  strategy:
57
58
  matrix:
58
- python-version: ['3.8']
59
-
59
+ python-version: ['3.10']
60
+ os: [ ubuntu-latest, windows-latest ]
60
61
  steps:
61
- - uses: actions/checkout@v2
62
+ - uses: actions/checkout@v3
62
63
  - name: Set up Python ${{ matrix.python-version }}
63
- uses: actions/setup-python@v2
64
+ uses: actions/setup-python@v4
64
65
  with:
65
66
  python-version: ${{ matrix.python-version }}
66
67
  - name: Install dependencies
@@ -69,10 +70,11 @@ jobs:
69
70
  python -m pip install flake8
70
71
  if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
71
72
  python -m pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
72
- pip install .
73
+ python -m pip install .
74
+ shell: bash
73
75
  - name: List all installed packages
74
76
  run: |
75
- pip list
77
+ python -m pip list
76
78
  - name: Lint with flake8 (syntax errors and undefinded names)
77
79
  run: |
78
80
  # stop the build if there are Python syntax errors or undefined names
@@ -83,39 +85,42 @@ jobs:
83
85
  flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
84
86
 
85
87
  tutorial_tests:
86
- runs-on: ubuntu-latest
88
+ runs-on: ${{ matrix.os }}
87
89
  strategy:
88
90
  matrix:
89
- python-version: ['3.7', '3.8', '3.9', '3.10']
91
+ python-version: ['3.8', '3.9', '3.10', '3.11']
92
+ os: [ ubuntu-latest, windows-latest ]
90
93
  steps:
91
- - uses: actions/checkout@v2
94
+ - uses: actions/checkout@v3
92
95
  - name: Set up Python ${{ matrix.python-version }}
93
- uses: actions/setup-python@v2
96
+ uses: actions/setup-python@v4
94
97
  with:
95
98
  python-version: ${{ matrix.python-version }}
96
99
  - name: Install dependencies
97
100
  run: |
98
101
  python -m pip install --upgrade pip
99
- python -m pip install pytest nbmake pytest-xdist pytest-split python-igraph numba
102
+ python -m pip install pytest nbmake pytest-xdist pytest-split igraph
103
+ if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
100
104
  if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
101
105
  python -m pip install git+https://github.com/e2nIEE/pandapower@develop#egg=pandapower
102
- pip install .
106
+ python -m pip install .
107
+ shell: bash
103
108
  - name: List all installed packages
104
109
  run: |
105
- pip list
110
+ python -m pip list
106
111
  - name: Test with pytest
107
112
  run: |
108
- pytest --nbmake -n=auto "./tutorials"
113
+ python -m pytest --nbmake -n=auto "./tutorials"
109
114
 
110
115
  docs_check:
111
116
  runs-on: ubuntu-latest
112
117
  strategy:
113
118
  matrix:
114
- python-version: [ '3.8' ]
119
+ python-version: [ '3.10' ]
115
120
  steps:
116
- - uses: actions/checkout@v2
121
+ - uses: actions/checkout@v3
117
122
  - name: Set up Python ${{ matrix.python-version }}
118
- uses: actions/setup-python@v2
123
+ uses: actions/setup-python@v4
119
124
  with:
120
125
  python-version: ${{ matrix.python-version }}
121
126
  - name: Check docs for Python ${{ matrix.python-version }}
@@ -1,7 +1,7 @@
1
1
  # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2
2
  # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
3
 
4
- # pandapipes-master branch has to work with pandapower-master branch
4
+ # pandapipes-master branch is designed to work with pandapower-master branch
5
5
 
6
6
  name: ppipes_master
7
7
 
@@ -13,37 +13,38 @@ on:
13
13
 
14
14
  jobs:
15
15
  build:
16
-
17
- runs-on: ubuntu-latest
16
+ runs-on: ${{ matrix.os }}
18
17
  strategy:
19
18
  matrix:
20
- python-version: ['3.7', '3.8', '3.9', '3.10']
21
-
19
+ python-version: ['3.8', '3.9', '3.10', '3.11']
20
+ os: [ ubuntu-latest, windows-latest ]
22
21
  steps:
23
- - uses: actions/checkout@v2
22
+ - uses: actions/checkout@v3
24
23
  - name: Set up Python ${{ matrix.python-version }}
25
- uses: actions/setup-python@v2
24
+ uses: actions/setup-python@v4
26
25
  with:
27
26
  python-version: ${{ matrix.python-version }}
28
27
  - name: Install dependencies
29
28
  run: |
30
29
  python -m pip install --upgrade pip
31
- python -m pip install pytest python-igraph pytest-split numba
30
+ python -m pip install pytest igraph pytest-split
31
+ if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
32
32
  if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
- python -m pip install git+https://github.com/e2nIEE/pandapower@master#egg=pandapower
34
- pip install .
33
+ python -m pip install git+https://github.com/e2nIEE/pandapower@master#egg=pandapower;
34
+ python -m pip install .
35
+ shell: bash
35
36
  - name: List all installed packages
36
37
  run: |
37
- pip list
38
+ python -m pip list
38
39
  - name: Test with pytest
39
40
  if: ${{ matrix.python-version != '3.9' }}
40
41
  run: |
41
- pytest
42
+ python -m pytest
42
43
  - name: Test with pytest and Codecov
43
44
  if: ${{ matrix.python-version == '3.9' }}
44
45
  run: |
45
46
  python -m pip install pytest-cov
46
- pytest --cov=./ --cov-report=xml
47
+ python -m pytest --cov=./ --cov-report=xml
47
48
  - name: Upload coverage to Codecov
48
49
  if: ${{ matrix.python-version == '3.9' }}
49
50
  uses: codecov/codecov-action@v1
@@ -51,39 +52,42 @@ jobs:
51
52
  verbose: true
52
53
 
53
54
  tutorial_tests:
54
- runs-on: ubuntu-latest
55
+ runs-on: ${{ matrix.os }}
55
56
  strategy:
56
57
  matrix:
57
- python-version: ['3.7', '3.8', '3.9', '3.10']
58
+ python-version: ['3.8', '3.9', '3.10', '3.11']
59
+ os: [ ubuntu-latest, windows-latest ]
58
60
  steps:
59
- - uses: actions/checkout@v2
61
+ - uses: actions/checkout@v3
60
62
  - name: Set up Python ${{ matrix.python-version }}
61
- uses: actions/setup-python@v2
63
+ uses: actions/setup-python@v4
62
64
  with:
63
65
  python-version: ${{ matrix.python-version }}
64
66
  - name: Install dependencies
65
67
  run: |
66
68
  python -m pip install --upgrade pip
67
- python -m pip install pytest nbmake pytest-xdist pytest-split python-igraph numba
69
+ python -m pip install pytest nbmake pytest-xdist pytest-split igraph
70
+ if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
68
71
  if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
69
72
  python -m pip install git+https://github.com/e2nIEE/pandapower@master#egg=pandapower
70
- pip install .
73
+ python -m pip install .
74
+ shell: bash
71
75
  - name: List all installed packages
72
76
  run: |
73
- pip list
77
+ python -m pip list
74
78
  - name: Test with pytest
75
79
  run: |
76
- pytest --nbmake -n=auto "./tutorials"
80
+ python -m pytest --nbmake -n=auto "./tutorials"
77
81
 
78
82
  docs_check:
79
83
  runs-on: ubuntu-latest
80
84
  strategy:
81
85
  matrix:
82
- python-version: [ '3.8' ]
86
+ python-version: [ '3.10' ]
83
87
  steps:
84
- - uses: actions/checkout@v2
88
+ - uses: actions/checkout@v3
85
89
  - name: Set up Python ${{ matrix.python-version }}
86
- uses: actions/setup-python@v2
90
+ uses: actions/setup-python@v4
87
91
  with:
88
92
  python-version: ${{ matrix.python-version }}
89
93
  - name: Check docs for Python ${{ matrix.python-version }}
@@ -1,9 +1,9 @@
1
- Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
 
4
4
  Lead Developers:
5
5
  - Daniel Lohmeier
6
- - Simon Ruben Drauz
6
+ - Simon Ruben Drauz-Mauel
7
7
  - Jolando Marius Kisse
8
8
 
9
9
  Main Contributors:
@@ -1,6 +1,40 @@
1
1
  Change Log
2
2
  =============
3
3
 
4
+ [0.9.0] - 2023-12-22
5
+ -------------------------------
6
+
7
+ - [ADDED] multiple creation of heat exchanger
8
+ - [ADDED] support Python 3.11 (now included in test pipeline)
9
+ - [ADDED] after the connectivity check, intercept the pipeflow if no more nodes are in-service (heat and hydraulic)
10
+ - [ADDED] adding biomethane (pure and treated) as additonal fluid
11
+ - [ADDED] result tables can be assembled modularly
12
+ - [CHANGED] dropped support for Python 3.7 (no longer included in test pipeline)
13
+ - [CHANGED] connectivity check now separated by hydraulics and heat_transfer calculation, so that also results can differ in some rows (NaN or not)
14
+ - [CHANGED] dynamic creation of lookups for getting pit as pandas tables
15
+ - [CHANGED] components can have their own internal arrays for specific calculations (e.g. for compressor pressure ratio), so that the pit does not need to include such component specific entries
16
+ - [CHANGED] .readthedocs.yml due to deprecation
17
+ - [CHANGED] changing from setuptools flat-layout into src-layout
18
+ - [CHANGED] calculate thermal derivative globally, adaptions before/after can be done component-wise
19
+ - [CHANGED] moving 'PipeflowNotConverged' error from pipeflow to pipeflow_setup
20
+ - [CHANGED] moving 'result_extraction' under pf folder
21
+ - [FIXED] in STANET converter: bug fix for heat exchanger creation and external temperatures of pipes added
22
+ - [FIXED] build igraph considers all components
23
+ - [FIXED] creating nxgraph and considering pressure circulation pumps correctly
24
+ - [FIXED] error in tutorial 'circular flow in a district heating grid'
25
+ - [FIXED] caused error during 'pip install pandapipes'
26
+ - [REMOVED] broken travis badge removed from readme
27
+ - [REMOVED] branch TINIT removed as it is not a solution variable, temperature determined on the fly
28
+ - [REMOVED] 'converged' setting from options
29
+
30
+ [0.8.5] - 2023-06-19
31
+ -------------------------------
32
+ - [FIXED] consider ambient pressure in calculation of compression power for pumps/compressors
33
+ - [FIXED] np.bool error in pipeflow calculation due to deprecation of np.bool
34
+ - [FIXED] use igraph package instead of python-igraph (has been renamed)
35
+ - [ADDED] gas specific calculation of heat capacity ration kappa = cp/cv (for pumps/compressors)
36
+ - [REMOVED] Python 3.7 removed from test pipeline due to inconsistencies with pandapower
37
+
4
38
  [0.8.4] - 2023-02-02
5
39
  -------------------------------
6
40
  - [FIXED] added flow control to nxgraph
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  and Energy System Technology (IEE), Kassel, and University of Kassel. Further
3
3
  contributions by individual contributors (see AUTHORS file for details). All rights reserved.
4
4
 
@@ -0,0 +1,3 @@
1
+ graft src
2
+
3
+ include LICENSE AUTHORS README.rst CHANGELOG.rst .github/**/*.yml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pandapipes
3
- Version: 0.8.4
3
+ Version: 0.9.0
4
4
  Summary: A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids
5
5
  Home-page: http://www.pandapipes.org
6
6
  Author: Simon Ruben Drauz-Mauel, Daniel Lohmeier, Jolando Marius Kisse
@@ -16,10 +16,10 @@ Classifier: Natural Language :: English
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python
18
18
  Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.8
22
- Classifier: Programming Language :: Python :: 3.7
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.11
23
23
  Description-Content-Type: text/x-rst
24
24
  Provides-Extra: docs
25
25
  Provides-Extra: plotting
@@ -47,10 +47,6 @@ License-File: LICENSE
47
47
  :target: http://pandapipes.readthedocs.io/
48
48
  :alt: docs
49
49
 
50
- .. image:: https://travis-ci.org/e2nIEE/pandapipes.svg?branch=master
51
- :target: https://travis-ci.org/e2nIEE/pandapipes/branches
52
- :alt: travis
53
-
54
50
  .. image:: https://codecov.io/gh/e2nIEE/pandapipes/branch/master/graph/badge.svg
55
51
  :target: https://codecov.io/github/e2nIEE/pandapipes?branch=master
56
52
  :alt: codecov
@@ -114,6 +110,40 @@ the `pandapipes contribution guidelines <https://github.com/e2nIEE/pandapipes/bl
114
110
  Change Log
115
111
  =============
116
112
 
113
+ [0.9.0] - 2023-12-22
114
+ -------------------------------
115
+
116
+ - [ADDED] multiple creation of heat exchanger
117
+ - [ADDED] support Python 3.11 (now included in test pipeline)
118
+ - [ADDED] after the connectivity check, intercept the pipeflow if no more nodes are in-service (heat and hydraulic)
119
+ - [ADDED] adding biomethane (pure and treated) as additonal fluid
120
+ - [ADDED] result tables can be assembled modularly
121
+ - [CHANGED] dropped support for Python 3.7 (no longer included in test pipeline)
122
+ - [CHANGED] connectivity check now separated by hydraulics and heat_transfer calculation, so that also results can differ in some rows (NaN or not)
123
+ - [CHANGED] dynamic creation of lookups for getting pit as pandas tables
124
+ - [CHANGED] components can have their own internal arrays for specific calculations (e.g. for compressor pressure ratio), so that the pit does not need to include such component specific entries
125
+ - [CHANGED] .readthedocs.yml due to deprecation
126
+ - [CHANGED] changing from setuptools flat-layout into src-layout
127
+ - [CHANGED] calculate thermal derivative globally, adaptions before/after can be done component-wise
128
+ - [CHANGED] moving 'PipeflowNotConverged' error from pipeflow to pipeflow_setup
129
+ - [CHANGED] moving 'result_extraction' under pf folder
130
+ - [FIXED] in STANET converter: bug fix for heat exchanger creation and external temperatures of pipes added
131
+ - [FIXED] build igraph considers all components
132
+ - [FIXED] creating nxgraph and considering pressure circulation pumps correctly
133
+ - [FIXED] error in tutorial 'circular flow in a district heating grid'
134
+ - [FIXED] caused error during 'pip install pandapipes'
135
+ - [REMOVED] broken travis badge removed from readme
136
+ - [REMOVED] branch TINIT removed as it is not a solution variable, temperature determined on the fly
137
+ - [REMOVED] 'converged' setting from options
138
+
139
+ [0.8.5] - 2023-06-19
140
+ -------------------------------
141
+ - [FIXED] consider ambient pressure in calculation of compression power for pumps/compressors
142
+ - [FIXED] np.bool error in pipeflow calculation due to deprecation of np.bool
143
+ - [FIXED] use igraph package instead of python-igraph (has been renamed)
144
+ - [ADDED] gas specific calculation of heat capacity ration kappa = cp/cv (for pumps/compressors)
145
+ - [REMOVED] Python 3.7 removed from test pipeline due to inconsistencies with pandapower
146
+
117
147
  [0.8.4] - 2023-02-02
118
148
  -------------------------------
119
149
  - [FIXED] added flow control to nxgraph
@@ -18,10 +18,6 @@
18
18
  :target: http://pandapipes.readthedocs.io/
19
19
  :alt: docs
20
20
 
21
- .. image:: https://travis-ci.org/e2nIEE/pandapipes.svg?branch=master
22
- :target: https://travis-ci.org/e2nIEE/pandapipes/branches
23
- :alt: travis
24
-
25
21
  .. image:: https://codecov.io/gh/e2nIEE/pandapipes/branch/master/graph/badge.svg
26
22
  :target: https://codecov.io/github/e2nIEE/pandapipes?branch=master
27
23
  :alt: codecov
@@ -1,11 +1,12 @@
1
- # Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ # Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  # and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
  # Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4
4
 
5
- from setuptools import find_packages
6
- from setuptools import setup
7
5
  import re
8
6
 
7
+ from setuptools import find_namespace_packages
8
+ from setuptools import setup
9
+
9
10
  with open('README.rst', 'rb') as f:
10
11
  install = f.read().decode('utf-8')
11
12
 
@@ -26,7 +27,7 @@ classifiers = [
26
27
 
27
28
  with open('.github/workflows/run_tests_master.yml', 'rb') as f:
28
29
  lines = f.read().decode('utf-8')
29
- versions = set(re.findall('3.[7-9]', lines)) | set(re.findall('3.1[0-9]', lines))
30
+ versions = set(re.findall('3.[8-9]', lines)) | set(re.findall('3.1[0-9]', lines))
30
31
  for version in versions:
31
32
  classifiers.append('Programming Language :: Python :: %s' % version)
32
33
 
@@ -34,22 +35,23 @@ long_description = '\n\n'.join((install, changelog))
34
35
 
35
36
  setup(
36
37
  name='pandapipes',
37
- version='0.8.4',
38
+ version='0.9.0',
38
39
  author='Simon Ruben Drauz-Mauel, Daniel Lohmeier, Jolando Marius Kisse',
39
40
  author_email='simon.ruben.drauz-mauel@iee.fraunhofer.de, daniel.lohmeier@retoflow.de, '
40
41
  'jolando.kisse@uni-kassel.de',
41
42
  description='A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids',
42
43
  long_description=long_description,
43
- long_description_content_type='text/x-rst',
44
+ long_description_content_type='text/x-rst',
44
45
  url='http://www.pandapipes.org',
45
46
  license='BSD',
46
- install_requires=["pandapower>=2.11.1", "matplotlib", "shapely"],
47
+ install_requires=["pandapower>=2.13.1", "matplotlib", "shapely"],
47
48
  extras_require={"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex"],
48
- "plotting": ["plotly", "python-igraph"],
49
+ "plotting": ["plotly", "igraph"],
49
50
  "test": ["pytest", "pytest-xdist", "nbmake"],
50
51
  "all": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
51
- "plotly", "python-igraph", "pytest", "pytest-xdist", "nbmake"]},
52
- packages=find_packages(),
52
+ "plotly", "igraph", "pytest", "pytest-xdist", "nbmake"]},
53
+ packages=find_namespace_packages(where='src'),
54
+ package_dir={"": "src"},
53
55
  include_package_data=True,
54
56
  classifiers=classifiers
55
57
  )
@@ -1,8 +1,8 @@
1
- # Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ # Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  # and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
  # Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4
4
 
5
- __version__ = '0.8.4'
5
+ __version__ = '0.9.0'
6
6
  __format_version__ = '0.8.0'
7
7
 
8
8
  import pandas as pd
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ # Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  # and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
  # Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ # Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  # and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
  # Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
1
+ # Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
2
2
  # and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
3
3
  # Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4
4
 
@@ -33,7 +33,7 @@ class Component:
33
33
  return res_table
34
34
 
35
35
  @classmethod
36
- def extract_results(cls, net, options, branch_results, nodes_connected, branches_connected):
36
+ def extract_results(cls, net, options, branch_results, mode):
37
37
  """
38
38
  Function that extracts certain results.
39
39
 
@@ -43,10 +43,8 @@ class Component:
43
43
  :type options:
44
44
  :param branch_results:
45
45
  :type branch_results:
46
- :param nodes_connected:
47
- :type nodes_connected:
48
- :param branches_connected:
49
- :type branches_connected:
46
+ :param mode:
47
+ :type mode:
50
48
  :return: No Output.
51
49
  """
52
50
  raise NotImplementedError
@@ -80,6 +78,15 @@ class Component:
80
78
  def adaption_after_derivatives_hydraulic(cls, net, branch_pit, node_pit, idx_lookups, options):
81
79
  pass
82
80
 
81
+ @classmethod
82
+ def adaption_before_derivatives_thermal(cls, net, branch_pit, node_pit, idx_lookups, options):
83
+ pass
84
+
85
+ @classmethod
86
+ def adaption_after_derivatives_thermal(cls, net, branch_pit, node_pit, idx_lookups, options):
87
+ pass
88
+
89
+
83
90
  @classmethod
84
91
  def create_node_lookups(cls, net, ft_lookups, table_lookup, idx_lookups, current_start,
85
92
  current_table, internal_nodes_lookup):
@@ -128,65 +135,43 @@ class Component:
128
135
  return current_start, current_table
129
136
 
130
137
  @classmethod
131
- def create_pit_node_entries(cls, net, node_pit):
138
+ def create_component_array(cls, net, component_pits):
132
139
  """
133
- Function which creates pit branch entries.
140
+ Function which creates an internal array of the component in analogy to the pit, but with
141
+ component specific entries, that are not needed in the pit.
134
142
 
135
143
  :param net: The pandapipes network
136
144
  :type net: pandapipesNet
137
- :param node_pit:
138
- :type node_pit:
139
- :return: No Output.
145
+ :param component_pits: dictionary of component specific arrays
146
+ :type component_pits: dict
147
+ :return:
148
+ :rtype:
140
149
  """
141
150
  pass
142
151
 
143
152
  @classmethod
144
- def create_pit_branch_entries(cls, net, branch_pit):
153
+ def create_pit_node_entries(cls, net, node_pit):
145
154
  """
146
155
  Function which creates pit branch entries.
147
156
 
148
157
  :param net: The pandapipes network
149
158
  :type net: pandapipesNet
150
- :param branch_pit:
151
- :type branch_pit:
152
- :return: No Output.
153
- """
154
- pass
155
-
156
- @classmethod
157
- def calculate_derivatives_hydraulic(cls, net, branch_pit, node_pit, idx_lookups, options):
158
- """
159
- Function which creates derivatives.
160
-
161
- :param net: The pandapipes network
162
- :type net: pandapipesNet
163
- :param branch_pit:
164
- :type branch_pit:
165
159
  :param node_pit:
166
160
  :type node_pit:
167
- :param idx_lookups:
168
- :type idx_lookups:
169
- :param options:
170
- :type options:
171
161
  :return: No Output.
172
162
  """
173
163
  pass
174
164
 
175
165
  @classmethod
176
- def calculate_derivatives_thermal(cls, net, branch_pit, node_pit, idx_lookups, options):
166
+ def create_pit_branch_entries(cls, net, branch_pit):
177
167
  """
178
- Function which creates derivatives.
168
+ Function which creates pit branch entries.
179
169
 
180
170
  :param net: The pandapipes network
181
171
  :type net: pandapipesNet
182
172
  :param branch_pit:
183
173
  :type branch_pit:
184
- :param node_pit:
185
- :type node_pit:
186
- :param idx_lookups:
187
- :type idx_lookups:
188
- :param options:
189
- :type options:
190
174
  :return: No Output.
191
175
  """
192
176
  pass
177
+