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.
- {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/release.yml +8 -6
- {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/run_tests_develop.yml +34 -29
- {pandapipes-0.8.4 → pandapipes-0.9.0}/.github/workflows/run_tests_master.yml +28 -24
- {pandapipes-0.8.4 → pandapipes-0.9.0}/AUTHORS +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0}/CHANGELOG.rst +34 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0}/LICENSE +1 -1
- pandapipes-0.9.0/MANIFEST.in +3 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0}/PKG-INFO +37 -7
- {pandapipes-0.8.4 → pandapipes-0.9.0}/README.rst +0 -4
- {pandapipes-0.8.4 → pandapipes-0.9.0}/setup.py +12 -10
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/__init__.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/base_component.py +24 -39
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_models.py +3 -70
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_w_internals_models.py +8 -9
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_wo_internals_models.py +8 -8
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/branch_wzerolength_models.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/circulation_pump.py +4 -10
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/const_flow_models.py +6 -8
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/node_element_models.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/node_models.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/circulation_pump_mass_component.py +1 -4
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/circulation_pump_pressure_component.py +1 -5
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/component_toolbox.py +44 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/compressor_component.py +31 -9
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/ext_grid_component.py +4 -6
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/flow_control_component.py +42 -51
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/heat_exchanger_component.py +21 -33
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/junction_component.py +27 -20
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/mass_storage_component.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pipe_component.py +24 -33
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pressure_control_component.py +13 -30
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/pump_component.py +67 -54
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/sink_component.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/source_component.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/valve_component.py +7 -34
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/constants.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/control/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/control/run_control.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/data_cleaning.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/preparing_steps.py +27 -22
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/stanet2pandapipes.py +10 -5
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/table_creation.py +140 -79
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/create_valve_pipe.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_component.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_plotting.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/create.py +58 -4
- pandapipes-0.9.0/src/pandapipes/idx_branch.py +47 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/idx_node.py +3 -3
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/convert_format.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/file_io.py +2 -3
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/io/io_utils.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/controller/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/controller/multinet_control.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/control/run_control_multinet.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/create_multinet.py +1 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/multinet.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/timeseries/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/multinet/timeseries/run_time_series_multinet.py +7 -6
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/nw_aux.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_gas_networks.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_heat_transfer_networks.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/simple_water_networks.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pandapipes_net.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/build_system_matrix.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_calculation.py +36 -8
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_toolbox.py +8 -7
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/derivative_toolbox_numba.py +11 -6
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/internals_toolbox.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pf/pipeflow_setup.py +138 -55
- pandapipes-0.9.0/src/pandapipes/pf/result_extraction.py +305 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/pipeflow.py +58 -67
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/collections.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/generic_geodata.py +9 -13
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/geo.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/patch_makers.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/pipeflow_results.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/plotting_toolbox.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/plotting/simple_plot.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/__init__.py +1 -1
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/compressibility.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/density.txt +58 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/der_compressibility.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/gas_composition.txt +10 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/heat_capacity.txt +58 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/higher_heating_value.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/molar_mass.txt +2 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_pure/viscosity.txt +58 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/compressibility.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/density.txt +58 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/der_compressibility.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/gas_composition.txt +13 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/heat_capacity.txt +58 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/higher_heating_value.txt +3 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/molar_mass.txt +2 -0
- pandapipes-0.9.0/src/pandapipes/properties/biomethane_treated/viscosity.txt +58 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/fluids.py +26 -25
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/properties_toolbox.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/std_type_class.py +4 -3
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/std_types.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/__init__.py +1 -1
- {pandapipes-0.8.4/pandapipes/test/networks → pandapipes-0.9.0/src/pandapipes/test/api}/__init__.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.8.5_gas.json +412 -0
- pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.8.5_water.json +466 -0
- pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.9.0_gas.json +458 -0
- pandapipes-0.9.0/src/pandapipes/test/api/old_versions/example_0.9.0_water.json +520 -0
- pandapipes-0.9.0/src/pandapipes/test/api/release_cycle/release_control_test_network.py +245 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_aux_function.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_circ_pump_mass.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_circ_pump_pressure.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_compressor.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_ext_grid.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_heat_exchanger.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_mass_storage.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pipe_results.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pressure_control.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_pump.py +44 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_valve.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_convert_format.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_create.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_network_tables.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_special_networks.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_std_types.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/test_stanet_converter.py +1 -1
- {pandapipes-0.8.4/pandapipes/test/api → pandapipes-0.9.0/src/pandapipes/test/io}/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/io/test_file_io.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/test_control_multinet.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/multinet/test_time_series_multinet.py +1 -1
- {pandapipes-0.8.4/pandapipes/test/io → pandapipes-0.9.0/src/pandapipes/test/networks}/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/networks/test_networks.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/openmodelica_comparison/__init__.py +3 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/pipeflow_openmodelica_comparison.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/test_heat_transfer_openmodelica.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/openmodelica_comparison/test_water_openmodelica.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_inservice.py +136 -29
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_non_convergence.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_options.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_pipeflow_analytic_comparison.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_pipeflow_modes.py +3 -3
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_time_series.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/test_update_matrix.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/plotting/__init__.py +3 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_collections.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_generic_coordinates.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_pipeflow_results.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/plotting/test_simple_collections.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/properties/__init__.py +3 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/properties/test_fluid_specials.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/properties/test_properties_toolbox.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/pytest.ini +5 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/run_tests.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/stanet_comparison/__init__.py +3 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/pipeflow_stanet_comparison.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/test_gas_stanet.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/stanet_comparison/test_water_stanet.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/test_imports.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/test_toolbox.py +1 -1
- pandapipes-0.9.0/src/pandapipes/test/topology/__init__.py +3 -0
- pandapipes-0.9.0/src/pandapipes/test/topology/test_graph_searches.py +20 -0
- pandapipes-0.9.0/src/pandapipes/test/topology/test_nxgraph.py +27 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/timeseries/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/timeseries/run_time_series.py +4 -5
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/toolbox.py +60 -92
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/__init__.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/create_graph.py +2 -2
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/topology/graph_searches.py +1 -1
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/PKG-INFO +37 -7
- pandapipes-0.9.0/src/pandapipes.egg-info/SOURCES.txt +403 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/requires.txt +3 -3
- pandapipes-0.8.4/MANIFEST.in +0 -7
- pandapipes-0.8.4/pandapipes/converter/__init__.py +0 -5
- pandapipes-0.8.4/pandapipes/idx_branch.py +0 -46
- pandapipes-0.8.4/pandapipes/pf/result_extraction.py +0 -255
- pandapipes-0.8.4/pandapipes/test/openmodelica_comparison/__init__.py +0 -3
- pandapipes-0.8.4/pandapipes/test/plotting/__init__.py +0 -3
- pandapipes-0.8.4/pandapipes/test/properties/__init__.py +0 -3
- pandapipes-0.8.4/pandapipes/test/stanet_comparison/__init__.py +0 -3
- pandapipes-0.8.4/pandapipes.egg-info/SOURCES.txt +0 -379
- {pandapipes-0.8.4 → pandapipes-0.9.0}/setup.cfg +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/gas_net_schutterwald_1bar.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta_2sinks.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/heights.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_pipe.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_source.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/section_variation.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/t_cross.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/two_pipes.json +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-sw.json +0 -0
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-sw.json +0 -0
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-sw.json +0 -0
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-sw.json +0 -0
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-sw.json +0 -0
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-sw.json +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/air/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/carbondioxide/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/ethane/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/higher_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/lower_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hgas/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/higher_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/lower_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/hydrogen/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/higher_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/lower_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/lgas/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/higher_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/lower_heating_value.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/methane/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/nitrogen/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/oxygen/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/density.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/der_compressibility.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/heat_capacity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/molar_mass.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/properties/water/viscosity.txt +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pipe.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P1.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P2.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/std_types/library/Pump/P3.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.1.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.1.2.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.2.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.4.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.5.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.6.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.7.0.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.0_gas.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.0_water.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.1_gas.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.1_water.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.2_gas.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.2_water.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.3_gas.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.3_water.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.4_gas.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/old_versions/example_0.8.4_water.json +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/release_cycle/release_control_test_sink_profiles.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/release_cycle/release_control_test_source_profiles.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_components/test_flow_control.py +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/api/test_time_series.py +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/__init__.py +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_2valvepipe.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_closed.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_open.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_2zu_2ab_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_masche_1load_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_masche_1load_direction_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_one_pipe_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_tee_2ab_1zu_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/Temperature_tee_2zu_1ab_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/ext_grid_p.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/gas_sections_an.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/heat_exchanger_test.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/hydraulics.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/pressure_control_test_analytical.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_circ_pump_mass.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_circ_pump_pressure.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_pressure_control.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_pump.csv +0 -0
- {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
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_pipe/lambda.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_results/res_pipe/reynolds.csv +0 -0
- {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
- {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
- {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
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_sink_profiles.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_time_series_source_profiles.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/test/pipeflow_internals/data/test_valve.csv +0 -0
- {pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes.egg-info/dependency_links.txt +0 -0
- {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.
|
|
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@
|
|
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
|
|
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.
|
|
20
|
+
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
21
|
+
os: [ ubuntu-latest, windows-latest ]
|
|
22
22
|
steps:
|
|
23
|
-
- uses: actions/checkout@
|
|
23
|
+
- uses: actions/checkout@v3
|
|
24
24
|
- name: Set up Python ${{ matrix.python-version }}
|
|
25
|
-
uses: actions/setup-python@
|
|
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
|
|
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.
|
|
59
|
-
|
|
59
|
+
python-version: ['3.10']
|
|
60
|
+
os: [ ubuntu-latest, windows-latest ]
|
|
60
61
|
steps:
|
|
61
|
-
- uses: actions/checkout@
|
|
62
|
+
- uses: actions/checkout@v3
|
|
62
63
|
- name: Set up Python ${{ matrix.python-version }}
|
|
63
|
-
uses: actions/setup-python@
|
|
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:
|
|
88
|
+
runs-on: ${{ matrix.os }}
|
|
87
89
|
strategy:
|
|
88
90
|
matrix:
|
|
89
|
-
python-version: ['3.
|
|
91
|
+
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
92
|
+
os: [ ubuntu-latest, windows-latest ]
|
|
90
93
|
steps:
|
|
91
|
-
- uses: actions/checkout@
|
|
94
|
+
- uses: actions/checkout@v3
|
|
92
95
|
- name: Set up Python ${{ matrix.python-version }}
|
|
93
|
-
uses: actions/setup-python@
|
|
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
|
|
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.
|
|
119
|
+
python-version: [ '3.10' ]
|
|
115
120
|
steps:
|
|
116
|
-
- uses: actions/checkout@
|
|
121
|
+
- uses: actions/checkout@v3
|
|
117
122
|
- name: Set up Python ${{ matrix.python-version }}
|
|
118
|
-
uses: actions/setup-python@
|
|
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
|
|
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.
|
|
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@
|
|
22
|
+
- uses: actions/checkout@v3
|
|
24
23
|
- name: Set up Python ${{ matrix.python-version }}
|
|
25
|
-
uses: actions/setup-python@
|
|
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
|
|
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:
|
|
55
|
+
runs-on: ${{ matrix.os }}
|
|
55
56
|
strategy:
|
|
56
57
|
matrix:
|
|
57
|
-
python-version: ['3.
|
|
58
|
+
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
59
|
+
os: [ ubuntu-latest, windows-latest ]
|
|
58
60
|
steps:
|
|
59
|
-
- uses: actions/checkout@
|
|
61
|
+
- uses: actions/checkout@v3
|
|
60
62
|
- name: Set up Python ${{ matrix.python-version }}
|
|
61
|
-
uses: actions/setup-python@
|
|
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
|
|
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.
|
|
86
|
+
python-version: [ '3.10' ]
|
|
83
87
|
steps:
|
|
84
|
-
- uses: actions/checkout@
|
|
88
|
+
- uses: actions/checkout@v3
|
|
85
89
|
- name: Set up Python ${{ matrix.python-version }}
|
|
86
|
-
uses: actions/setup-python@
|
|
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-
|
|
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-
|
|
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
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pandapipes
|
|
3
|
-
Version: 0.
|
|
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.
|
|
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-
|
|
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.[
|
|
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.
|
|
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
|
-
|
|
44
|
+
long_description_content_type='text/x-rst',
|
|
44
45
|
url='http://www.pandapipes.org',
|
|
45
46
|
license='BSD',
|
|
46
|
-
install_requires=["pandapower>=2.
|
|
47
|
+
install_requires=["pandapower>=2.13.1", "matplotlib", "shapely"],
|
|
47
48
|
extras_require={"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex"],
|
|
48
|
-
"plotting": ["plotly", "
|
|
49
|
+
"plotting": ["plotly", "igraph"],
|
|
49
50
|
"test": ["pytest", "pytest-xdist", "nbmake"],
|
|
50
51
|
"all": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
|
|
51
|
-
"plotly", "
|
|
52
|
-
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-
|
|
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.
|
|
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-
|
|
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
|
|
{pandapipes-0.8.4 → pandapipes-0.9.0/src}/pandapipes/component_models/abstract_models/__init__.py
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2020-
|
|
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-
|
|
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,
|
|
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
|
|
47
|
-
:type
|
|
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
|
|
138
|
+
def create_component_array(cls, net, component_pits):
|
|
132
139
|
"""
|
|
133
|
-
Function which creates pit
|
|
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
|
|
138
|
-
:type
|
|
139
|
-
:return:
|
|
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
|
|
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
|
|
166
|
+
def create_pit_branch_entries(cls, net, branch_pit):
|
|
177
167
|
"""
|
|
178
|
-
Function which creates
|
|
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
|
+
|