epyt-flow 0.13.1__py3-none-any.whl → 0.14.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/EPANET/EPANET/SRC_engines/AUTHORS +40 -8
- epyt_flow/EPANET/EPANET/SRC_engines/LICENSE +3 -3
- epyt_flow/EPANET/EPANET/SRC_engines/enumstxt.h +24 -7
- epyt_flow/EPANET/EPANET/SRC_engines/epanet.c +726 -374
- epyt_flow/EPANET/EPANET/SRC_engines/epanet2.c +128 -32
- epyt_flow/EPANET/EPANET/SRC_engines/errors.dat +7 -1
- epyt_flow/EPANET/EPANET/SRC_engines/flowbalance.c +186 -0
- epyt_flow/EPANET/EPANET/SRC_engines/funcs.h +40 -14
- epyt_flow/EPANET/EPANET/SRC_engines/hash.c +177 -177
- epyt_flow/EPANET/EPANET/SRC_engines/hash.h +28 -28
- epyt_flow/EPANET/EPANET/SRC_engines/hydcoeffs.c +192 -40
- epyt_flow/EPANET/EPANET/SRC_engines/hydraul.c +101 -46
- epyt_flow/EPANET/EPANET/SRC_engines/hydsolver.c +85 -24
- epyt_flow/EPANET/EPANET/SRC_engines/hydstatus.c +29 -63
- epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2.h +70 -37
- epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2_2.h +408 -234
- epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2_enums.h +87 -37
- epyt_flow/EPANET/EPANET/SRC_engines/inpfile.c +153 -79
- epyt_flow/EPANET/EPANET/SRC_engines/input1.c +59 -94
- epyt_flow/EPANET/EPANET/SRC_engines/input2.c +73 -202
- epyt_flow/EPANET/EPANET/SRC_engines/input3.c +446 -351
- epyt_flow/EPANET/EPANET/SRC_engines/leakage.c +527 -0
- epyt_flow/EPANET/EPANET/SRC_engines/mempool.c +8 -4
- epyt_flow/EPANET/EPANET/SRC_engines/mempool.h +23 -23
- epyt_flow/EPANET/EPANET/SRC_engines/output.c +5 -4
- epyt_flow/EPANET/EPANET/SRC_engines/project.c +407 -75
- epyt_flow/EPANET/EPANET/SRC_engines/quality.c +12 -2
- epyt_flow/EPANET/EPANET/SRC_engines/qualreact.c +70 -13
- epyt_flow/EPANET/EPANET/SRC_engines/qualroute.c +7 -5
- epyt_flow/EPANET/EPANET/SRC_engines/report.c +88 -20
- epyt_flow/EPANET/EPANET/SRC_engines/rules.c +144 -6
- epyt_flow/EPANET/EPANET/SRC_engines/smatrix.c +19 -19
- epyt_flow/EPANET/EPANET/SRC_engines/text.h +16 -5
- epyt_flow/EPANET/EPANET/SRC_engines/types.h +73 -19
- epyt_flow/EPANET/EPANET/SRC_engines/util/cstr_helper.c +59 -0
- epyt_flow/EPANET/EPANET/SRC_engines/util/cstr_helper.h +38 -0
- epyt_flow/EPANET/EPANET/SRC_engines/util/errormanager.c +92 -0
- epyt_flow/EPANET/EPANET/SRC_engines/util/errormanager.h +39 -0
- epyt_flow/EPANET/EPANET/SRC_engines/util/filemanager.c +212 -0
- epyt_flow/EPANET/EPANET/SRC_engines/util/filemanager.h +81 -0
- epyt_flow/EPANET/EPANET/SRC_engines/validate.c +408 -0
- epyt_flow/EPANET/compile_linux.sh +1 -1
- epyt_flow/EPANET/compile_macos.sh +2 -2
- epyt_flow/VERSION +1 -1
- epyt_flow/__init__.py +1 -1
- epyt_flow/gym/scenario_control_env.py +26 -3
- epyt_flow/simulation/backend/my_epyt.py +58 -13
- epyt_flow/simulation/events/quality_events.py +6 -6
- epyt_flow/simulation/events/sensor_faults.py +24 -24
- epyt_flow/simulation/events/system_event.py +3 -3
- epyt_flow/simulation/scada/scada_data.py +10 -14
- epyt_flow/simulation/scenario_simulator.py +100 -20
- epyt_flow/topology.py +8 -1
- epyt_flow/uncertainty/model_uncertainty.py +292 -150
- epyt_flow/uncertainty/uncertainties.py +2 -2
- {epyt_flow-0.13.1.dist-info → epyt_flow-0.14.1.dist-info}/METADATA +4 -4
- {epyt_flow-0.13.1.dist-info → epyt_flow-0.14.1.dist-info}/RECORD +60 -54
- {epyt_flow-0.13.1.dist-info → epyt_flow-0.14.1.dist-info}/WHEEL +1 -1
- epyt_flow/EPANET/EPANET/SRC_engines/Readme_SRC_Engines.txt +0 -18
- epyt_flow/EPANET/EPANET/SRC_engines/epanet2.def +0 -131
- epyt_flow/EPANET/EPANET/SRC_engines/main.c +0 -93
- {epyt_flow-0.13.1.dist-info → epyt_flow-0.14.1.dist-info}/licenses/LICENSE +0 -0
- {epyt_flow-0.13.1.dist-info → epyt_flow-0.14.1.dist-info}/top_level.txt +0 -0
|
@@ -1,28 +1,60 @@
|
|
|
1
|
-
# Authors ordered alphabetically
|
|
1
|
+
# Authors ordered alphabetically.
|
|
2
2
|
|
|
3
3
|
Authors with Contributions in the Public Domain:
|
|
4
|
-
|
|
5
4
|
Lewis Rossman <LRossman@cinci.rr.com>
|
|
6
5
|
Michael Tryby <tryby.michael@epa.gov>
|
|
7
6
|
|
|
7
|
+
Version 2.0
|
|
8
|
+
Lewis Rossman <LRossman@cinci.rr.com>
|
|
9
|
+
|
|
8
10
|
Authors with Contributions Subject to Copyright (see LICENSE):
|
|
11
|
+
Except where noted.
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
Version 2.1
|
|
14
|
+
Jinduan Chen <jinduan.uc@gmail.com>
|
|
11
15
|
Maurizio Cingi <mrzcng2@gmail.com>
|
|
12
16
|
Demetrios Eliades <eldemet@gmail.com>
|
|
13
17
|
Will Furnass <will@thearete.co.uk>
|
|
14
|
-
Milad Ghiami <milad
|
|
18
|
+
Milad Ghiami <milad.ghiami67@gmail.com>
|
|
15
19
|
Sam Hatchett <samhatchett@gmail.com>
|
|
16
|
-
Abel Heinsbroek <mail@abelheinsbroek.nl>
|
|
17
20
|
Mike Kane <muke195@gmail.com>
|
|
18
21
|
Marios Kyriakou <mariosmsk@gmail.com>
|
|
19
|
-
Steffen
|
|
22
|
+
Steffen Macke <sdteffen@sdteffen.de>
|
|
20
23
|
Angela Marchi <angela.marchi@adelaide.edu.au>
|
|
21
24
|
Bryant McDonnell <bemcdonnell@gmail.com>
|
|
25
|
+
Lew Rossman <LRossman@cinci.rr.com>
|
|
22
26
|
Elad Salomons <selad@optiwater.com>
|
|
23
|
-
Feng Shang <
|
|
27
|
+
Feng Shang <fengshang72@gmail.com>
|
|
24
28
|
Yunier Soad <yunier.soad@gmail.com>
|
|
25
|
-
Markus Sunela <markus.sunela@fluidit.fi>
|
|
26
29
|
Tom Taxon <tntaxon@anl.gov>
|
|
30
|
+
Michael Tryby <tryby.michael@epa.gov> (Contributions in the Public Domain)
|
|
27
31
|
James Uber <jim@citilogics.com>
|
|
28
32
|
Hyoungmin Woo <hyoungmin.woo@gmail.com>
|
|
33
|
+
|
|
34
|
+
Version 2.2
|
|
35
|
+
Demetrios Eliades <eldemet@gmail.com>
|
|
36
|
+
Sam Hatchett <samhatchett@gmail.com>
|
|
37
|
+
Abel Heinsbroek <mail@abelheinsbroek.nl>
|
|
38
|
+
Marios Kyriakou <mariosmsk@gmail.com>
|
|
39
|
+
Lewis Rossman <LRossman@cinci.rr.com>
|
|
40
|
+
Elad Salomons <selad@optiwater.com>
|
|
41
|
+
Markus Sunela <markus.sunela@fluidit.fi>
|
|
42
|
+
Michael Tryby <tryby.michael@epa.gov> (Contributions in the Public Domain)
|
|
43
|
+
|
|
44
|
+
Version 2.3
|
|
45
|
+
Luke Butler <lukepbutler@gmail.com>
|
|
46
|
+
Demetrios Eliades <eldemet@gmail.com>
|
|
47
|
+
Sam Hatchett <samhatchett@gmail.com>
|
|
48
|
+
Abel Heinsbroek <mail@abelheinsbroek.nl>
|
|
49
|
+
Robert Janke <janke.robert@epa.gov>
|
|
50
|
+
Marios Kyriakou <mariosmsk@gmail.com>
|
|
51
|
+
Corey McNeish
|
|
52
|
+
0tkl <tkl.zhaoqing@gmail.com>
|
|
53
|
+
Lewis Rossman <LRossman@cinci.rr.com>
|
|
54
|
+
Elad Salomons <selad@optiwater.com>
|
|
55
|
+
Alex Sinske
|
|
56
|
+
Sahand Tashak
|
|
57
|
+
Yu Chun Tsao
|
|
58
|
+
James Uber <jim@citilogics.com>
|
|
59
|
+
Oscar Vegas Niño <ovegas141279@gmail.com>
|
|
60
|
+
Dennis Zanutto <dennis.zanutto@kwrwater.nl>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2019 (See AUTHORS)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -9,8 +9,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
9
9
|
copies of the Software, and to permit persons to whom the Software is
|
|
10
10
|
furnished to do so, subject to the following conditions:
|
|
11
11
|
|
|
12
|
-
The above copyright notice and this permission notice shall
|
|
13
|
-
copies or substantial portions of the Software.
|
|
12
|
+
The above copyright notice, list of authors, and this permission notice shall
|
|
13
|
+
be included in all copies or substantial portions of the Software.
|
|
14
14
|
|
|
15
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*****************************************************************************
|
|
3
3
|
Project: OWA EPANET
|
|
4
|
-
Version: 2.
|
|
4
|
+
Version: 2.3
|
|
5
5
|
Module: enumstxt.h
|
|
6
6
|
Description: text strings for enumerated data types
|
|
7
7
|
Authors: see AUTHORS
|
|
8
8
|
Copyright: see AUTHORS
|
|
9
9
|
License: see LICENSE
|
|
10
|
-
Last Updated:
|
|
10
|
+
Last Updated: 03/10/2025
|
|
11
11
|
******************************************************************************
|
|
12
12
|
*/
|
|
13
13
|
|
|
@@ -27,7 +27,8 @@ char *LinkTxt[] = {w_CV,
|
|
|
27
27
|
w_PBV,
|
|
28
28
|
w_FCV,
|
|
29
29
|
w_TCV,
|
|
30
|
-
w_GPV
|
|
30
|
+
w_GPV,
|
|
31
|
+
w_PCV};
|
|
31
32
|
|
|
32
33
|
char *StatTxt[] = {t_XHEAD,
|
|
33
34
|
t_TEMPCLOSED,
|
|
@@ -58,7 +59,8 @@ char *RptFlowUnitsTxt[] = {u_CFS,
|
|
|
58
59
|
u_LPM,
|
|
59
60
|
u_MLD,
|
|
60
61
|
u_CMH,
|
|
61
|
-
u_CMD
|
|
62
|
+
u_CMD,
|
|
63
|
+
u_CMS};
|
|
62
64
|
|
|
63
65
|
char *FlowUnitsTxt[] = {w_CFS,
|
|
64
66
|
w_GPM,
|
|
@@ -69,11 +71,14 @@ char *FlowUnitsTxt[] = {w_CFS,
|
|
|
69
71
|
w_LPM,
|
|
70
72
|
w_MLD,
|
|
71
73
|
w_CMH,
|
|
72
|
-
w_CMD
|
|
74
|
+
w_CMD,
|
|
75
|
+
w_CMS};
|
|
73
76
|
|
|
74
77
|
char *PressUnitsTxt[] = {w_PSI,
|
|
75
78
|
w_KPA,
|
|
76
|
-
w_METERS
|
|
79
|
+
w_METERS,
|
|
80
|
+
w_BAR,
|
|
81
|
+
w_FEET};
|
|
77
82
|
|
|
78
83
|
char *DemandModelTxt[] = { w_DDA,
|
|
79
84
|
w_PDA,
|
|
@@ -110,6 +115,18 @@ char *MixTxt[] = {w_MIXED,
|
|
|
110
115
|
char *RptFlagTxt[] = {w_NO,
|
|
111
116
|
w_YES,
|
|
112
117
|
w_FULL};
|
|
118
|
+
|
|
119
|
+
char *BackflowTxt[] = {w_NO,
|
|
120
|
+
w_YES,
|
|
121
|
+
NULL};
|
|
122
|
+
|
|
123
|
+
char *CurveTypeTxt[] = {c_VOLUME,
|
|
124
|
+
c_PUMP,
|
|
125
|
+
c_EFFIC,
|
|
126
|
+
c_HEADLOSS,
|
|
127
|
+
c_GENERIC,
|
|
128
|
+
c_VALVE,
|
|
129
|
+
NULL};
|
|
113
130
|
|
|
114
131
|
char *SectTxt[] = {s_TITLE, s_JUNCTIONS, s_RESERVOIRS,
|
|
115
132
|
s_TANKS, s_PIPES, s_PUMPS,
|
|
@@ -120,7 +137,7 @@ char *SectTxt[] = {s_TITLE, s_JUNCTIONS, s_RESERVOIRS,
|
|
|
120
137
|
s_REACTIONS, s_MIXING, s_REPORT,
|
|
121
138
|
s_TIMES, s_OPTIONS, s_COORDS,
|
|
122
139
|
s_VERTICES, s_LABELS, s_BACKDROP,
|
|
123
|
-
s_TAGS, s_END,
|
|
140
|
+
s_TAGS, s_LEAKAGE, s_END,
|
|
124
141
|
NULL};
|
|
125
142
|
|
|
126
143
|
char *Fldname[] = {t_ELEV, t_DEMAND, t_HEAD,
|