pandapipes 0.12.0.dev2__tar.gz → 0.12.0.dev3__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 (414) hide show
  1. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/PKG-INFO +1 -1
  2. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/pyproject.toml +1 -1
  3. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/circulation_pump.py +36 -8
  4. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/flow_control_component.py +2 -3
  5. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/heat_consumer_component.py +2 -2
  6. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/heat_exchanger_component.py +2 -3
  7. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/create.py +6 -0
  8. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/idx_branch.py +1 -2
  9. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/idx_node.py +1 -0
  10. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/derivative_calculation.py +4 -5
  11. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/pipeflow_setup.py +40 -87
  12. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_circ_pump_mass.py +1 -1
  13. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_circ_pump_pressure.py +1 -1
  14. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_special_networks.py +42 -28
  15. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes.egg-info/PKG-INFO +1 -1
  16. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/.github/workflows/release.yml +0 -0
  17. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/.github/workflows/relying_test_on_dev_merge.yml +0 -0
  18. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/.github/workflows/run_tests_develop.yml +0 -0
  19. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/.github/workflows/run_tests_master.yml +0 -0
  20. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/AUTHORS +0 -0
  21. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/CHANGELOG.rst +0 -0
  22. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/LICENSE +0 -0
  23. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/MANIFEST.in +0 -0
  24. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/README.rst +0 -0
  25. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/setup.cfg +0 -0
  26. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/setup.py +0 -0
  27. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/__init__.py +0 -0
  28. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/__init__.py +0 -0
  29. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/__init__.py +0 -0
  30. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/base_component.py +0 -0
  31. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/branch_models.py +0 -0
  32. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/branch_w_internals_models.py +0 -0
  33. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/branch_wo_internals_models.py +0 -0
  34. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/branch_wzerolength_models.py +0 -0
  35. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/const_flow_models.py +0 -0
  36. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/node_element_models.py +0 -0
  37. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/abstract_models/node_models.py +0 -0
  38. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/circulation_pump_mass_component.py +0 -0
  39. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/circulation_pump_pressure_component.py +0 -0
  40. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/component_toolbox.py +0 -0
  41. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/compressor_component.py +0 -0
  42. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/ext_grid_component.py +0 -0
  43. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/junction_component.py +0 -0
  44. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/mass_storage_component.py +0 -0
  45. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/pipe_component.py +0 -0
  46. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/pressure_control_component.py +0 -0
  47. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/pump_component.py +0 -0
  48. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/sink_component.py +0 -0
  49. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/source_component.py +0 -0
  50. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/component_models/valve_component.py +0 -0
  51. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/constants.py +0 -0
  52. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/control/__init__.py +0 -0
  53. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/control/run_control.py +0 -0
  54. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/__init__.py +0 -0
  55. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/data_cleaning.py +0 -0
  56. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/preparing_steps.py +0 -0
  57. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/stanet2pandapipes.py +0 -0
  58. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/table_creation.py +0 -0
  59. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/valve_pipe_component/__init__.py +0 -0
  60. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/valve_pipe_component/create_valve_pipe.py +0 -0
  61. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_component.py +0 -0
  62. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_plotting.py +0 -0
  63. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/io/__init__.py +0 -0
  64. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/io/convert_format.py +0 -0
  65. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/io/file_io.py +0 -0
  66. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/io/io_utils.py +0 -0
  67. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/__init__.py +0 -0
  68. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/control/__init__.py +0 -0
  69. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/control/controller/__init__.py +0 -0
  70. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/control/controller/multinet_control.py +0 -0
  71. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/control/run_control_multinet.py +0 -0
  72. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/create_multinet.py +0 -0
  73. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/multinet.py +0 -0
  74. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/timeseries/__init__.py +0 -0
  75. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/multinet/timeseries/run_time_series_multinet.py +0 -0
  76. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/__init__.py +0 -0
  77. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/gas_net_schutterwald_1bar.json +0 -0
  78. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta.json +0 -0
  79. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta_2sinks.json +0 -0
  80. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/heights.json +0 -0
  81. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_pipe.json +0 -0
  82. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_source.json +0 -0
  83. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/section_variation.json +0 -0
  84. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/t_cross.json +0 -0
  85. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/two_pipes.json +0 -0
  86. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/mixed_net.json +0 -0
  87. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/versatility.json +0 -0
  88. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/delta.json +0 -0
  89. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/heights.json +0 -0
  90. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/pumps.json +0 -0
  91. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/two_valves.json +0 -0
  92. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_1.json +0 -0
  93. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_2.json +0 -0
  94. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_3.json +0 -0
  95. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/cross_3ext.json +0 -0
  96. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/strand_net.json +0 -0
  97. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pipes.json +0 -0
  98. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pumps.json +0 -0
  99. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/t_cross.json +0 -0
  100. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/valves.json +0 -0
  101. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/two_pressure_junctions/two_pipes.json +0 -0
  102. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/mixed_net.json +0 -0
  103. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/versatility.json +0 -0
  104. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/delta.json +0 -0
  105. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/heights.json +0 -0
  106. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/one_valve_stanet.json +0 -0
  107. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/pumps.json +0 -0
  108. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/two_valves.json +0 -0
  109. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_1.json +0 -0
  110. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_2.json +0 -0
  111. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_3.json +0 -0
  112. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/cross_3ext.json +0 -0
  113. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net.json +0 -0
  114. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation1.json +0 -0
  115. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation2.json +0 -0
  116. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pipes.json +0 -0
  117. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pumps.json +0 -0
  118. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/t_cross.json +0 -0
  119. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/valves.json +0 -0
  120. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/one_pipe_stanet.json +0 -0
  121. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/two_pipes.json +0 -0
  122. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-no_sw.json +0 -0
  123. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-sw.json +0 -0
  124. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-no_sw.json +0 -0
  125. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-sw.json +0 -0
  126. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-no_sw.json +0 -0
  127. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-sw.json +0 -0
  128. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-no_sw.json +0 -0
  129. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-sw.json +0 -0
  130. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-no_sw.json +0 -0
  131. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-sw.json +0 -0
  132. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-no_sw.json +0 -0
  133. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-sw.json +0 -0
  134. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_N.json +0 -0
  135. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_PC.json +0 -0
  136. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/versatility_PC.json +0 -0
  137. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/delta_PC.json +0 -0
  138. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/pumps_N.json +0 -0
  139. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_N.json +0 -0
  140. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_PC.json +0 -0
  141. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_N.json +0 -0
  142. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_PC.json +0 -0
  143. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_N.json +0 -0
  144. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_PC.json +0 -0
  145. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_N.json +0 -0
  146. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_PC.json +0 -0
  147. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/pump_N.json +0 -0
  148. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_N.json +0 -0
  149. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_PC.json +0 -0
  150. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_N.json +0 -0
  151. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_PC.json +0 -0
  152. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_N.json +0 -0
  153. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_PC.json +0 -0
  154. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_N.json +0 -0
  155. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_PC.json +0 -0
  156. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_N.json +0 -0
  157. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_PC.json +0 -0
  158. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_N.json +0 -0
  159. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_PC.json +0 -0
  160. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/delta_N.json +0 -0
  161. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/pumps_N.json +0 -0
  162. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_N.json +0 -0
  163. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_PC.json +0 -0
  164. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_N.json +0 -0
  165. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_PC.json +0 -0
  166. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_N.json +0 -0
  167. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_PC.json +0 -0
  168. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_N.json +0 -0
  169. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_PC.json +0 -0
  170. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/cross_PC.json +0 -0
  171. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/pump_N.json +0 -0
  172. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_N.json +0 -0
  173. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_PC.json +0 -0
  174. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_N.json +0 -0
  175. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_PC.json +0 -0
  176. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_N.json +0 -0
  177. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_PC.json +0 -0
  178. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_N.json +0 -0
  179. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_PC.json +0 -0
  180. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/network_files/sw_heat.json +0 -0
  181. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/nw_aux.py +0 -0
  182. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/simple_gas_networks.py +0 -0
  183. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/simple_heat_transfer_networks.py +0 -0
  184. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/networks/simple_water_networks.py +0 -0
  185. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pandapipes_net.py +0 -0
  186. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/__init__.py +0 -0
  187. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/build_system_matrix.py +0 -0
  188. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/derivative_toolbox.py +0 -0
  189. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/derivative_toolbox_numba.py +0 -0
  190. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/internals_toolbox.py +0 -0
  191. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pf/result_extraction.py +0 -0
  192. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/pipeflow.py +0 -0
  193. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/__init__.py +0 -0
  194. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/collections.py +0 -0
  195. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/generic_geodata.py +0 -0
  196. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/geo.py +0 -0
  197. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/patch_makers.py +0 -0
  198. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/pipeflow_results.py +0 -0
  199. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/plotting_toolbox.py +0 -0
  200. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/plotting/simple_plot.py +0 -0
  201. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/__init__.py +0 -0
  202. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/compressibility.txt +0 -0
  203. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/density.txt +0 -0
  204. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/der_compressibility.txt +0 -0
  205. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/heat_capacity.txt +0 -0
  206. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/molar_mass.txt +0 -0
  207. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/air/viscosity.txt +0 -0
  208. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/compressibility.txt +0 -0
  209. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/density.txt +0 -0
  210. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/der_compressibility.txt +0 -0
  211. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/gas_composition.txt +0 -0
  212. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/heat_capacity.txt +0 -0
  213. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/higher_heating_value.txt +0 -0
  214. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/molar_mass.txt +0 -0
  215. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_pure/viscosity.txt +0 -0
  216. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/compressibility.txt +0 -0
  217. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/density.txt +0 -0
  218. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/der_compressibility.txt +0 -0
  219. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/gas_composition.txt +0 -0
  220. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/heat_capacity.txt +0 -0
  221. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/higher_heating_value.txt +0 -0
  222. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/molar_mass.txt +0 -0
  223. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/biomethane_treated/viscosity.txt +0 -0
  224. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/carbondioxide/density.txt +0 -0
  225. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/carbondioxide/heat_capacity.txt +0 -0
  226. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/carbondioxide/molar_mass.txt +0 -0
  227. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/carbondioxide/viscosity.txt +0 -0
  228. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/ethane/density.txt +0 -0
  229. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/ethane/heat_capacity.txt +0 -0
  230. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/ethane/molar_mass.txt +0 -0
  231. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/ethane/viscosity.txt +0 -0
  232. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/fluids.py +0 -0
  233. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/compressibility.txt +0 -0
  234. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/density.txt +0 -0
  235. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/der_compressibility.txt +0 -0
  236. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/heat_capacity.txt +0 -0
  237. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/higher_heating_value.txt +0 -0
  238. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/lower_heating_value.txt +0 -0
  239. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/molar_mass.txt +0 -0
  240. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hgas/viscosity.txt +0 -0
  241. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/compressibility.txt +0 -0
  242. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/density.txt +0 -0
  243. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/der_compressibility.txt +0 -0
  244. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/heat_capacity.txt +0 -0
  245. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/higher_heating_value.txt +0 -0
  246. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/lower_heating_value.txt +0 -0
  247. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/molar_mass.txt +0 -0
  248. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/hydrogen/viscosity.txt +0 -0
  249. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/compressibility.txt +0 -0
  250. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/density.txt +0 -0
  251. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/der_compressibility.txt +0 -0
  252. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/heat_capacity.txt +0 -0
  253. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/higher_heating_value.txt +0 -0
  254. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/lower_heating_value.txt +0 -0
  255. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/molar_mass.txt +0 -0
  256. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/lgas/viscosity.txt +0 -0
  257. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/compressibility.txt +0 -0
  258. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/density.txt +0 -0
  259. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/der_compressibility.txt +0 -0
  260. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/heat_capacity.txt +0 -0
  261. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/higher_heating_value.txt +0 -0
  262. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/lower_heating_value.txt +0 -0
  263. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/molar_mass.txt +0 -0
  264. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/methane/viscosity.txt +0 -0
  265. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/nitrogen/density.txt +0 -0
  266. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/nitrogen/heat_capacity.txt +0 -0
  267. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/nitrogen/molar_mass.txt +0 -0
  268. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/nitrogen/viscosity.txt +0 -0
  269. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/oxygen/density.txt +0 -0
  270. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/oxygen/heat_capacity.txt +0 -0
  271. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/oxygen/molar_mass.txt +0 -0
  272. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/oxygen/viscosity.txt +0 -0
  273. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/properties_toolbox.py +0 -0
  274. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/compressibility.txt +0 -0
  275. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/density.txt +0 -0
  276. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/der_compressibility.txt +0 -0
  277. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/heat_capacity.txt +0 -0
  278. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/molar_mass.txt +0 -0
  279. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/properties/water/viscosity.txt +0 -0
  280. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/__init__.py +0 -0
  281. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/library/Pipe.csv +0 -0
  282. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/library/Pump/P1.csv +0 -0
  283. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/library/Pump/P2.csv +0 -0
  284. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/library/Pump/P3.csv +0 -0
  285. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/std_type_class.py +0 -0
  286. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/std_types/std_types.py +0 -0
  287. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/__init__.py +0 -0
  288. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/__init__.py +0 -0
  289. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.1.0.json +0 -0
  290. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.1.1.json +0 -0
  291. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.1.2.json +0 -0
  292. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.10.0_gas.json +0 -0
  293. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.10.0_water.json +0 -0
  294. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.11.0_gas.json +0 -0
  295. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.11.0_water.json +0 -0
  296. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.2.0.json +0 -0
  297. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.4.0.json +0 -0
  298. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.5.0.json +0 -0
  299. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.6.0.json +0 -0
  300. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.7.0.json +0 -0
  301. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.0_gas.json +0 -0
  302. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.0_water.json +0 -0
  303. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.1_gas.json +0 -0
  304. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.1_water.json +0 -0
  305. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.2_gas.json +0 -0
  306. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.2_water.json +0 -0
  307. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.3_gas.json +0 -0
  308. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.3_water.json +0 -0
  309. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.4_gas.json +0 -0
  310. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.4_water.json +0 -0
  311. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.5_gas.json +0 -0
  312. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.8.5_water.json +0 -0
  313. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.9.0_gas.json +0 -0
  314. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/old_versions/example_0.9.0_water.json +0 -0
  315. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/release_cycle/release_control_test_network.py +0 -0
  316. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/release_cycle/release_control_test_sink_profiles.csv +0 -0
  317. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/release_cycle/release_control_test_source_profiles.csv +0 -0
  318. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_aux_function.py +0 -0
  319. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/__init__.py +0 -0
  320. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_compressor.py +0 -0
  321. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_ext_grid.py +0 -0
  322. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_flow_control.py +0 -0
  323. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_heat_consumer.py +0 -0
  324. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_heat_exchanger.py +0 -0
  325. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_mass_storage.py +0 -0
  326. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_pipe.py +0 -0
  327. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_pressure_control.py +0 -0
  328. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_pump.py +0 -0
  329. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_components/test_valve.py +0 -0
  330. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_convert_format.py +0 -0
  331. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_create.py +0 -0
  332. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_network_tables.py +0 -0
  333. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_std_types.py +0 -0
  334. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/api/test_time_series.py +0 -0
  335. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/__init__.py +0 -0
  336. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini.csv +0 -0
  337. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_2valvepipe.csv +0 -0
  338. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_closed.csv +0 -0
  339. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_open.csv +0 -0
  340. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/converter/test_stanet_converter.py +0 -0
  341. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_2zu_2ab_an.csv +0 -0
  342. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_masche_1load_an.csv +0 -0
  343. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_masche_1load_direction_an.csv +0 -0
  344. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_one_pipe_an.csv +0 -0
  345. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_tee_2ab_1zu_an.csv +0 -0
  346. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/Temperature_tee_2zu_1ab_an.csv +0 -0
  347. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/ext_grid_p.csv +0 -0
  348. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/gas_sections_an.csv +0 -0
  349. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/heat_exchanger_test.csv +0 -0
  350. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/hydraulics.csv +0 -0
  351. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/pressure_control_test_analytical.csv +0 -0
  352. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_circ_pump_mass.csv +0 -0
  353. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_circ_pump_pressure.csv +0 -0
  354. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_pressure_control.csv +0 -0
  355. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_pump.csv +0 -0
  356. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_ext_grid/mdot_kg_per_s.csv +0 -0
  357. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_junction/p_bar.csv +0 -0
  358. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_pipe/lambda.csv +0 -0
  359. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_pipe/reynolds.csv +0 -0
  360. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_pipe/v_mean_m_per_s.csv +0 -0
  361. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_sink/mdot_kg_per_s.csv +0 -0
  362. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_results/res_source/mdot_kg_per_s.csv +0 -0
  363. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_sink_profiles.csv +0 -0
  364. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_time_series_source_profiles.csv +0 -0
  365. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/data/test_valve.csv +0 -0
  366. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/io/__init__.py +0 -0
  367. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/io/test_file_io.py +0 -0
  368. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/multinet/__init__.py +0 -0
  369. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/multinet/test_control_multinet.py +0 -0
  370. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/multinet/test_time_series_multinet.py +0 -0
  371. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/networks/__init__.py +0 -0
  372. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/networks/test_networks.py +0 -0
  373. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/openmodelica_comparison/__init__.py +0 -0
  374. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/openmodelica_comparison/pipeflow_openmodelica_comparison.py +0 -0
  375. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/openmodelica_comparison/test_heat_transfer_openmodelica.py +0 -0
  376. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/openmodelica_comparison/test_water_openmodelica.py +0 -0
  377. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/__init__.py +0 -0
  378. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_inservice.py +0 -0
  379. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_non_convergence.py +0 -0
  380. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_options.py +0 -0
  381. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_pipeflow_analytic_comparison.py +0 -0
  382. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_pipeflow_modes.py +0 -0
  383. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_time_series.py +0 -0
  384. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pipeflow_internals/test_update_matrix.py +0 -0
  385. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/plotting/__init__.py +0 -0
  386. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/plotting/test_collections.py +0 -0
  387. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/plotting/test_generic_coordinates.py +0 -0
  388. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/plotting/test_pipeflow_results.py +0 -0
  389. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/plotting/test_simple_collections.py +0 -0
  390. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/properties/__init__.py +0 -0
  391. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/properties/test_fluid_specials.py +0 -0
  392. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/properties/test_properties_toolbox.py +0 -0
  393. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/pytest.ini +0 -0
  394. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/run_tests.py +0 -0
  395. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/stanet_comparison/__init__.py +0 -0
  396. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/stanet_comparison/pipeflow_stanet_comparison.py +0 -0
  397. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/stanet_comparison/test_gas_stanet.py +0 -0
  398. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/stanet_comparison/test_water_stanet.py +0 -0
  399. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/test_imports.py +0 -0
  400. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/test_toolbox.py +0 -0
  401. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/topology/__init__.py +0 -0
  402. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/topology/test_graph_searches.py +0 -0
  403. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/test/topology/test_nxgraph.py +0 -0
  404. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/timeseries/__init__.py +0 -0
  405. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/timeseries/run_time_series.py +0 -0
  406. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/toolbox.py +0 -0
  407. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/topology/__init__.py +0 -0
  408. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/topology/create_graph.py +0 -0
  409. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/topology/graph_searches.py +0 -0
  410. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes/topology/topology_toolbox.py +0 -0
  411. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes.egg-info/SOURCES.txt +0 -0
  412. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes.egg-info/dependency_links.txt +0 -0
  413. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes.egg-info/requires.txt +0 -0
  414. {pandapipes-0.12.0.dev2 → pandapipes-0.12.0.dev3}/src/pandapipes.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pandapipes
