├── .codacy.yml ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── blank-template.md │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── release.yml │ ├── relying_test_on_dev_merge.yml │ ├── run_tests_develop.yml │ └── run_tests_master.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ └── __init__.py │ ├── about.rst │ ├── about │ ├── authors.rst │ ├── changelog.rst │ ├── constants.csv │ ├── known_issues.rst │ ├── license.rst │ ├── nameing1.csv │ ├── nameing2.csv │ ├── normal.csv │ ├── references.rst │ ├── symbols.csv │ ├── symbols.rst │ └── units.rst │ ├── components.rst │ ├── components │ ├── circulation_pump_mass │ │ ├── circ_pump_mass_component.rst │ │ ├── circ_pump_mass_par.csv │ │ └── circ_pump_mass_res.csv │ ├── circulation_pump_pressure │ │ ├── circ_pump_pressure_component.rst │ │ ├── circ_pump_pressure_par.csv │ │ └── circ_pump_pressure_res.csv │ ├── compressor │ │ ├── compressor_component.rst │ │ ├── compressor_par.csv │ │ └── compressor_res.csv │ ├── empty_net │ │ └── empty_network.rst │ ├── ext_grid │ │ ├── ext_grid_component.rst │ │ ├── ext_grid_par.csv │ │ └── ext_grid_res.csv │ ├── flow_control │ │ ├── flow_control_component.rst │ │ ├── flow_control_par.csv │ │ └── flow_control_res.csv │ ├── heat_consumer │ │ ├── heat_consumer.jpg │ │ ├── heat_consumer_component.rst │ │ ├── heat_consumer_par.csv │ │ └── heat_consumer_res.csv │ ├── heat_exchanger │ │ ├── heat_exchanger_component.rst │ │ ├── heat_exchanger_par.csv │ │ └── heat_exchanger_res.csv │ ├── junction │ │ ├── junction_component.rst │ │ ├── junction_geo.csv │ │ ├── junction_heat.png │ │ ├── junction_hyd.png │ │ ├── junction_par.csv │ │ └── junction_res.csv │ ├── pipe │ │ ├── Test_pipe.svg │ │ ├── pipe.png │ │ ├── pipeT.png │ │ ├── pipe_component.rst │ │ ├── pipe_geo.csv │ │ ├── pipe_par.csv │ │ ├── pipe_res_gas.csv │ │ └── pipe_res_liquid.csv │ ├── press_control │ │ ├── press_control_component.rst │ │ ├── press_control_par.csv │ │ └── press_control_res.csv │ ├── pump │ │ ├── pump_characteristic_curves.png │ │ ├── pump_component.rst │ │ ├── pump_par.csv │ │ └── pump_res.csv │ ├── sink │ │ ├── sink_component.rst │ │ ├── sink_par.csv │ │ └── sink_res.csv │ ├── source │ │ ├── source_component.rst │ │ ├── source_par.csv │ │ └── source_res.csv │ ├── storage │ │ ├── mass_storage_par.csv │ │ ├── mass_storage_res.csv │ │ └── storage_component.rst │ └── valve │ │ ├── valve_component.rst │ │ ├── valve_par.csv │ │ ├── valve_res_gas.csv │ │ └── valve_res_liquid.csv │ ├── conf.py │ ├── controller.rst │ ├── controller │ ├── controller_classes.rst │ └── run.rst │ ├── converter.rst │ ├── converter │ └── stanet_converter.rst │ ├── fluid_properties.rst │ ├── fluid_properties │ ├── composition.csv │ ├── create_fluids.rst │ ├── fluids.rst │ └── fluids_auxiliary.rst │ ├── index.rst │ ├── multi_energy_nets.rst │ ├── multi_energy_nets │ ├── coupling_controllers.rst │ ├── me_time_series.rst │ └── multinet.rst │ ├── networks.rst │ ├── networks │ ├── combined │ │ ├── combined_networks.rst │ │ ├── district.png │ │ ├── mixed_net.png │ │ ├── parallel.png │ │ ├── versatility_gas.png │ │ └── versatility_water.png │ ├── heat_transfer_networks │ │ ├── delta.png │ │ ├── delta_2sinks.png │ │ ├── heat_transfer_networks.rst │ │ ├── heights.png │ │ ├── one_pipe.png │ │ ├── one_source.png │ │ ├── section_variation.png │ │ ├── t_cross.png │ │ └── two_pipes.png │ ├── meshed │ │ ├── delta.png │ │ ├── heights.png │ │ ├── meshed_networks.rst │ │ ├── pumps.png │ │ ├── square.png │ │ └── two_valves.png │ ├── one_pipe │ │ ├── one_pipe.png │ │ └── one_pipe_networks.rst │ ├── strand │ │ ├── cross.png │ │ ├── pump.png │ │ ├── strand_net.png │ │ ├── strand_networks.rst │ │ ├── two_pipes.png │ │ └── two_pumps.png │ ├── t_cross │ │ ├── t-cross_1.png │ │ ├── t-cross_2.png │ │ ├── t_cross_networks.rst │ │ └── valves.png │ └── two_eg │ │ ├── H-net.png │ │ ├── two_external_grids.rst │ │ └── two_pipes_two_ext_grid.png │ ├── networks_legend.png │ ├── pandapipes_logo.png │ ├── pics │ ├── e2n.png │ ├── iee.png │ └── pp.svg │ ├── pipeflow.rst │ ├── pipeflow │ ├── calculation_modes.rst │ ├── compressible_par.csv │ ├── incompressible_par.csv │ ├── internal_functions.rst │ ├── modes.png │ ├── options.rst │ ├── pipeflow_procedure.rst │ ├── run.rst │ ├── temperature_overview.csv │ └── temperature_par.csv │ ├── plotting.rst │ ├── plotting │ ├── collections.rst │ ├── simple_plot.rst │ └── simple_plot_par.csv │ ├── references.bib │ ├── save_load.rst │ ├── standard_types │ ├── basic_standard_types.rst │ ├── managing_standard_types.rst │ ├── pipe_std_type_parameters.csv │ ├── pipe_std_types.csv │ ├── pump_std_type.csv │ └── std_types_in_pandapipes.rst │ ├── std_types.rst │ ├── timeseries.rst │ ├── timeseries │ ├── functions.rst │ ├── overview.rst │ └── timeseries_module_overview.png │ └── toolbox.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── pandapipes │ ├── __init__.py │ ├── component_models │ ├── __init__.py │ ├── abstract_models │ │ ├── __init__.py │ │ ├── base_component.py │ │ ├── branch_models.py │ │ ├── branch_w_internals_models.py │ │ ├── branch_wo_internals_models.py │ │ ├── circulation_pump.py │ │ ├── const_flow_models.py │ │ ├── node_element_models.py │ │ └── node_models.py │ ├── circulation_pump_mass_component.py │ ├── circulation_pump_pressure_component.py │ ├── component_toolbox.py │ ├── compressor_component.py │ ├── ext_grid_component.py │ ├── flow_control_component.py │ ├── heat_consumer_component.py │ ├── heat_exchanger_component.py │ ├── junction_component.py │ ├── mass_storage_component.py │ ├── pipe_component.py │ ├── pressure_control_component.py │ ├── pump_component.py │ ├── sink_component.py │ ├── source_component.py │ └── valve_component.py │ ├── constants.py │ ├── control │ ├── __init__.py │ └── run_control.py │ ├── converter │ └── stanet │ │ ├── __init__.py │ │ ├── data_cleaning.py │ │ ├── preparing_steps.py │ │ ├── stanet2pandapipes.py │ │ ├── table_creation.py │ │ └── valve_pipe_component │ │ ├── __init__.py │ │ ├── create_valve_pipe.py │ │ ├── valve_pipe_component.py │ │ └── valve_pipe_plotting.py │ ├── create.py │ ├── deprecations.py │ ├── idx_branch.py │ ├── idx_node.py │ ├── io │ ├── __init__.py │ ├── convert_format.py │ ├── file_io.py │ └── io_utils.py │ ├── multinet │ ├── __init__.py │ ├── control │ │ ├── __init__.py │ │ ├── controller │ │ │ ├── __init__.py │ │ │ └── multinet_control.py │ │ └── run_control_multinet.py │ ├── create_multinet.py │ ├── multinet.py │ └── timeseries │ │ ├── __init__.py │ │ └── run_time_series_multinet.py │ ├── networks │ ├── __init__.py │ ├── network_files │ │ ├── gas_net_schutterwald_1bar.json │ │ ├── openmodelica_test_networks │ │ │ ├── heat_transfer_cases │ │ │ │ ├── delta.json │ │ │ │ ├── delta_2sinks.json │ │ │ │ ├── heights.json │ │ │ │ ├── one_pipe.json │ │ │ │ ├── one_source.json │ │ │ │ ├── section_variation.json │ │ │ │ ├── t_cross.json │ │ │ │ └── two_pipes.json │ │ │ ├── water_cases_colebrook │ │ │ │ ├── combined_networks │ │ │ │ │ ├── mixed_net.json │ │ │ │ │ └── versatility.json │ │ │ │ ├── meshed_networks │ │ │ │ │ ├── delta.json │ │ │ │ │ ├── heights.json │ │ │ │ │ ├── pumps.json │ │ │ │ │ └── two_valves.json │ │ │ │ ├── one_pipe │ │ │ │ │ ├── pipe_1.json │ │ │ │ │ ├── pipe_2.json │ │ │ │ │ └── pipe_3.json │ │ │ │ ├── strand_net │ │ │ │ │ ├── cross_3ext.json │ │ │ │ │ ├── strand_net.json │ │ │ │ │ ├── two_pipes.json │ │ │ │ │ └── two_pumps.json │ │ │ │ ├── t_cross │ │ │ │ │ ├── t_cross.json │ │ │ │ │ └── valves.json │ │ │ │ └── two_pressure_junctions │ │ │ │ │ └── two_pipes.json │ │ │ └── water_cases_swamee-jain │ │ │ │ ├── combined_networks │ │ │ │ ├── mixed_net.json │ │ │ │ └── versatility.json │ │ │ │ ├── meshed_networks │ │ │ │ ├── delta.json │ │ │ │ ├── heights.json │ │ │ │ ├── one_valve_stanet.json │ │ │ │ ├── pumps.json │ │ │ │ └── two_valves.json │ │ │ │ ├── one_pipe │ │ │ │ ├── pipe_1.json │ │ │ │ ├── pipe_2.json │ │ │ │ └── pipe_3.json │ │ │ │ ├── strand_net │ │ │ │ ├── cross_3ext.json │ │ │ │ ├── strand_net.json │ │ │ │ ├── strand_net_stanet_variation1.json │ │ │ │ ├── strand_net_stanet_variation2.json │ │ │ │ ├── two_pipes.json │ │ │ │ └── two_pumps.json │ │ │ │ ├── t_cross │ │ │ │ ├── t_cross.json │ │ │ │ └── valves.json │ │ │ │ └── two_pressure_junctions │ │ │ │ ├── one_pipe_stanet.json │ │ │ │ └── two_pipes.json │ │ ├── simbench_test_networks │ │ │ ├── 1-LV-rural1--0-no_sw.json │ │ │ ├── 1-LV-rural1--0-sw.json │ │ │ ├── 1-LV-rural2--0-no_sw.json │ │ │ ├── 1-LV-rural2--0-sw.json │ │ │ ├── 1-LV-rural3--0-no_sw.json │ │ │ ├── 1-LV-rural3--0-sw.json │ │ │ ├── 1-LV-semiurb4--0-no_sw.json │ │ │ ├── 1-LV-semiurb4--0-sw.json │ │ │ ├── 1-LV-semiurb5--0-no_sw.json │ │ │ ├── 1-LV-semiurb5--0-sw.json │ │ │ ├── 1-LV-urban6--0-no_sw.json │ │ │ └── 1-LV-urban6--0-sw.json │ │ ├── stanet_test_networks │ │ │ ├── gas_cases │ │ │ │ ├── combined_networks │ │ │ │ │ ├── parallel_N.json │ │ │ │ │ ├── parallel_PC.json │ │ │ │ │ └── versatility_PC.json │ │ │ │ ├── meshed_networks │ │ │ │ │ ├── delta_PC.json │ │ │ │ │ ├── pumps_N.json │ │ │ │ │ ├── square_N.json │ │ │ │ │ ├── square_PC.json │ │ │ │ │ ├── two_valves_N.json │ │ │ │ │ └── two_valves_PC.json │ │ │ │ ├── one_pipe │ │ │ │ │ ├── pipe_1_N.json │ │ │ │ │ ├── pipe_1_PC.json │ │ │ │ │ ├── pipe_2_N.json │ │ │ │ │ └── pipe_2_PC.json │ │ │ │ ├── strand_net │ │ │ │ │ ├── pump_N.json │ │ │ │ │ ├── two_pipes_N.json │ │ │ │ │ └── two_pipes_PC.json │ │ │ │ ├── t_cross │ │ │ │ │ ├── t_cross1_N.json │ │ │ │ │ ├── t_cross1_PC.json │ │ │ │ │ ├── t_cross2_N.json │ │ │ │ │ └── t_cross2_PC.json │ │ │ │ └── two_pressure_junctions │ │ │ │ │ ├── H_net_N.json │ │ │ │ │ └── H_net_PC.json │ │ │ └── water_cases │ │ │ │ ├── combined_networks │ │ │ │ ├── district_N.json │ │ │ │ ├── district_PC.json │ │ │ │ ├── versatility_N.json │ │ │ │ └── versatility_PC.json │ │ │ │ ├── meshed_networks │ │ │ │ ├── delta_N.json │ │ │ │ ├── pumps_N.json │ │ │ │ ├── two_valves_N.json │ │ │ │ └── two_valves_PC.json │ │ │ │ ├── one_pipe │ │ │ │ ├── pipe_1_N.json │ │ │ │ ├── pipe_1_PC.json │ │ │ │ ├── pipe_2_N.json │ │ │ │ ├── pipe_2_PC.json │ │ │ │ ├── pipe_3_N.json │ │ │ │ └── pipe_3_PC.json │ │ │ │ ├── strand_net │ │ │ │ ├── cross_PC.json │ │ │ │ ├── pump_N.json │ │ │ │ ├── strand_net_N.json │ │ │ │ ├── strand_net_PC.json │ │ │ │ ├── two_pipes_N.json │ │ │ │ └── two_pipes_PC.json │ │ │ │ ├── t_cross │ │ │ │ ├── t_cross_N.json │ │ │ │ └── t_cross_PC.json │ │ │ │ └── two_pressure_junctions │ │ │ │ ├── two_pipes_N.json │ │ │ │ └── two_pipes_PC.json │ │ └── sw_heat.json │ ├── nw_aux.py │ ├── simple_gas_networks.py │ ├── simple_heat_transfer_networks.py │ └── simple_water_networks.py │ ├── pandapipes_net.py │ ├── pf │ ├── __init__.py │ ├── build_system_matrix.py │ ├── derivative_calculation.py │ ├── derivative_toolbox.py │ ├── derivative_toolbox_numba.py │ ├── internals_toolbox.py │ ├── pipeflow_setup.py │ └── result_extraction.py │ ├── pipeflow.py │ ├── plotting │ ├── __init__.py │ ├── collections.py │ ├── generic_geodata.py │ ├── geo.py │ ├── patch_makers.py │ ├── pipeflow_results.py │ ├── plotting_toolbox.py │ └── simple_plot.py │ ├── properties │ ├── __init__.py │ ├── air │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── biomethane_pure │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── gas_composition.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── biomethane_treated │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── gas_composition.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── carbondioxide │ │ ├── density.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── ethane │ │ ├── density.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── fluids.py │ ├── hgas │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── lower_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── hydrogen │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── lower_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── lgas │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── lower_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── methane │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── higher_heating_value.txt │ │ ├── lower_heating_value.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── nitrogen │ │ ├── density.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── oxygen │ │ ├── density.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── properties_toolbox.py │ └── water │ │ ├── compressibility.txt │ │ ├── density.txt │ │ ├── der_compressibility.txt │ │ ├── heat_capacity.txt │ │ ├── molar_mass.txt │ │ └── viscosity.txt │ ├── std_types │ ├── __init__.py │ ├── library │ │ ├── Pipe.csv │ │ └── Pump │ │ │ ├── P1.csv │ │ │ ├── P2.csv │ │ │ └── P3.csv │ ├── std_type_class.py │ └── std_types.py │ ├── test │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── old_versions │ │ │ ├── example_0.1.0.json │ │ │ ├── example_0.1.1.json │ │ │ ├── example_0.1.2.json │ │ │ ├── example_0.10.0_gas.json │ │ │ ├── example_0.10.0_water.json │ │ │ ├── example_0.11.0_gas.json │ │ │ ├── example_0.11.0_water.json │ │ │ ├── example_0.12.0_gas.json │ │ │ ├── example_0.12.0_water.json │ │ │ ├── example_0.2.0.json │ │ │ ├── example_0.4.0.json │ │ │ ├── example_0.5.0.json │ │ │ ├── example_0.6.0.json │ │ │ ├── example_0.7.0.json │ │ │ ├── example_0.8.0_gas.json │ │ │ ├── example_0.8.0_water.json │ │ │ ├── example_0.8.1_gas.json │ │ │ ├── example_0.8.1_water.json │ │ │ ├── example_0.8.2_gas.json │ │ │ ├── example_0.8.2_water.json │ │ │ ├── example_0.8.3_gas.json │ │ │ ├── example_0.8.3_water.json │ │ │ ├── example_0.8.4_gas.json │ │ │ ├── example_0.8.4_water.json │ │ │ ├── example_0.8.5_gas.json │ │ │ ├── example_0.8.5_water.json │ │ │ ├── example_0.9.0_gas.json │ │ │ └── example_0.9.0_water.json │ │ ├── release_cycle │ │ │ ├── release_control_test_network.py │ │ │ ├── release_control_test_sink_profiles.csv │ │ │ └── release_control_test_source_profiles.csv │ │ ├── test_aux_function.py │ │ ├── test_components │ │ │ ├── __init__.py │ │ │ ├── test_circ_pump_mass.py │ │ │ ├── test_circ_pump_pressure.py │ │ │ ├── test_compressor.py │ │ │ ├── test_ext_grid.py │ │ │ ├── test_flow_control.py │ │ │ ├── test_heat_consumer.py │ │ │ ├── test_heat_exchanger.py │ │ │ ├── test_mass_storage.py │ │ │ ├── test_pipe.py │ │ │ ├── test_pressure_control.py │ │ │ ├── test_pump.py │ │ │ └── test_valve.py │ │ ├── test_convert_format.py │ │ ├── test_create.py │ │ ├── test_network_tables.py │ │ ├── test_special_networks.py │ │ ├── test_std_types.py │ │ └── test_time_series.py │ ├── converter │ │ ├── __init__.py │ │ ├── converter_test_files │ │ │ ├── Exampelonia_mini.csv │ │ │ ├── Exampelonia_mini_with_2valvepipe.csv │ │ │ ├── Exampelonia_mini_with_valve_2sliders_closed.csv │ │ │ └── Exampelonia_mini_with_valve_2sliders_open.csv │ │ └── test_stanet_converter.py │ ├── data │ │ ├── Temperature_2zu_2ab_an.csv │ │ ├── Temperature_masche_1load_an.csv │ │ ├── Temperature_masche_1load_direction_an.csv │ │ ├── Temperature_one_pipe_an.csv │ │ ├── Temperature_tee_2ab_1zu_an.csv │ │ ├── Temperature_tee_2zu_1ab_an.csv │ │ ├── ext_grid_p.csv │ │ ├── gas_sections_an.csv │ │ ├── heat_exchanger_test.csv │ │ ├── hydraulics.csv │ │ ├── pressure_control_test_analytical.csv │ │ ├── test_circ_pump_mass.csv │ │ ├── test_circ_pump_pressure.csv │ │ ├── test_pressure_control.csv │ │ ├── test_pump.csv │ │ ├── test_time_series_results │ │ │ ├── res_ext_grid │ │ │ │ └── mdot_kg_per_s.csv │ │ │ ├── res_junction │ │ │ │ └── p_bar.csv │ │ │ ├── res_pipe │ │ │ │ ├── lambda.csv │ │ │ │ ├── reynolds.csv │ │ │ │ └── v_mean_m_per_s.csv │ │ │ ├── res_sink │ │ │ │ └── mdot_kg_per_s.csv │ │ │ └── res_source │ │ │ │ └── mdot_kg_per_s.csv │ │ ├── test_time_series_sink_profiles.csv │ │ ├── test_time_series_source_profiles.csv │ │ └── test_valve.csv │ ├── io │ │ ├── __init__.py │ │ └── test_file_io.py │ ├── multinet │ │ ├── __init__.py │ │ ├── test_control_multinet.py │ │ └── test_time_series_multinet.py │ ├── networks │ │ ├── __init__.py │ │ └── test_networks.py │ ├── openmodelica_comparison │ │ ├── __init__.py │ │ ├── pipeflow_openmodelica_comparison.py │ │ ├── test_heat_transfer_openmodelica.py │ │ └── test_water_openmodelica.py │ ├── pipeflow_internals │ │ ├── __init__.py │ │ ├── test_inservice.py │ │ ├── test_non_convergence.py │ │ ├── test_options.py │ │ ├── test_pipeflow_analytic_comparison.py │ │ ├── test_pipeflow_modes.py │ │ ├── test_time_series.py │ │ └── test_update_matrix.py │ ├── plotting │ │ ├── __init__.py │ │ ├── test_collections.py │ │ ├── test_generic_coordinates.py │ │ ├── test_pipeflow_results.py │ │ └── test_simple_collections.py │ ├── properties │ │ ├── __init__.py │ │ ├── test_fluid_specials.py │ │ └── test_properties_toolbox.py │ ├── pytest.ini │ ├── run_tests.py │ ├── stanet_comparison │ │ ├── __init__.py │ │ ├── pipeflow_stanet_comparison.py │ │ ├── test_gas_stanet.py │ │ └── test_water_stanet.py │ ├── test_imports.py │ ├── test_toolbox.py │ └── topology │ │ ├── __init__.py │ │ ├── test_graph_searches.py │ │ └── test_nxgraph.py │ ├── timeseries │ ├── __init__.py │ └── run_time_series.py │ ├── toolbox.py │ └── topology │ ├── __init__.py │ ├── create_graph.py │ ├── graph_searches.py │ └── topology_toolbox.py ├── tutorials ├── building_a_storage_controller.ipynb ├── coupled_nets_h2_p2g2p.ipynb ├── creating_a_simple_network.ipynb ├── district_heating │ ├── circular_flow_in_a_district_heating_grid.ipynb │ ├── multiple_pumps_flow_in_a_circular_district_heating_grid.ipynb │ └── time_series_in_a_circular_district_heating_grid.ipynb ├── ein_einfaches_netz_erstellen.ipynb ├── files │ ├── simple_time_series_example_sink_profiles.csv │ └── simple_time_series_example_source_profiles.csv ├── height_difference_example.ipynb ├── höhendifferenzen.ipynb ├── minimal_example.ipynb ├── multienergienetze.ipynb ├── output_writer_tutorial.ipynb ├── pics │ ├── district_heating │ │ ├── multiple_pumps_district_heating_net_raw.png │ │ ├── multiple_pumps_district_heating_net_text.png │ │ ├── simple_district_heating_net_raw.png │ │ ├── simple_district_heating_net_text.png │ │ ├── time_series_district_heating_net_raw.png │ │ └── time_series_district_heating_net_text.png │ ├── heat.png │ ├── heat_network_example.png │ ├── heat_network_tutorial_example.png │ ├── heat_network_tutorial_pipe_results.png │ ├── heat_network_tutorial_pipe_sections.png │ ├── minimal_example.png │ ├── minimal_example_closed_valve.png │ ├── rng_height.png │ ├── simple_network-1.png │ ├── simple_network-ext_grid.png │ ├── simple_network-junc.png │ ├── simple_network-pipes.png │ ├── simple_network-sink.png │ ├── simple_network-source.png │ ├── simple_network-valve.png │ ├── time_series_simple_example_csv_files.png │ ├── time_series_simple_example_network.png │ ├── time_series_simple_example_plot_mass_flow_ext_grid.png │ ├── time_series_simple_example_plot_pressures.png │ └── time_series_simple_example_plot_velocities.png ├── simple_plot.ipynb ├── simple_time_series_example.ipynb ├── standard_libraries.ipynb └── temperature_calculation.ipynb └── tutorials_extended └── tutorial_dhnx_pandapipes ├── input └── Pipe_data.csv ├── invest_data ├── consumers │ ├── bus.csv │ └── demand.csv ├── network │ └── pipes.csv └── producers │ ├── bus.csv │ └── source.csv ├── tutorial_dhnx_pandapipes.ipynb └── tutorial_dhnx_pandapipes.py /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/blank-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/ISSUE_TEMPLATE/blank-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/relying_test_on_dev_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/workflows/relying_test_on_dev_merge.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests_develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/workflows/run_tests_develop.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests_master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.github/workflows/run_tests_master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about.rst -------------------------------------------------------------------------------- /doc/source/about/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/authors.rst -------------------------------------------------------------------------------- /doc/source/about/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/changelog.rst -------------------------------------------------------------------------------- /doc/source/about/constants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/constants.csv -------------------------------------------------------------------------------- /doc/source/about/known_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/known_issues.rst -------------------------------------------------------------------------------- /doc/source/about/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/license.rst -------------------------------------------------------------------------------- /doc/source/about/nameing1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/nameing1.csv -------------------------------------------------------------------------------- /doc/source/about/nameing2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/nameing2.csv -------------------------------------------------------------------------------- /doc/source/about/normal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/normal.csv -------------------------------------------------------------------------------- /doc/source/about/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/references.rst -------------------------------------------------------------------------------- /doc/source/about/symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/symbols.csv -------------------------------------------------------------------------------- /doc/source/about/symbols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/symbols.rst -------------------------------------------------------------------------------- /doc/source/about/units.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/about/units.rst -------------------------------------------------------------------------------- /doc/source/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components.rst -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_mass/circ_pump_mass_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_mass/circ_pump_mass_component.rst -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_mass/circ_pump_mass_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_mass/circ_pump_mass_par.csv -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_mass/circ_pump_mass_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_mass/circ_pump_mass_res.csv -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_pressure/circ_pump_pressure_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_pressure/circ_pump_pressure_component.rst -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_pressure/circ_pump_pressure_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_pressure/circ_pump_pressure_par.csv -------------------------------------------------------------------------------- /doc/source/components/circulation_pump_pressure/circ_pump_pressure_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/circulation_pump_pressure/circ_pump_pressure_res.csv -------------------------------------------------------------------------------- /doc/source/components/compressor/compressor_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/compressor/compressor_component.rst -------------------------------------------------------------------------------- /doc/source/components/compressor/compressor_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/compressor/compressor_par.csv -------------------------------------------------------------------------------- /doc/source/components/compressor/compressor_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/compressor/compressor_res.csv -------------------------------------------------------------------------------- /doc/source/components/empty_net/empty_network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/empty_net/empty_network.rst -------------------------------------------------------------------------------- /doc/source/components/ext_grid/ext_grid_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/ext_grid/ext_grid_component.rst -------------------------------------------------------------------------------- /doc/source/components/ext_grid/ext_grid_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/ext_grid/ext_grid_par.csv -------------------------------------------------------------------------------- /doc/source/components/ext_grid/ext_grid_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/ext_grid/ext_grid_res.csv -------------------------------------------------------------------------------- /doc/source/components/flow_control/flow_control_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/flow_control/flow_control_component.rst -------------------------------------------------------------------------------- /doc/source/components/flow_control/flow_control_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/flow_control/flow_control_par.csv -------------------------------------------------------------------------------- /doc/source/components/flow_control/flow_control_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/flow_control/flow_control_res.csv -------------------------------------------------------------------------------- /doc/source/components/heat_consumer/heat_consumer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_consumer/heat_consumer.jpg -------------------------------------------------------------------------------- /doc/source/components/heat_consumer/heat_consumer_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_consumer/heat_consumer_component.rst -------------------------------------------------------------------------------- /doc/source/components/heat_consumer/heat_consumer_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_consumer/heat_consumer_par.csv -------------------------------------------------------------------------------- /doc/source/components/heat_consumer/heat_consumer_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_consumer/heat_consumer_res.csv -------------------------------------------------------------------------------- /doc/source/components/heat_exchanger/heat_exchanger_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_exchanger/heat_exchanger_component.rst -------------------------------------------------------------------------------- /doc/source/components/heat_exchanger/heat_exchanger_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_exchanger/heat_exchanger_par.csv -------------------------------------------------------------------------------- /doc/source/components/heat_exchanger/heat_exchanger_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/heat_exchanger/heat_exchanger_res.csv -------------------------------------------------------------------------------- /doc/source/components/junction/junction_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_component.rst -------------------------------------------------------------------------------- /doc/source/components/junction/junction_geo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_geo.csv -------------------------------------------------------------------------------- /doc/source/components/junction/junction_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_heat.png -------------------------------------------------------------------------------- /doc/source/components/junction/junction_hyd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_hyd.png -------------------------------------------------------------------------------- /doc/source/components/junction/junction_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_par.csv -------------------------------------------------------------------------------- /doc/source/components/junction/junction_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/junction/junction_res.csv -------------------------------------------------------------------------------- /doc/source/components/pipe/Test_pipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/Test_pipe.svg -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe.png -------------------------------------------------------------------------------- /doc/source/components/pipe/pipeT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipeT.png -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe_component.rst -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe_geo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe_geo.csv -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe_par.csv -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe_res_gas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe_res_gas.csv -------------------------------------------------------------------------------- /doc/source/components/pipe/pipe_res_liquid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pipe/pipe_res_liquid.csv -------------------------------------------------------------------------------- /doc/source/components/press_control/press_control_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/press_control/press_control_component.rst -------------------------------------------------------------------------------- /doc/source/components/press_control/press_control_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/press_control/press_control_par.csv -------------------------------------------------------------------------------- /doc/source/components/press_control/press_control_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/press_control/press_control_res.csv -------------------------------------------------------------------------------- /doc/source/components/pump/pump_characteristic_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pump/pump_characteristic_curves.png -------------------------------------------------------------------------------- /doc/source/components/pump/pump_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pump/pump_component.rst -------------------------------------------------------------------------------- /doc/source/components/pump/pump_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pump/pump_par.csv -------------------------------------------------------------------------------- /doc/source/components/pump/pump_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/pump/pump_res.csv -------------------------------------------------------------------------------- /doc/source/components/sink/sink_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/sink/sink_component.rst -------------------------------------------------------------------------------- /doc/source/components/sink/sink_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/sink/sink_par.csv -------------------------------------------------------------------------------- /doc/source/components/sink/sink_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/sink/sink_res.csv -------------------------------------------------------------------------------- /doc/source/components/source/source_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/source/source_component.rst -------------------------------------------------------------------------------- /doc/source/components/source/source_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/source/source_par.csv -------------------------------------------------------------------------------- /doc/source/components/source/source_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/source/source_res.csv -------------------------------------------------------------------------------- /doc/source/components/storage/mass_storage_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/storage/mass_storage_par.csv -------------------------------------------------------------------------------- /doc/source/components/storage/mass_storage_res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/storage/mass_storage_res.csv -------------------------------------------------------------------------------- /doc/source/components/storage/storage_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/storage/storage_component.rst -------------------------------------------------------------------------------- /doc/source/components/valve/valve_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/valve/valve_component.rst -------------------------------------------------------------------------------- /doc/source/components/valve/valve_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/valve/valve_par.csv -------------------------------------------------------------------------------- /doc/source/components/valve/valve_res_gas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/valve/valve_res_gas.csv -------------------------------------------------------------------------------- /doc/source/components/valve/valve_res_liquid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/components/valve/valve_res_liquid.csv -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/controller.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/controller.rst -------------------------------------------------------------------------------- /doc/source/controller/controller_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/controller/controller_classes.rst -------------------------------------------------------------------------------- /doc/source/controller/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/controller/run.rst -------------------------------------------------------------------------------- /doc/source/converter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/converter.rst -------------------------------------------------------------------------------- /doc/source/converter/stanet_converter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/converter/stanet_converter.rst -------------------------------------------------------------------------------- /doc/source/fluid_properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/fluid_properties.rst -------------------------------------------------------------------------------- /doc/source/fluid_properties/composition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/fluid_properties/composition.csv -------------------------------------------------------------------------------- /doc/source/fluid_properties/create_fluids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/fluid_properties/create_fluids.rst -------------------------------------------------------------------------------- /doc/source/fluid_properties/fluids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/fluid_properties/fluids.rst -------------------------------------------------------------------------------- /doc/source/fluid_properties/fluids_auxiliary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/fluid_properties/fluids_auxiliary.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/multi_energy_nets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/multi_energy_nets.rst -------------------------------------------------------------------------------- /doc/source/multi_energy_nets/coupling_controllers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/multi_energy_nets/coupling_controllers.rst -------------------------------------------------------------------------------- /doc/source/multi_energy_nets/me_time_series.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/multi_energy_nets/me_time_series.rst -------------------------------------------------------------------------------- /doc/source/multi_energy_nets/multinet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/multi_energy_nets/multinet.rst -------------------------------------------------------------------------------- /doc/source/networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks.rst -------------------------------------------------------------------------------- /doc/source/networks/combined/combined_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/combined_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/combined/district.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/district.png -------------------------------------------------------------------------------- /doc/source/networks/combined/mixed_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/mixed_net.png -------------------------------------------------------------------------------- /doc/source/networks/combined/parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/parallel.png -------------------------------------------------------------------------------- /doc/source/networks/combined/versatility_gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/versatility_gas.png -------------------------------------------------------------------------------- /doc/source/networks/combined/versatility_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/combined/versatility_water.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/delta.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/delta_2sinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/delta_2sinks.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/heat_transfer_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/heat_transfer_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/heights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/heights.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/one_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/one_pipe.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/one_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/one_source.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/section_variation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/section_variation.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/t_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/t_cross.png -------------------------------------------------------------------------------- /doc/source/networks/heat_transfer_networks/two_pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/heat_transfer_networks/two_pipes.png -------------------------------------------------------------------------------- /doc/source/networks/meshed/delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/delta.png -------------------------------------------------------------------------------- /doc/source/networks/meshed/heights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/heights.png -------------------------------------------------------------------------------- /doc/source/networks/meshed/meshed_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/meshed_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/meshed/pumps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/pumps.png -------------------------------------------------------------------------------- /doc/source/networks/meshed/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/square.png -------------------------------------------------------------------------------- /doc/source/networks/meshed/two_valves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/meshed/two_valves.png -------------------------------------------------------------------------------- /doc/source/networks/one_pipe/one_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/one_pipe/one_pipe.png -------------------------------------------------------------------------------- /doc/source/networks/one_pipe/one_pipe_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/one_pipe/one_pipe_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/strand/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/cross.png -------------------------------------------------------------------------------- /doc/source/networks/strand/pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/pump.png -------------------------------------------------------------------------------- /doc/source/networks/strand/strand_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/strand_net.png -------------------------------------------------------------------------------- /doc/source/networks/strand/strand_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/strand_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/strand/two_pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/two_pipes.png -------------------------------------------------------------------------------- /doc/source/networks/strand/two_pumps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/strand/two_pumps.png -------------------------------------------------------------------------------- /doc/source/networks/t_cross/t-cross_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/t_cross/t-cross_1.png -------------------------------------------------------------------------------- /doc/source/networks/t_cross/t-cross_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/t_cross/t-cross_2.png -------------------------------------------------------------------------------- /doc/source/networks/t_cross/t_cross_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/t_cross/t_cross_networks.rst -------------------------------------------------------------------------------- /doc/source/networks/t_cross/valves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/t_cross/valves.png -------------------------------------------------------------------------------- /doc/source/networks/two_eg/H-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/two_eg/H-net.png -------------------------------------------------------------------------------- /doc/source/networks/two_eg/two_external_grids.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/two_eg/two_external_grids.rst -------------------------------------------------------------------------------- /doc/source/networks/two_eg/two_pipes_two_ext_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks/two_eg/two_pipes_two_ext_grid.png -------------------------------------------------------------------------------- /doc/source/networks_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/networks_legend.png -------------------------------------------------------------------------------- /doc/source/pandapipes_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pandapipes_logo.png -------------------------------------------------------------------------------- /doc/source/pics/e2n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pics/e2n.png -------------------------------------------------------------------------------- /doc/source/pics/iee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pics/iee.png -------------------------------------------------------------------------------- /doc/source/pics/pp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pics/pp.svg -------------------------------------------------------------------------------- /doc/source/pipeflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/calculation_modes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/calculation_modes.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/compressible_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/compressible_par.csv -------------------------------------------------------------------------------- /doc/source/pipeflow/incompressible_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/incompressible_par.csv -------------------------------------------------------------------------------- /doc/source/pipeflow/internal_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/internal_functions.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/modes.png -------------------------------------------------------------------------------- /doc/source/pipeflow/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/options.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/pipeflow_procedure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/pipeflow_procedure.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/run.rst -------------------------------------------------------------------------------- /doc/source/pipeflow/temperature_overview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/temperature_overview.csv -------------------------------------------------------------------------------- /doc/source/pipeflow/temperature_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/pipeflow/temperature_par.csv -------------------------------------------------------------------------------- /doc/source/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/plotting.rst -------------------------------------------------------------------------------- /doc/source/plotting/collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/plotting/collections.rst -------------------------------------------------------------------------------- /doc/source/plotting/simple_plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/plotting/simple_plot.rst -------------------------------------------------------------------------------- /doc/source/plotting/simple_plot_par.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/plotting/simple_plot_par.csv -------------------------------------------------------------------------------- /doc/source/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/references.bib -------------------------------------------------------------------------------- /doc/source/save_load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/save_load.rst -------------------------------------------------------------------------------- /doc/source/standard_types/basic_standard_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/basic_standard_types.rst -------------------------------------------------------------------------------- /doc/source/standard_types/managing_standard_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/managing_standard_types.rst -------------------------------------------------------------------------------- /doc/source/standard_types/pipe_std_type_parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/pipe_std_type_parameters.csv -------------------------------------------------------------------------------- /doc/source/standard_types/pipe_std_types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/pipe_std_types.csv -------------------------------------------------------------------------------- /doc/source/standard_types/pump_std_type.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/pump_std_type.csv -------------------------------------------------------------------------------- /doc/source/standard_types/std_types_in_pandapipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/standard_types/std_types_in_pandapipes.rst -------------------------------------------------------------------------------- /doc/source/std_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/std_types.rst -------------------------------------------------------------------------------- /doc/source/timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/timeseries.rst -------------------------------------------------------------------------------- /doc/source/timeseries/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/timeseries/functions.rst -------------------------------------------------------------------------------- /doc/source/timeseries/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/timeseries/overview.rst -------------------------------------------------------------------------------- /doc/source/timeseries/timeseries_module_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/timeseries/timeseries_module_overview.png -------------------------------------------------------------------------------- /doc/source/toolbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/doc/source/toolbox.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/setup.py -------------------------------------------------------------------------------- /src/pandapipes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/base_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/base_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/branch_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/branch_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/branch_w_internals_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/branch_w_internals_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/branch_wo_internals_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/branch_wo_internals_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/circulation_pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/circulation_pump.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/const_flow_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/const_flow_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/node_element_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/node_element_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/abstract_models/node_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/abstract_models/node_models.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/circulation_pump_mass_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/circulation_pump_mass_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/circulation_pump_pressure_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/circulation_pump_pressure_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/component_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/component_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/compressor_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/compressor_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/ext_grid_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/ext_grid_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/flow_control_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/flow_control_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/heat_consumer_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/heat_consumer_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/heat_exchanger_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/heat_exchanger_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/junction_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/junction_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/mass_storage_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/mass_storage_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/pipe_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/pipe_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/pressure_control_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/pressure_control_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/pump_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/pump_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/sink_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/sink_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/source_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/source_component.py -------------------------------------------------------------------------------- /src/pandapipes/component_models/valve_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/component_models/valve_component.py -------------------------------------------------------------------------------- /src/pandapipes/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/constants.py -------------------------------------------------------------------------------- /src/pandapipes/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/control/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/control/run_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/control/run_control.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/data_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/data_cleaning.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/preparing_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/preparing_steps.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/stanet2pandapipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/stanet2pandapipes.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/table_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/table_creation.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/valve_pipe_component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/valve_pipe_component/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/valve_pipe_component/create_valve_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/valve_pipe_component/create_valve_pipe.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_component.py -------------------------------------------------------------------------------- /src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/converter/stanet/valve_pipe_component/valve_pipe_plotting.py -------------------------------------------------------------------------------- /src/pandapipes/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/create.py -------------------------------------------------------------------------------- /src/pandapipes/deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/deprecations.py -------------------------------------------------------------------------------- /src/pandapipes/idx_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/idx_branch.py -------------------------------------------------------------------------------- /src/pandapipes/idx_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/idx_node.py -------------------------------------------------------------------------------- /src/pandapipes/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/io/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/io/convert_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/io/convert_format.py -------------------------------------------------------------------------------- /src/pandapipes/io/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/io/file_io.py -------------------------------------------------------------------------------- /src/pandapipes/io/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/io/io_utils.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/control/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/control/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/control/controller/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/control/controller/multinet_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/control/controller/multinet_control.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/control/run_control_multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/control/run_control_multinet.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/create_multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/create_multinet.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/multinet.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/timeseries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/timeseries/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/multinet/timeseries/run_time_series_multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/multinet/timeseries/run_time_series_multinet.py -------------------------------------------------------------------------------- /src/pandapipes/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/gas_net_schutterwald_1bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/gas_net_schutterwald_1bar.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta_2sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/delta_2sinks.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/heights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/heights.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_pipe.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/one_source.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/section_variation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/section_variation.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/t_cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/t_cross.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/two_pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/heat_transfer_cases/two_pipes.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/mixed_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/mixed_net.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/versatility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/combined_networks/versatility.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/delta.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/heights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/heights.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/pumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/pumps.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/two_valves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/meshed_networks/two_valves.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_1.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_2.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/one_pipe/pipe_3.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/cross_3ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/cross_3ext.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/strand_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/strand_net.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pipes.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/strand_net/two_pumps.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/t_cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/t_cross.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/valves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/t_cross/valves.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/two_pressure_junctions/two_pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_colebrook/two_pressure_junctions/two_pipes.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/mixed_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/mixed_net.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/versatility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/combined_networks/versatility.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/delta.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/heights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/heights.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/one_valve_stanet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/one_valve_stanet.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/pumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/pumps.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/two_valves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/meshed_networks/two_valves.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_1.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_2.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/one_pipe/pipe_3.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/cross_3ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/cross_3ext.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation1.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/strand_net_stanet_variation2.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pipes.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/strand_net/two_pumps.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/t_cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/t_cross.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/valves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/t_cross/valves.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/one_pipe_stanet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/one_pipe_stanet.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/two_pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/openmodelica_test_networks/water_cases_swamee-jain/two_pressure_junctions/two_pipes.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural1--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural2--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-rural3--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb4--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-semiurb5--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-no_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-no_sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/simbench_test_networks/1-LV-urban6--0-sw.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/parallel_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/versatility_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/combined_networks/versatility_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/delta_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/delta_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/pumps_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/pumps_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/square_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/meshed_networks/two_valves_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_1_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/one_pipe/pipe_2_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/pump_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/pump_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/strand_net/two_pipes_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross1_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/t_cross/t_cross2_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/gas_cases/two_pressure_junctions/H_net_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/district_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/combined_networks/versatility_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/delta_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/delta_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/pumps_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/pumps_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/meshed_networks/two_valves_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_1_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_2_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/one_pipe/pipe_3_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/cross_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/cross_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/pump_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/pump_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/strand_net_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/strand_net/two_pipes_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/t_cross/t_cross_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_N.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_PC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/stanet_test_networks/water_cases/two_pressure_junctions/two_pipes_PC.json -------------------------------------------------------------------------------- /src/pandapipes/networks/network_files/sw_heat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/network_files/sw_heat.json -------------------------------------------------------------------------------- /src/pandapipes/networks/nw_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/nw_aux.py -------------------------------------------------------------------------------- /src/pandapipes/networks/simple_gas_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/simple_gas_networks.py -------------------------------------------------------------------------------- /src/pandapipes/networks/simple_heat_transfer_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/simple_heat_transfer_networks.py -------------------------------------------------------------------------------- /src/pandapipes/networks/simple_water_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/networks/simple_water_networks.py -------------------------------------------------------------------------------- /src/pandapipes/pandapipes_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pandapipes_net.py -------------------------------------------------------------------------------- /src/pandapipes/pf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/pf/build_system_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/build_system_matrix.py -------------------------------------------------------------------------------- /src/pandapipes/pf/derivative_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/derivative_calculation.py -------------------------------------------------------------------------------- /src/pandapipes/pf/derivative_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/derivative_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/pf/derivative_toolbox_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/derivative_toolbox_numba.py -------------------------------------------------------------------------------- /src/pandapipes/pf/internals_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/internals_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/pf/pipeflow_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/pipeflow_setup.py -------------------------------------------------------------------------------- /src/pandapipes/pf/result_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pf/result_extraction.py -------------------------------------------------------------------------------- /src/pandapipes/pipeflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/pipeflow.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/collections.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/generic_geodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/generic_geodata.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/geo.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/patch_makers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/patch_makers.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/pipeflow_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/pipeflow_results.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/plotting_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/plotting_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/plotting/simple_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/plotting/simple_plot.py -------------------------------------------------------------------------------- /src/pandapipes/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/properties/air/compressibility.txt: -------------------------------------------------------------------------------- 1 | -0.001 1 -------------------------------------------------------------------------------- /src/pandapipes/properties/air/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/air/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/air/der_compressibility.txt: -------------------------------------------------------------------------------- 1 | -0.001 -------------------------------------------------------------------------------- /src/pandapipes/properties/air/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/air/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/air/molar_mass.txt: -------------------------------------------------------------------------------- 1 | 28.96 -------------------------------------------------------------------------------- /src/pandapipes/properties/air/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/air/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/der_compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/der_compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/gas_composition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/gas_composition.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/higher_heating_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/higher_heating_value.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/molar_mass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/molar_mass.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_pure/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_pure/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/der_compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/der_compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/gas_composition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/gas_composition.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/higher_heating_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/higher_heating_value.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/molar_mass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/molar_mass.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/biomethane_treated/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/biomethane_treated/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/carbondioxide/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/carbondioxide/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/carbondioxide/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/carbondioxide/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/carbondioxide/molar_mass.txt: -------------------------------------------------------------------------------- 1 | 44.01 -------------------------------------------------------------------------------- /src/pandapipes/properties/carbondioxide/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/carbondioxide/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/ethane/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/ethane/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/ethane/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/ethane/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/ethane/molar_mass.txt: -------------------------------------------------------------------------------- 1 | 30.07 -------------------------------------------------------------------------------- /src/pandapipes/properties/ethane/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/ethane/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/fluids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/fluids.py -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/compressibility.txt: -------------------------------------------------------------------------------- 1 | # slope in 1/bar, offset for linear property 2 | -0.0022 1 -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hgas/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/der_compressibility.txt: -------------------------------------------------------------------------------- 1 | # derivative (slope) of compressibility 2 | -0.0022 -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hgas/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/higher_heating_value.txt: -------------------------------------------------------------------------------- 1 | # higher heating value in kWh/kg (at nominal conditions) 2 | 14.62197 -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/lower_heating_value.txt: -------------------------------------------------------------------------------- 1 | # lower heating value in kWh/kg (at nominal conditions) 2 | 13.20179 -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # kg/kmol 2 | 16.604497 -------------------------------------------------------------------------------- /src/pandapipes/properties/hgas/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hgas/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/der_compressibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/der_compressibility.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/higher_heating_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/higher_heating_value.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/lower_heating_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/lower_heating_value.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # kg/kmol H2 2 | 2.01588 3 | -------------------------------------------------------------------------------- /src/pandapipes/properties/hydrogen/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/hydrogen/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/compressibility.txt: -------------------------------------------------------------------------------- 1 | # slope in 1/bar, offset for linear property 2 | -0.0022 1 -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/lgas/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/der_compressibility.txt: -------------------------------------------------------------------------------- 1 | # derivative (slope) of compressibility 2 | -0.0022 -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/lgas/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/higher_heating_value.txt: -------------------------------------------------------------------------------- 1 | # higher heating value in kWh/kg (at nominal conditions) 2 | 11.79011 -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/lower_heating_value.txt: -------------------------------------------------------------------------------- 1 | # lower heating value in kWh/kg (at nominal conditions) 2 | 10.63812 -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # kg/kmol 2 | 18.1138902 3 | -------------------------------------------------------------------------------- /src/pandapipes/properties/lgas/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/lgas/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/compressibility.txt: -------------------------------------------------------------------------------- 1 | # slope in 1/bar, offset for linear property 2 | -0.0022 1 -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/methane/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/der_compressibility.txt: -------------------------------------------------------------------------------- 1 | # derivative (slope) of compressibility 2 | -0.0022 -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/methane/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/higher_heating_value.txt: -------------------------------------------------------------------------------- 1 | # higher heating value in kWh/kg (at nominal conditions) 2 | 15.42083 -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/lower_heating_value.txt: -------------------------------------------------------------------------------- 1 | # lower heating value in kWh/kg (at nominal conditions) 2 | 13.89667 -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # kg/kmol 2 | 16.04 -------------------------------------------------------------------------------- /src/pandapipes/properties/methane/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/methane/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/nitrogen/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/nitrogen/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/nitrogen/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/nitrogen/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/nitrogen/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # molar mass N2 in kg/kmol 2 | 28.0134 3 | -------------------------------------------------------------------------------- /src/pandapipes/properties/nitrogen/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/nitrogen/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/oxygen/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/oxygen/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/oxygen/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/oxygen/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/oxygen/molar_mass.txt: -------------------------------------------------------------------------------- 1 | # molar mass of O2 in kg/kmol 2 | 31.9988 3 | -------------------------------------------------------------------------------- /src/pandapipes/properties/oxygen/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/oxygen/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/properties_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/properties_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/properties/water/compressibility.txt: -------------------------------------------------------------------------------- 1 | 0 1 -------------------------------------------------------------------------------- /src/pandapipes/properties/water/density.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/water/density.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/water/der_compressibility.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/pandapipes/properties/water/heat_capacity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/water/heat_capacity.txt -------------------------------------------------------------------------------- /src/pandapipes/properties/water/molar_mass.txt: -------------------------------------------------------------------------------- 1 | 18.015 -------------------------------------------------------------------------------- /src/pandapipes/properties/water/viscosity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/properties/water/viscosity.txt -------------------------------------------------------------------------------- /src/pandapipes/std_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/std_types/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/std_types/library/Pipe.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/std_types/library/Pipe.csv -------------------------------------------------------------------------------- /src/pandapipes/std_types/library/Pump/P1.csv: -------------------------------------------------------------------------------- 1 | Vdot_m3ph;p_bar;degree 2 | 0;6.1;2 3 | 19;5.8; 4 | 83;4; 5 | -------------------------------------------------------------------------------- /src/pandapipes/std_types/library/Pump/P2.csv: -------------------------------------------------------------------------------- 1 | Vdot_m3ph;p_bar;degree 2 | 0;10;2 3 | 40;8.4; 4 | 60;7; 5 | 80;4.5; 6 | 90;3; 7 | -------------------------------------------------------------------------------- /src/pandapipes/std_types/library/Pump/P3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/std_types/library/Pump/P3.csv -------------------------------------------------------------------------------- /src/pandapipes/std_types/std_type_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/std_types/std_type_class.py -------------------------------------------------------------------------------- /src/pandapipes/std_types/std_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/std_types/std_types.py -------------------------------------------------------------------------------- /src/pandapipes/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.1.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.1.1.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.1.2.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.10.0_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.10.0_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.10.0_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.10.0_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.11.0_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.11.0_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.11.0_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.11.0_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.12.0_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.12.0_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.12.0_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.12.0_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.2.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.4.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.5.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.6.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.6.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.7.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.7.0.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.0_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.0_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.0_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.0_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.1_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.1_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.1_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.1_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.2_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.2_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.2_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.2_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.3_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.3_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.3_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.3_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.4_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.4_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.4_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.4_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.5_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.5_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.8.5_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.8.5_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.9.0_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.9.0_gas.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/old_versions/example_0.9.0_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/old_versions/example_0.9.0_water.json -------------------------------------------------------------------------------- /src/pandapipes/test/api/release_cycle/release_control_test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/release_cycle/release_control_test_network.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/release_cycle/release_control_test_sink_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/release_cycle/release_control_test_sink_profiles.csv -------------------------------------------------------------------------------- /src/pandapipes/test/api/release_cycle/release_control_test_source_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/release_cycle/release_control_test_source_profiles.csv -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_aux_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_aux_function.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_circ_pump_mass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_circ_pump_mass.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_circ_pump_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_circ_pump_pressure.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_compressor.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_ext_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_ext_grid.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_flow_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_flow_control.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_heat_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_heat_consumer.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_heat_exchanger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_heat_exchanger.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_mass_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_mass_storage.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_pipe.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_pressure_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_pressure_control.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_pump.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_components/test_valve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_components/test_valve.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_convert_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_convert_format.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_create.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_network_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_network_tables.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_special_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_special_networks.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_std_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_std_types.py -------------------------------------------------------------------------------- /src/pandapipes/test/api/test_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/api/test_time_series.py -------------------------------------------------------------------------------- /src/pandapipes/test/converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pandapipes/test/converter/converter_test_files/Exampelonia_mini.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini.csv -------------------------------------------------------------------------------- /src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_2valvepipe.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_2valvepipe.csv -------------------------------------------------------------------------------- /src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_closed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_closed.csv -------------------------------------------------------------------------------- /src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_open.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/converter/converter_test_files/Exampelonia_mini_with_valve_2sliders_open.csv -------------------------------------------------------------------------------- /src/pandapipes/test/converter/test_stanet_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/converter/test_stanet_converter.py -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_2zu_2ab_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_2zu_2ab_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_masche_1load_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_masche_1load_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_masche_1load_direction_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_masche_1load_direction_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_one_pipe_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_one_pipe_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_tee_2ab_1zu_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_tee_2ab_1zu_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/Temperature_tee_2zu_1ab_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/Temperature_tee_2zu_1ab_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/ext_grid_p.csv: -------------------------------------------------------------------------------- 1 | p 2 | 4.994325 3 | -------------------------------------------------------------------------------- /src/pandapipes/test/data/gas_sections_an.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/gas_sections_an.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/heat_exchanger_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/heat_exchanger_test.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/hydraulics.csv: -------------------------------------------------------------------------------- 1 | pv 2 | 0.226422 3 | 5 4 | 4.46708 5 | -------------------------------------------------------------------------------- /src/pandapipes/test/data/pressure_control_test_analytical.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/pressure_control_test_analytical.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_circ_pump_mass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_circ_pump_mass.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_circ_pump_pressure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_circ_pump_pressure.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_pressure_control.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_pressure_control.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_pump.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_pump.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_ext_grid/mdot_kg_per_s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_ext_grid/mdot_kg_per_s.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_junction/p_bar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_junction/p_bar.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_pipe/lambda.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_pipe/lambda.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_pipe/reynolds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_pipe/reynolds.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_pipe/v_mean_m_per_s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_pipe/v_mean_m_per_s.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_sink/mdot_kg_per_s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_sink/mdot_kg_per_s.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_results/res_source/mdot_kg_per_s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_results/res_source/mdot_kg_per_s.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_sink_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_sink_profiles.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_time_series_source_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_time_series_source_profiles.csv -------------------------------------------------------------------------------- /src/pandapipes/test/data/test_valve.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/data/test_valve.csv -------------------------------------------------------------------------------- /src/pandapipes/test/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/io/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/io/test_file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/io/test_file_io.py -------------------------------------------------------------------------------- /src/pandapipes/test/multinet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/multinet/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/multinet/test_control_multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/multinet/test_control_multinet.py -------------------------------------------------------------------------------- /src/pandapipes/test/multinet/test_time_series_multinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/multinet/test_time_series_multinet.py -------------------------------------------------------------------------------- /src/pandapipes/test/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/networks/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/networks/test_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/networks/test_networks.py -------------------------------------------------------------------------------- /src/pandapipes/test/openmodelica_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/openmodelica_comparison/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/openmodelica_comparison/pipeflow_openmodelica_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/openmodelica_comparison/pipeflow_openmodelica_comparison.py -------------------------------------------------------------------------------- /src/pandapipes/test/openmodelica_comparison/test_heat_transfer_openmodelica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/openmodelica_comparison/test_heat_transfer_openmodelica.py -------------------------------------------------------------------------------- /src/pandapipes/test/openmodelica_comparison/test_water_openmodelica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/openmodelica_comparison/test_water_openmodelica.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_inservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_inservice.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_non_convergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_non_convergence.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_options.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_pipeflow_analytic_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_pipeflow_analytic_comparison.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_pipeflow_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_pipeflow_modes.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_time_series.py -------------------------------------------------------------------------------- /src/pandapipes/test/pipeflow_internals/test_update_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pipeflow_internals/test_update_matrix.py -------------------------------------------------------------------------------- /src/pandapipes/test/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/plotting/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/plotting/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/plotting/test_collections.py -------------------------------------------------------------------------------- /src/pandapipes/test/plotting/test_generic_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/plotting/test_generic_coordinates.py -------------------------------------------------------------------------------- /src/pandapipes/test/plotting/test_pipeflow_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/plotting/test_pipeflow_results.py -------------------------------------------------------------------------------- /src/pandapipes/test/plotting/test_simple_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/plotting/test_simple_collections.py -------------------------------------------------------------------------------- /src/pandapipes/test/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/properties/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/properties/test_fluid_specials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/properties/test_fluid_specials.py -------------------------------------------------------------------------------- /src/pandapipes/test/properties/test_properties_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/properties/test_properties_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/test/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/pytest.ini -------------------------------------------------------------------------------- /src/pandapipes/test/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/run_tests.py -------------------------------------------------------------------------------- /src/pandapipes/test/stanet_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/stanet_comparison/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/stanet_comparison/pipeflow_stanet_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/stanet_comparison/pipeflow_stanet_comparison.py -------------------------------------------------------------------------------- /src/pandapipes/test/stanet_comparison/test_gas_stanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/stanet_comparison/test_gas_stanet.py -------------------------------------------------------------------------------- /src/pandapipes/test/stanet_comparison/test_water_stanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/stanet_comparison/test_water_stanet.py -------------------------------------------------------------------------------- /src/pandapipes/test/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/test_imports.py -------------------------------------------------------------------------------- /src/pandapipes/test/test_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/test_toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/test/topology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/topology/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/test/topology/test_graph_searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/topology/test_graph_searches.py -------------------------------------------------------------------------------- /src/pandapipes/test/topology/test_nxgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/test/topology/test_nxgraph.py -------------------------------------------------------------------------------- /src/pandapipes/timeseries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/timeseries/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/timeseries/run_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/timeseries/run_time_series.py -------------------------------------------------------------------------------- /src/pandapipes/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/toolbox.py -------------------------------------------------------------------------------- /src/pandapipes/topology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/topology/__init__.py -------------------------------------------------------------------------------- /src/pandapipes/topology/create_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/topology/create_graph.py -------------------------------------------------------------------------------- /src/pandapipes/topology/graph_searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/topology/graph_searches.py -------------------------------------------------------------------------------- /src/pandapipes/topology/topology_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/src/pandapipes/topology/topology_toolbox.py -------------------------------------------------------------------------------- /tutorials/building_a_storage_controller.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/building_a_storage_controller.ipynb -------------------------------------------------------------------------------- /tutorials/coupled_nets_h2_p2g2p.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/coupled_nets_h2_p2g2p.ipynb -------------------------------------------------------------------------------- /tutorials/creating_a_simple_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/creating_a_simple_network.ipynb -------------------------------------------------------------------------------- /tutorials/district_heating/circular_flow_in_a_district_heating_grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/district_heating/circular_flow_in_a_district_heating_grid.ipynb -------------------------------------------------------------------------------- /tutorials/district_heating/multiple_pumps_flow_in_a_circular_district_heating_grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/district_heating/multiple_pumps_flow_in_a_circular_district_heating_grid.ipynb -------------------------------------------------------------------------------- /tutorials/district_heating/time_series_in_a_circular_district_heating_grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/district_heating/time_series_in_a_circular_district_heating_grid.ipynb -------------------------------------------------------------------------------- /tutorials/ein_einfaches_netz_erstellen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/ein_einfaches_netz_erstellen.ipynb -------------------------------------------------------------------------------- /tutorials/files/simple_time_series_example_sink_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/files/simple_time_series_example_sink_profiles.csv -------------------------------------------------------------------------------- /tutorials/files/simple_time_series_example_source_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/files/simple_time_series_example_source_profiles.csv -------------------------------------------------------------------------------- /tutorials/height_difference_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/height_difference_example.ipynb -------------------------------------------------------------------------------- /tutorials/höhendifferenzen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/höhendifferenzen.ipynb -------------------------------------------------------------------------------- /tutorials/minimal_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/minimal_example.ipynb -------------------------------------------------------------------------------- /tutorials/multienergienetze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/multienergienetze.ipynb -------------------------------------------------------------------------------- /tutorials/output_writer_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/output_writer_tutorial.ipynb -------------------------------------------------------------------------------- /tutorials/pics/district_heating/multiple_pumps_district_heating_net_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/multiple_pumps_district_heating_net_raw.png -------------------------------------------------------------------------------- /tutorials/pics/district_heating/multiple_pumps_district_heating_net_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/multiple_pumps_district_heating_net_text.png -------------------------------------------------------------------------------- /tutorials/pics/district_heating/simple_district_heating_net_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/simple_district_heating_net_raw.png -------------------------------------------------------------------------------- /tutorials/pics/district_heating/simple_district_heating_net_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/simple_district_heating_net_text.png -------------------------------------------------------------------------------- /tutorials/pics/district_heating/time_series_district_heating_net_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/time_series_district_heating_net_raw.png -------------------------------------------------------------------------------- /tutorials/pics/district_heating/time_series_district_heating_net_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/district_heating/time_series_district_heating_net_text.png -------------------------------------------------------------------------------- /tutorials/pics/heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/heat.png -------------------------------------------------------------------------------- /tutorials/pics/heat_network_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/heat_network_example.png -------------------------------------------------------------------------------- /tutorials/pics/heat_network_tutorial_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/heat_network_tutorial_example.png -------------------------------------------------------------------------------- /tutorials/pics/heat_network_tutorial_pipe_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/heat_network_tutorial_pipe_results.png -------------------------------------------------------------------------------- /tutorials/pics/heat_network_tutorial_pipe_sections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/heat_network_tutorial_pipe_sections.png -------------------------------------------------------------------------------- /tutorials/pics/minimal_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/minimal_example.png -------------------------------------------------------------------------------- /tutorials/pics/minimal_example_closed_valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/minimal_example_closed_valve.png -------------------------------------------------------------------------------- /tutorials/pics/rng_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/rng_height.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-1.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-ext_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-ext_grid.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-junc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-junc.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-pipes.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-sink.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-source.png -------------------------------------------------------------------------------- /tutorials/pics/simple_network-valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/simple_network-valve.png -------------------------------------------------------------------------------- /tutorials/pics/time_series_simple_example_csv_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/time_series_simple_example_csv_files.png -------------------------------------------------------------------------------- /tutorials/pics/time_series_simple_example_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/time_series_simple_example_network.png -------------------------------------------------------------------------------- /tutorials/pics/time_series_simple_example_plot_mass_flow_ext_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/time_series_simple_example_plot_mass_flow_ext_grid.png -------------------------------------------------------------------------------- /tutorials/pics/time_series_simple_example_plot_pressures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/time_series_simple_example_plot_pressures.png -------------------------------------------------------------------------------- /tutorials/pics/time_series_simple_example_plot_velocities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/pics/time_series_simple_example_plot_velocities.png -------------------------------------------------------------------------------- /tutorials/simple_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/simple_plot.ipynb -------------------------------------------------------------------------------- /tutorials/simple_time_series_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/simple_time_series_example.ipynb -------------------------------------------------------------------------------- /tutorials/standard_libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/standard_libraries.ipynb -------------------------------------------------------------------------------- /tutorials/temperature_calculation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials/temperature_calculation.ipynb -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/input/Pipe_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/input/Pipe_data.csv -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/invest_data/consumers/bus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/invest_data/consumers/bus.csv -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/invest_data/consumers/demand.csv: -------------------------------------------------------------------------------- 1 | label_2,active,nominal_value 2 | heat,1,1 3 | -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/invest_data/network/pipes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/invest_data/network/pipes.csv -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/invest_data/producers/bus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/invest_data/producers/bus.csv -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/invest_data/producers/source.csv: -------------------------------------------------------------------------------- 1 | label_2,active 2 | heat,1 3 | -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/tutorial_dhnx_pandapipes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/tutorial_dhnx_pandapipes.ipynb -------------------------------------------------------------------------------- /tutorials_extended/tutorial_dhnx_pandapipes/tutorial_dhnx_pandapipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2nIEE/pandapipes/HEAD/tutorials_extended/tutorial_dhnx_pandapipes/tutorial_dhnx_pandapipes.py --------------------------------------------------------------------------------