epyt-flow 0.7.0__py3-none-any.whl → 0.7.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- epyt_flow/VERSION +1 -1
- epyt_flow/data/benchmarks/leakdb.py +1 -0
- epyt_flow/simulation/scada/scada_data.py +714 -15
- epyt_flow/simulation/scada/scada_data_export.py +5 -1
- epyt_flow/simulation/scenario_simulator.py +212 -92
- epyt_flow/simulation/sensor_config.py +48 -1
- epyt_flow/uncertainty/model_uncertainty.py +11 -5
- {epyt_flow-0.7.0.dist-info → epyt_flow-0.7.1.dist-info}/METADATA +2 -2
- {epyt_flow-0.7.0.dist-info → epyt_flow-0.7.1.dist-info}/RECORD +12 -12
- {epyt_flow-0.7.0.dist-info → epyt_flow-0.7.1.dist-info}/LICENSE +0 -0
- {epyt_flow-0.7.0.dist-info → epyt_flow-0.7.1.dist-info}/WHEEL +0 -0
- {epyt_flow-0.7.0.dist-info → epyt_flow-0.7.1.dist-info}/top_level.txt +0 -0
epyt_flow/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.1
|
|
@@ -509,6 +509,7 @@ def load_scenarios(scenarios_id: list[int], use_net1: bool = True,
|
|
|
509
509
|
if not os.path.exists(f_inp_in):
|
|
510
510
|
with ScenarioSimulator(f_inp_in=network_config.f_inp_in) as wdn:
|
|
511
511
|
wdn.set_general_parameters(**general_params)
|
|
512
|
+
wdn.epanet_api.setTimePatternStep(hydraulic_time_step)
|
|
512
513
|
|
|
513
514
|
wdn.epanet_api.deletePatternsAll()
|
|
514
515
|
|