3
- Version: 0.12.0.dev2
3
+ Version: 0.12.0.dev3
4
4
  Summary: A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids
5
5
  Author-email: Simon Ruben Drauz-Mauel <simon.ruben.drauz-mauel@iee.fraunhofer.de>, Daniel Lohmeier <daniel.lohmeier@retoflow.de>, Jolando Marius Kisse <jolando.kisse@uni-kassel.de>
6
6
  License: Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pandapipes"
7
- version = "0.12.0.dev2" # File format version '__format_version__' is tracked in __init__.py
7
+ version = "0.12.0.dev3" # File format version '__format_version__' is tracked in __init__.py
8
8
  authors=[
9
9
  { name = "Simon Ruben Drauz-Mauel", email = "simon.ruben.drauz-mauel@iee.fraunhofer.de" },
10
10
  { name = "Daniel Lohmeier", email = "daniel.lohmeier@retoflow.de" },
@@ -6,9 +6,10 @@ import numpy as np
6
6
 
7
7
  from pandapipes.component_models.abstract_models.branch_wzerolength_models import BranchWZeroLengthComponent
8
8
  from pandapipes.component_models.component_toolbox import set_fixed_node_entries, standard_branch_wo_internals_result_lookup
9
- from pandapipes.idx_branch import D, AREA, BRANCH_TYPE, CIRC, LOAD_VEC_BRANCHES_T, TO_NODE
10
- from pandapipes.idx_node import MDOTSLACKINIT, VAR_MASS_SLACK, JAC_DERIV_MSL
11
- from pandapipes.pf.pipeflow_setup import get_fluid
9
+ from pandapipes.idx_branch import D, AREA, LOAD_VEC_BRANCHES_T, TO_NODE, TOUTINIT, JAC_DERIV_DT, JAC_DERIV_DTOUT, MDOTINIT
10
+ from pandapipes.idx_node import MDOTSLACKINIT, VAR_MASS_SLACK, JAC_DERIV_MSL, NODE_TYPE_T, GE, TINIT
11
+ from pandapipes.pf.pipeflow_setup import get_fluid, get_lookup
12
+ from pandapipes.pf.internals_toolbox import get_from_nodes_corrected
12
13
  from pandapipes.pf.result_extraction import extract_branch_results_without_internals
13
14
 
14
15
  try:
@@ -42,11 +43,11 @@ class CirculationPump(BranchWZeroLengthComponent):
42
43
  :rtype: (list, bool)
43
44
  """
44
45
  if get_fluid(net).is_gas:
45
- output = ["v_from_m_per_s", "v_to_m_per_s", "v_mean_m_per_s", "p_from_bar", "p_to_bar", "t_from_k",
46
+ output = ["p_from_bar", "p_to_bar", "t_from_k",
46
47
  "t_to_k", "t_outlet_k", "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_norm_m3_per_s",
47
48
  "normfactor_from", "normfactor_to"]
48
49
  else:
49
- output = ["v_mean_m_per_s", "p_from_bar", "p_to_bar", "t_from_k", "t_to_k", "t_outlet_k", "mdot_from_kg_per_s",
50
+ output = ["p_from_bar", "p_to_bar", "t_from_k", "t_to_k", "t_outlet_k", "mdot_from_kg_per_s",
50
51
  "mdot_to_kg_per_s", "vdot_m3_per_s"]
51
52
  output += ['deltat_k', 'qext_w']
52
53
  return output, True
@@ -83,11 +84,10 @@ class CirculationPump(BranchWZeroLengthComponent):
83
84
  # not contain "p", as this should not be allowed for this component
84
85
  types = circ_pump_tbl.type.values
85
86
  p_values = circ_pump_tbl.p_flow_bar.values
86
- t_values = circ_pump_tbl.t_flow_k.values
87
87
  index_p = set_fixed_node_entries(
88
88
  net, node_pit, junction, types, p_values, cls.get_connected_node_type(), 'p')
89
- set_fixed_node_entries(net, node_pit, junction, types, t_values, cls.get_connected_node_type(), 't')
90
89
  node_pit[index_p, JAC_DERIV_MSL] = -1.
90
+ node_pit[index_p, NODE_TYPE_T] = GE
91
91
  return circ_pump_tbl, p_values
92
92
 
93
93
  @classmethod
@@ -100,10 +100,11 @@ class CirculationPump(BranchWZeroLengthComponent):
100
100
  :type branch_pit:
101
101
  :return: No Output.
102
102
  """
103
+ circ_pump_tbl = net[cls.table_name()][net[cls.table_name()][cls.active_identifier()].values]
103
104
  circ_pump_pit = super().create_pit_branch_entries(net, branch_pit)
104
105
  circ_pump_pit[:, D] = 0.1
105
106
  circ_pump_pit[:, AREA] = circ_pump_pit[:, D] ** 2 * np.pi / 4
106
- circ_pump_pit[:, BRANCH_TYPE] = CIRC
107
+ circ_pump_pit[:, TOUTINIT] = circ_pump_tbl.t_flow_k.values
107
108
  return circ_pump_pit
108
109
 
109
110
  @classmethod
@@ -136,6 +137,9 @@ class CirculationPump(BranchWZeroLengthComponent):
136
137
  f, t = idx_lookups[cls.table_name()]
137
138
  circ_pump_pit = branch_pit[f:t, :]
138
139
  circ_pump_pit[:, LOAD_VEC_BRANCHES_T] = 0
140
+ circ_pump_pit[:, JAC_DERIV_DTOUT] = 1
141
+ circ_pump_pit[:, JAC_DERIV_DT] = 0
142
+
139
143
 
140
144
  @classmethod
141
145
  def extract_results(cls, net, options, branch_results, mode):
@@ -152,8 +156,32 @@ class CirculationPump(BranchWZeroLengthComponent):
152
156
  :type options:
153
157
  :return: No Output.
154
158
  """
159
+ node_pit = net['_pit']['node']
160
+ branch_pit = net['_pit']['branch']
161
+ branch_lookups = get_lookup(net, "branch", "from_to")
162
+ f, t = branch_lookups[cls.table_name()]
163
+
164
+ mask = branch_pit[f:t, MDOTINIT] < 0
165
+ if np.any(mask):
166
+ raise UserWarning(r'Your grid is badly modelled and would lead to a direction change in circulation pump %s'
167
+ % str(net[cls.table_name()].index[mask].tolist()))
155
168
 
156
169
  required_results_hyd, required_results_ht = standard_branch_wo_internals_result_lookup(net)
157
170
 
158
171
  extract_branch_results_without_internals(net, branch_results, required_results_hyd, required_results_ht,
159
172
  cls.table_name(), mode)
173
+
174
+ res_table = net["res_" + cls.table_name()]
175
+
176
+ from_nodes = get_from_nodes_corrected(branch_pit[f:t])
177
+ t_from = node_pit[from_nodes, TINIT]
178
+ tout = branch_pit[f:t, TOUTINIT]
179
+ res_table['deltat_k'].values[:] = t_from - tout
180
+
181
+ fluid = get_fluid(net)
182
+
183
+ cp_i = fluid.get_heat_capacity(t_from)
184
+ cp_i1 = fluid.get_heat_capacity(tout)
185
+
186
+ mass = branch_pit[f:t, MDOTINIT]
187
+ res_table['qext_w'].values[:] = mass * (cp_i1 * tout - cp_i * t_from)
@@ -124,10 +124,9 @@ class FlowControlComponent(BranchWZeroLengthComponent):
124
124
  if get_fluid(net).is_gas:
125
125
  output = ["p_from_bar", "p_to_bar",
126
126
  "t_from_k", "t_to_k", "t_outlet_k", "mdot_from_kg_per_s", "mdot_to_kg_per_s",
127
- "vdot_norm_m3_per_s", "reynolds", "lambda", "normfactor_from",
127
+ "vdot_norm_m3_per_s", "normfactor_from",
128
128
  "normfactor_to"]
129
129
  else:
130
130
  output = ["p_from_bar", "p_to_bar", "t_from_k", "t_to_k", "t_outlet_k",
131
- "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_m3_per_s", "reynolds",
132
- "lambda"]
131
+ "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_m3_per_s"]
133
132
  return output, True
@@ -238,11 +238,11 @@ class HeatConsumer(BranchWZeroLengthComponent):
238
238
  """
239
239
  if get_fluid(net).is_gas:
240
240
  output = ["p_from_bar", "p_to_bar", "t_from_k",
241
- "t_to_k", "t_outlet_k", "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_norm_m3_per_s", "reynolds", "lambda",
241
+ "t_to_k", "t_outlet_k", "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_norm_m3_per_s",
242
242
  "normfactor_from", "normfactor_to"]
243
243
  else:
244
244
  output = ["p_from_bar", "p_to_bar", "t_from_k", "t_to_k", "t_outlet_k", "mdot_from_kg_per_s",
245
- "mdot_to_kg_per_s", "vdot_m3_per_s", "reynolds", "lambda"]
245
+ "mdot_to_kg_per_s", "vdot_m3_per_s"]
246
246
  output += ['deltat_k', 'qext_w']
247
247
  return output, True
248
248
 
@@ -105,10 +105,9 @@ class HeatExchanger(BranchWZeroLengthComponent):
105
105
  if get_fluid(net).is_gas:
106
106
  output = ["p_from_bar", "p_to_bar",
107
107
  "t_from_k", "t_to_k", "t_outlet_k", "mdot_from_kg_per_s", "mdot_to_kg_per_s",
108
- "vdot_norm_m3_per_s", "reynolds", "lambda", "normfactor_from",
108
+ "vdot_norm_m3_per_s", "normfactor_from",
109
109
  "normfactor_to"]
110
110
  else:
111
111
  output = ["p_from_bar", "p_to_bar", "t_from_k", "t_to_k", "t_outlet_k",
112
- "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_m3_per_s", "reynolds",
113
- "lambda"]
112
+ "mdot_from_kg_per_s", "mdot_to_kg_per_s", "vdot_m3_per_s"]
114
113
  return output, True
@@ -756,6 +756,9 @@ def create_circ_pump_const_pressure(net, return_junction, flow_junction, p_flow_
756
756
  >>> t_flow_k=350, type="p")
757
757
 
758
758
  """
759
+ logger.info(r"The circulation pump's behaviour has changed. Rather than setting a slack temperature node, "
760
+ r"the outlet temperature of the circulation pump is now fixed. In most cases this does not change, "
761
+ r"the outcome, but be aware of the adaptations!")
759
762
 
760
763
  add_new_component(net, CirculationPumpPressure)
761
764
 
@@ -820,6 +823,9 @@ def create_circ_pump_const_mass_flow(net, return_junction, flow_junction, p_flow
820
823
  >>> t_flow_k=350, type="pt")
821
824
 
822
825
  """
826
+ logger.info(r"The circulation pump's behaviour has changed. Rather than setting a slack temperature node, "
827
+ r"the outlet temperature of the circulation pump is now fixed. In most cases this does not change, "
828
+ r"the outcome, but be aware of the adaptations!")
823
829
 
824
830
  add_new_component(net, CirculationPumpMass)
825
831
 
@@ -3,8 +3,7 @@
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
5
  # branch types
6
- CIRC = 1 # Circ pump branch
7
- PC = 2 # Pressure controller branch
6
+ PC = 1 # Pressure controller branch
8
7
 
9
8
  # branch indices
10
9
  TABLE_IDX = 0 # number of the table that this branch belongs to
@@ -7,6 +7,7 @@ P = 1 # Reference node, pressure is fixed
7
7
  L = 2 # All other nodes
8
8
  T = 3 # Reference node with fixed temperature, otherwise 0
9
9
  PC = 4 # Controlled node with fixed pressure p
10
+ GE = 5
10
11
 
11
12
  # node indices
12
13
  TABLE_IDX = 0 # number of the table that this node belongs to
@@ -9,7 +9,7 @@ from pandapipes.idx_branch import (LENGTH, D, K, RE, LAMBDA, LOAD_VEC_BRANCHES,
9
9
  LOAD_VEC_NODES_FROM, LOAD_VEC_NODES_TO,
10
10
  LOAD_VEC_NODES_FROM_T,
11
11
  LOAD_VEC_NODES_TO_T, JAC_DERIV_DTOUT, JAC_DERIV_DTOUT_NODE,
12
- MDOTINIT, BRANCH_TYPE, CIRC)
12
+ MDOTINIT)
13
13
  from pandapipes.idx_node import (
14
14
  TINIT as TINIT_NODE,
15
15
  INFEED,
@@ -119,7 +119,6 @@ def calculate_derivatives_thermal(net, branch_pit, node_pit, _):
119
119
  alpha = branch_pit[:, ALPHA] * np.pi * branch_pit[:, D]
120
120
  tl = branch_pit[:, TL]
121
121
  qext = branch_pit[:, QEXT]
122
- no_cp = branch_pit[:, BRANCH_TYPE] != CIRC
123
122
  infeed_node = None
124
123
 
125
124
  node_pit[:, LOAD_T] = node_pit[:, LOAD] * cp_n * t_init_n + node_pit[:, MDOTSLACKINIT] * cp_n * t_init_n
@@ -206,8 +205,8 @@ def calculate_derivatives_thermal(net, branch_pit, node_pit, _):
206
205
  branch_pit[fn_zero, LOAD_VEC_NODES_FROM_T] = 0
207
206
  branch_pit[tn_zero, LOAD_VEC_NODES_TO_T] = 0
208
207
 
209
- from_nodes_not_zero = from_nodes[no_cp & ~nodes_zero_fl[from_nodes]]
210
- to_nodes_not_zero = to_nodes[no_cp & ~nodes_zero_fl[to_nodes]]
208
+ from_nodes_not_zero = from_nodes[~nodes_zero_fl[from_nodes]]
209
+ to_nodes_not_zero = to_nodes[~nodes_zero_fl[to_nodes]]
211
210
  infeed_node = np.setdiff1d(from_nodes_not_zero, to_nodes_not_zero)
212
211
 
213
212
  else:
@@ -220,7 +219,7 @@ def calculate_derivatives_thermal(net, branch_pit, node_pit, _):
220
219
  t_amb - t_m) * length + qext
221
220
 
222
221
  if infeed_node is None:
223
- infeed_node = np.setdiff1d(from_nodes[no_cp], to_nodes[no_cp])
222
+ infeed_node = np.setdiff1d(from_nodes, to_nodes)
224
223
  node_pit[:, INFEED] = False
225
224
  node_pit[infeed_node, INFEED] = True
226
225
 
@@ -17,12 +17,9 @@ from pandapipes.idx_branch import (
17
17
  ACTIVE as ACTIVE_BR,
18
18
  FLOW_RETURN_CONNECT,
19
19
  ACTIVE,
20
- BRANCH_TYPE,
21
- CIRC,
22
20
  )
23
21
  from pandapipes.idx_node import NODE_TYPE, P, NODE_TYPE_T, node_cols, T, ACTIVE as ACTIVE_ND, \
24
- TABLE_IDX as TABLE_IDX_ND, ELEMENT_IDX as ELEMENT_IDX_ND, INFEED
25
- from pandapipes.pf.internals_toolbox import _sum_by_group
22
+ TABLE_IDX as TABLE_IDX_ND, ELEMENT_IDX as ELEMENT_IDX_ND, INFEED, GE
26
23
  from pandapipes.properties.fluids import get_fluid
27
24
 
28
25
  try:
@@ -521,69 +518,42 @@ def identify_active_nodes_branches(net, hydraulic=True):
521
518
  branch_pit = net["_pit"]["branch"]
522
519
 
523
520
  if hydraulic:
524
- # connectivity check for hydraulic simulation
521
+ nodes_connected = node_pit[:, ACTIVE_ND].astype(np.bool_)
522
+ branches_connected = branch_pit[:, ACTIVE_BR].astype(np.bool_)
525
523
  if get_net_option(net, "check_connectivity"):
526
- nodes_connected, branches_connected = check_connectivity(net, branch_pit, node_pit)
527
- else:
528
- # if connectivity check is switched off, still consider oos elements
529
- nodes_connected = node_pit[:, ACTIVE_ND].astype(np.bool_)
530
- branches_connected = branch_pit[:, ACTIVE_BR].astype(np.bool_)
524
+ nodes_connected, branches_connected = check_connectivity(net, branch_pit, node_pit,
525
+ branches_connected, nodes_connected,
526
+ mode="hydraulics")
531
527
  else:
532
- # connectivity check for heat simulation (needs to consider branches with 0 velocity as
533
- # well)
528
+ nodes_connected = get_lookup(net, "node", "active_hydraulics")
529
+ branches_connected = get_lookup(net, "branch", "active_hydraulics")
534
530
  if get_net_option(net, "check_connectivity"):
535
- # full connectivity check for hydraulic simulation
536
531
  nodes_connected, branches_connected = check_connectivity(net, branch_pit, node_pit,
532
+ branches_connected, nodes_connected,
537
533
  mode="heat_transfer")
538
- else:
539
- # if no full connectivity check is performed, all nodes that are not connected to the
540
- # rest of the network wrt. flow can be identified by a more performant sum_by_group_call
541
- # check for branches that are not traversed (for temperature calculation, this means
542
- # that they are "out of service")
543
-
544
- if get_net_option(net, "transient"):
545
- branches_connected = np.copy(get_lookup(net, "branch", "active_hydraulics"))
546
- nodes_connected = np.copy(get_lookup(net, "node", "active_hydraulics"))
547
- else:
548
- fn = branch_pit[:, FROM_NODE].astype(np.int32)
549
- tn = branch_pit[:, TO_NODE].astype(np.int32)
550
- branches_connected = get_lookup(
551
- net, "branch", "active_hydraulics"
552
- ) & branches_connected_flow(branch_pit)
553
- fn_tn, flow = _sum_by_group(
554
- get_net_option(net, "use_numba"),
555
- np.concatenate([fn, tn]),
556
- np.concatenate([branches_connected, branches_connected]).astype(
557
- np.int32
558
- ),
559
- )
560
- nodes_connected = np.copy(get_lookup(net, "node", "active_hydraulics"))
561
- # set nodes oos that are not connected to any branches with flow > 0 (0.1 is arbitrary
562
- # here, any value between 0 and 1 should work, excluding 0 and 1)
563
- nodes_connected[fn_tn] = nodes_connected[fn_tn] & (flow > 0.1)
534
+ fn = branch_pit[:, FROM_NODE].astype(np.int32)
535
+ tn = branch_pit[:, TO_NODE].astype(np.int32)
536
+ branches_flow = branches_not_zero_flow(branch_pit)
537
+ nodes_flow = np.isin(np.arange(len(nodes_connected)), np.concatenate([fn[branches_flow], tn[branches_flow]]))
564
538
 
565
539
  if get_net_option(net, "transient"):
566
- fn = branch_pit[:, FROM_NODE].astype(np.int32)
567
- tn = branch_pit[:, TO_NODE].astype(np.int32)
568
- branches_zero = branches_zero_flow(branch_pit)
569
- connected_branches_not_zero = branches_connected & ~branches_zero
570
- nodes_zero = ~np.isin(
571
- np.arange(len(nodes_connected)),
572
- np.concatenate([fn[connected_branches_not_zero], tn[connected_branches_not_zero]])
573
- ) & nodes_connected
574
- net["_lookups"]["node_zero_flow"] = nodes_zero
575
- net["_lookups"]["branch_zero_flow"] = branches_zero
540
+ net["_lookups"]["branch_zero_flow"] = ~branches_flow & branches_connected
541
+ net["_lookups"]["node_zero_flow"] = ~nodes_flow & nodes_connected
542
+ else:
543
+ branches_connected = branches_flow & branches_connected
544
+ nodes_connected = nodes_flow & nodes_connected
545
+
576
546
  mode = "hydraulics" if hydraulic else "heat_transfer"
577
547
  if np.all(~nodes_connected):
578
548
  mode = 'hydraulic' if hydraulic else 'heat transfer'
579
549
  raise PipeflowNotConverged(" All nodes are set out of service. Probably they are not supplied."
580
550
  " Therefore, the %s pipeflow did not converge. "
581
- " Have you forgotten to define an external grid?" % mode)
551
+ " Have you forgotten to define a supply component or is it not properly connected?" % mode)
582
552
  net["_lookups"]["node_active_" + mode] = nodes_connected
583
553
  net["_lookups"]["branch_active_" + mode] = branches_connected
584
554
 
585
555
 
586
- def branches_connected_flow(branch_pit):
556
+ def branches_not_zero_flow(branch_pit):
587
557
  """
588
558
  Simple function to identify branches with flow based on the calculated velocity.
589
559
 
@@ -593,25 +563,12 @@ def branches_connected_flow(branch_pit):
593
563
  :rtype: np.array
594
564
  """
595
565
  # TODO: is this formulation correct or could there be any caveats?
596
- return ~np.isnan(branch_pit[:, MDOTINIT]) \
597
- & ~np.isclose(branch_pit[:, MDOTINIT], 0, rtol=1e-10, atol=1e-10)
566
+ return ~np.isnan(branch_pit[:, MDOTINIT]) & ~np.isclose(branch_pit[:, MDOTINIT], 0, rtol=1e-10, atol=1e-10)
598
567
 
599
568
 
600
- def branches_zero_flow(branch_pit):
601
- """
602
- Simple function to identify branches with flow based on the calculated velocity.
603
-
604
- :param branch_pit: The pandapipes internal table of the network (including hydraulics results)
605
- :type branch_pit: np.array
606
- :return: branches_connected_flow - lookup array if branch is connected wrt. flow
607
- :rtype: np.array
608
- """
609
- # TODO: is this formulation correct or could there be any caveats?
610
- return ~np.isnan(branch_pit[:, MDOTINIT]) \
611
- & np.isclose(branch_pit[:, MDOTINIT], 0, rtol=1e-10, atol=1e-10)
612
-
613
-
614
- def check_connectivity(net, branch_pit, node_pit, mode="hydraulics"):
569
+ def check_connectivity(net, branch_pit, node_pit,
570
+ branches_connected, nodes_connected,
571
+ mode="hydraulics"):
615
572
  """
616
573
  Perform a connectivity check which means that network nodes are identified that don't have any
617
574
  connection to an external grid component. Quick overview over the steps of this function:
@@ -637,6 +594,10 @@ def check_connectivity(net, branch_pit, node_pit, mode="hydraulics"):
637
594
  :type branch_pit: np.array
638
595
  :param node_pit: Internal array with node entries
639
596
  :type node_pit: np.array
597
+ :param branches_connected: Array of bool if branches are connected or not
598
+ :type branches_connected: np.array(bool)
599
+ :param nodes_connected: Array of bool if nodes are connected or not
600
+ :type nodes_connected: np.array(bool)
640
601
  :param mode: two modes exist: "hydraulics" and "heat_transfer", representing the two modes of \
641
602
  the pipeflow calculation.
642
603
  :type mode: str
@@ -645,37 +606,29 @@ def check_connectivity(net, branch_pit, node_pit, mode="hydraulics"):
645
606
  :rtype: tuple(np.array)
646
607
  """
647
608
  if mode == "hydraulics":
648
- active_branch_lookup = branch_pit[:, ACTIVE_BR].astype(np.bool_)
649
- active_node_lookup = node_pit[:, ACTIVE_ND].astype(np.bool_)
650
- slacks = np.where((node_pit[:, NODE_TYPE] == P) & active_node_lookup)[0]
609
+ slacks = np.where((node_pit[:, NODE_TYPE] == P) & nodes_connected)[0]
651
610
  else:
652
- if get_net_option(net, "transient"):
653
- active_branch_lookup = get_lookup(net, "branch", "active_hydraulics")
654
- else:
655
- active_branch_lookup = branches_connected_flow(branch_pit) \
656
- & get_lookup(net, "branch", "active_hydraulics")
657
- active_node_lookup = node_pit[:, ACTIVE_ND].astype(np.bool_) \
658
- & get_lookup(net, "node", "active_hydraulics")
659
- slacks = np.where((node_pit[:, NODE_TYPE_T] == T) & active_node_lookup)[0]
611
+ slacks = np.where(((node_pit[:, NODE_TYPE_T] == T) | (node_pit[:, NODE_TYPE_T] == GE)) & nodes_connected)[0]
660
612
 
661
- return perform_connectivity_search(net, node_pit, branch_pit, slacks, active_node_lookup,
662
- active_branch_lookup, mode=mode)
613
+ return perform_connectivity_search(net, node_pit, branch_pit, slacks,
614
+ nodes_connected, branches_connected, mode=mode)
663
615
 
664
616
 
665
617
  def perform_connectivity_search(net, node_pit, branch_pit, slack_nodes, active_node_lookup, active_branch_lookup,
666
618
  mode="hydraulics"):
667
- connect = branch_pit[:, FLOW_RETURN_CONNECT].astype(bool)
668
- circ = branch_pit[:, BRANCH_TYPE] == CIRC
669
- if np.any(circ) and mode == 'hydraulics':
619
+ if mode == 'hydraulics':
620
+ connect = branch_pit[:, FLOW_RETURN_CONNECT].astype(bool)
670
621
  active_branch_lookup = active_branch_lookup & ~connect
671
- nodes_connected, branches_connected = (
672
- _connectivity(net, branch_pit, node_pit, active_branch_lookup, active_node_lookup, slack_nodes, mode))
673
- if np.any(connect) and mode == 'hydraulics':
622
+ nodes_connected, branches_connected = (
623
+ _connectivity(net, branch_pit, node_pit, active_branch_lookup, active_node_lookup, slack_nodes, mode))
674
624
  from_nodes = branch_pit[:, FROM_NODE].astype(np.int32)
675
625
  to_nodes = branch_pit[:, TO_NODE].astype(np.int32)
676
626
  branch_active = branch_pit[:, ACTIVE].astype(bool)
677
627
  active = nodes_connected[from_nodes] & nodes_connected[to_nodes] & branch_active
678
628
  branches_connected[connect & active] = True
629
+ else:
630
+ nodes_connected, branches_connected = (
631
+ _connectivity(net, branch_pit, node_pit, active_branch_lookup, active_node_lookup, slack_nodes, mode))
679
632
  return nodes_connected, branches_connected
680
633
 
681
634
 
@@ -35,7 +35,7 @@ def test_circulation_pump_constant_mass(use_numba):
35
35
  pandapipes.create_fluid_from_lib(net, "water", overwrite=True)
36
36
 
37
37
  max_iter_hyd = 4 if use_numba else 4
38
- max_iter_therm = 4 if use_numba else 4
38
+ max_iter_therm = 6 if use_numba else 6
39
39
  pandapipes.pipeflow(net, max_iter_hyd=max_iter_hyd, max_iter_therm=max_iter_therm,
40
40
  stop_condition="tol", friction_model="nikuradse",
41
41
  mode='sequential', transient=False, nonlinear_method="automatic",
@@ -36,7 +36,7 @@ def test_circulation_pump_constant_pressure(use_numba):
36
36
  pandapipes.create_fluid_from_lib(net, "water", overwrite=True)
37
37
 
38
38
  max_iter_hyd = 8 if use_numba else 8
39
- max_iter_therm = 4 if use_numba else 4
39
+ max_iter_therm = 7 if use_numba else 7
40
40
  pandapipes.pipeflow(net, max_iter_hyd=max_iter_hyd, max_iter_therm=max_iter_therm,
41
41
  stop_condition="tol", friction_model="nikuradse",
42
42
  mode='sequential', transient=False, nonlinear_method="automatic",
@@ -9,7 +9,7 @@ import pytest
9
9
 
10
10
  import pandapipes
11
11
  from pandapipes.create import create_empty_network, create_junction, create_ext_grid, create_sink, create_source
12
- from pandapipes.pf.pipeflow_setup import get_net_option
12
+ from pandapipes.pf.pipeflow_setup import get_net_option, PipeflowNotConverged
13
13
  from pandapipes.test.pipeflow_internals.test_inservice import create_test_net
14
14
  from pandapipes.test.test_toolbox import create_net_changed_indices
15
15
 
@@ -125,60 +125,74 @@ def test_wild_indexing(create_net_changed_indices):
125
125
 
126
126
  def test_valve_flow_contrl_heat_consumer():
127
127
  net = pandapipes.create_empty_network(fluid='water')
128
- j1, j2, j3, j4, j5, j6, j7, j8, j9 = pandapipes.create_junctions(net, 9, 5, 400)
129
- pandapipes.create_circ_pump_const_pressure(net, j9, j1, 5, 2, 400)
130
- pandapipes.create_valves(net, [j1, j4, j6, j8], [j2, j5, j7, j9], 0.1)
131
- pandapipes.create_flow_control(net, j3, j2, 10)
132
- pandapipes.create_heat_exchanger(net, j8, j3, -5000)
133
- pandapipes.create_pipes_from_parameters(net, [j2, j7], [j4, j8], 0.1, 0.1)
134
- pandapipes.create_heat_consumer(net, j5, j6, 10000, 10)
128
+ j1f, j2f, j3f, j4f, j1r, j2r, j3r, j4r, j5 = pandapipes.create_junctions(net, 9, 5, 400)
129
+ pandapipes.create_circ_pump_const_pressure(net, j4r, j1f, 5, 2, 400)
130
+ pandapipes.create_valves(net, [j1f, j3f, j1r, j3r], [j2f, j4f, j2r, j4r], 0.1)
131
+ pandapipes.create_flow_control(net, j2f, j5, 10)
132
+ pandapipes.create_heat_exchanger(net, j5, j3r, 5000)
133
+ pandapipes.create_pipes_from_parameters(net, [j2f, j2r], [j3f, j3r], 0.1, 0.1)
134
+ pandapipes.create_heat_consumer(net, j4f, j1r, 10000, 10)
135
+
135
136
  net.valve.loc[0, 'opened'] = False
136
- pandapipes.pipeflow(net, mode='sequential')
137
+ with pytest.raises(PipeflowNotConverged):
138
+ pandapipes.pipeflow(net, mode='sequential')
137
139
 
138
140
  amb_temp = get_net_option(net, 'ambient_temperature')
139
141
 
140
- assert np.all(np.isclose(net.res_junction.loc[[j9, j8, j7, j6, j3], 'p_bar'].values, 3.))
141
- assert np.all(np.isnan(net.res_junction.loc[[j5, j4, j2], 'p_bar']).values)
142
- assert np.all(np.isclose(net.res_junction.loc[[j1], 'p_bar'].values, 5.))
143
- assert np.all(np.isclose(net.res_junction.t_k.values[1:], amb_temp))
142
+ pandapipes.pipeflow(net, mode='hydraulics')
143
+
144
+ assert np.all(np.isclose(net.res_junction.loc[[j1r, j2r, j3r, j4r, j5], 'p_bar'].values, 3.))
145
+ assert np.all(np.isnan(net.res_junction.loc[[j2f, j3f, j4f], 'p_bar']).values)
146
+ assert np.all(np.isclose(net.res_junction.loc[[j1f], 'p_bar'].values, 5.))
144
147
 
145
148
  net.valve.loc[0, 'opened'] = True
146
149
  net.valve.loc[3, 'opened'] = False
147
- pandapipes.pipeflow(net, mode='sequential')
150
+ with pytest.raises(PipeflowNotConverged):
151
+ pandapipes.pipeflow(net, mode='sequential')
152
+
153
+ pandapipes.pipeflow(net, mode='hydraulics')
148
154
 
149
- assert np.all(np.isclose(net.res_junction.loc[[j9], 'p_bar'].values, 3.))
150
- assert np.all(np.isnan(net.res_junction.loc[[j8, j7, j6, j3], 'p_bar']).values)
151
- assert np.all(np.isclose(net.res_junction.loc[[j1, j2, j4, j5], 'p_bar'].values, 5.))
152
- assert np.all(np.isclose(net.res_junction.t_k.values[1:], amb_temp))
155
+ assert np.all(np.isclose(net.res_junction.loc[[j4r], 'p_bar'].values, 3.))
156
+ assert np.all(np.isnan(net.res_junction.loc[[j5, j1r, j2r, j3r], 'p_bar']).values)
157
+ assert np.all(np.isclose(net.res_junction.loc[[j1f, j2f, j3f, j4f], 'p_bar'].values, 5.))
153
158
 
154
159
  net.valve.loc[3, 'opened'] = True
155
160
  net.valve.loc[1, 'opened'] = False
156
161
  pandapipes.pipeflow(net, mode='sequential')
157
162
 
158
- assert np.all(np.isclose(net.res_junction.loc[[j9, j8, j7, j6, j3], 'p_bar'].values, 3.))
159
- assert np.all(np.isnan(net.res_junction.loc[[j5], 'p_bar']).values)
160
- assert np.all(np.isclose(net.res_junction.loc[[j1, j2, j4], 'p_bar'].values, 5.))
161
- assert np.all(np.isclose(net.res_junction.t_k.values[[j4, j5, j6, j7]], amb_temp))
163
+ assert np.all(np.isclose(net.res_junction.loc[[j4r, j3r, j2r, j1r, j5], 'p_bar'].values, 3.))
164
+ assert np.all(np.isnan(net.res_junction.loc[[j4f], 'p_bar']).values)
165
+ assert np.all(np.isclose(net.res_junction.loc[[j1f, j2f, j3f], 'p_bar'].values, 5.))
166
+ assert np.all(np.isclose(net.res_junction.t_k.values[[j3f, j4f, j1r, j2r]], amb_temp))
162
167
 
163
168
  net.valve.loc[1, 'opened'] = True
164
169
  net.valve.loc[2, 'opened'] = False
165
170
  pandapipes.pipeflow(net, mode='sequential')
166
171
 
167
- assert np.all(np.isclose(net.res_junction.loc[[j9, j8, j7, j3], 'p_bar'].values, 3.))
168
- assert np.all(np.isnan(net.res_junction.loc[[j6], 'p_bar']).values)
169
- assert np.all(np.isclose(net.res_junction.loc[[j1, j2, j4, j5], 'p_bar'].values, 5.))
170
- assert np.all(np.isclose(net.res_junction.t_k.values[[j4, j5, j6, j7]], amb_temp))
172
+ assert np.all(np.isclose(net.res_junction.loc[[j4r, j3r, j2r, j5], 'p_bar'].values, 3.))
173
+ assert np.all(np.isnan(net.res_junction.loc[[j1r], 'p_bar']).values)
174
+ assert np.all(np.isclose(net.res_junction.loc[[j1f, j2f, j3f, j4f], 'p_bar'].values, 5.))
175
+ assert np.all(np.isclose(net.res_junction.t_k.values[[j3f, j4f, j1r, j2r]], amb_temp))
171
176
 
172
177
  net.valve.loc[1, 'opened'] = False
173
178
  pandapipes.pipeflow(net, mode='sequential')
174
179
 
175
- assert np.all(np.isnan(net.res_junction.p_bar.values[4:6]))
180
+ assert np.all(np.isnan(net.res_junction.loc[[j1r, j4f], 'p_bar'].values))
176
181
 
177
182
  net.valve.loc[:, 'opened'] = False
178
- pandapipes.pipeflow(net, mode='sequential')
183
+ with pytest.raises(PipeflowNotConverged):
184
+ pandapipes.pipeflow(net, mode='sequential')
179
185
 
180
186
  assert np.all(np.isnan(net.res_junction.p_bar.values[1:-1]))
181
187
 
188
+ net.heat_consumer.loc[0, 'controlled_mdot_kg_per_s'] = 11
189
+ net.valve.loc[:, 'opened'] = True
190
+ net.valve.loc[3, 'opened'] = False
191
+ pandapipes.create_circ_pump_const_pressure(net, j3r, j1f, 5, 2, 400)
192
+
193
+ pandapipes.pipeflow(net, mode='sequential')
194
+
195
+
182
196
 
183
197
  if __name__ == "__main__":
184
198
  pytest.main([r'pandapipes/test/api/test_special_networks.py'])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pandapipes
3
- Version: 0.12.0.dev2
3
+ Version: 0.12.0.dev3
4
4
  Summary: A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids
5
5
  Author-email: Simon Ruben Drauz-Mauel <simon.ruben.drauz-mauel@iee.fraunhofer.de>, Daniel Lohmeier <daniel.lohmeier@retoflow.de>, Jolando Marius Kisse <jolando.kisse@uni-kassel.de>
6
6
  License: Copyright (c) 2020-2024 by Fraunhofer Institute for Energy Economics