epyt-flow 0.14.0__tar.gz → 0.14.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/PKG-INFO +2 -2
  2. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/REQUIREMENTS.txt +1 -1
  3. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/AUTHORS +60 -0
  4. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/LICENSE +3 -3
  5. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/enumstxt.h +24 -7
  6. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/epanet.c +726 -374
  7. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/epanet2.c +128 -32
  8. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/errors.dat +7 -1
  9. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/flowbalance.c +186 -0
  10. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/funcs.h +40 -14
  11. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hash.c +177 -177
  12. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hash.h +28 -28
  13. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hydcoeffs.c +192 -40
  14. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hydraul.c +101 -46
  15. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hydsolver.c +85 -24
  16. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/hydstatus.c +29 -63
  17. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2.h +70 -37
  18. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2_2.h +408 -234
  19. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/include/epanet2_enums.h +87 -37
  20. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/inpfile.c +153 -79
  21. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/input1.c +59 -94
  22. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/input2.c +73 -202
  23. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/input3.c +446 -351
  24. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/leakage.c +527 -0
  25. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/mempool.c +8 -4
  26. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/mempool.h +23 -23
  27. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/output.c +5 -4
  28. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/project.c +407 -75
  29. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/quality.c +12 -2
  30. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/qualreact.c +70 -13
  31. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/qualroute.c +7 -5
  32. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/report.c +88 -20
  33. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/rules.c +144 -6
  34. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/smatrix.c +19 -19
  35. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/text.h +16 -5
  36. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/types.h +73 -19
  37. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/cstr_helper.c +59 -0
  38. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/cstr_helper.h +38 -0
  39. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/errormanager.c +92 -0
  40. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/errormanager.h +39 -0
  41. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/filemanager.c +212 -0
  42. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/util/filemanager.h +81 -0
  43. epyt_flow-0.14.1/epyt_flow/EPANET/EPANET/SRC_engines/validate.c +408 -0
  44. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/compile_linux.sh +1 -1
  45. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/compile_macos.sh +1 -1
  46. epyt_flow-0.14.1/epyt_flow/VERSION +1 -0
  47. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/gym/scenario_control_env.py +26 -3
  48. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/quality_events.py +6 -6
  49. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/sensor_faults.py +24 -24
  50. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/system_event.py +3 -3
  51. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/scada_data.py +1 -1
  52. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scenario_simulator.py +14 -11
  53. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/topology.py +8 -1
  54. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/uncertainty/model_uncertainty.py +292 -150
  55. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow.egg-info/PKG-INFO +2 -2
  56. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow.egg-info/SOURCES.txt +9 -3
  57. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow.egg-info/requires.txt +1 -1
  58. epyt_flow-0.14.0/epyt_flow/EPANET/EPANET/SRC_engines/AUTHORS +0 -28
  59. epyt_flow-0.14.0/epyt_flow/EPANET/EPANET/SRC_engines/Readme_SRC_Engines.txt +0 -18
  60. epyt_flow-0.14.0/epyt_flow/EPANET/EPANET/SRC_engines/epanet2.def +0 -131
  61. epyt_flow-0.14.0/epyt_flow/EPANET/EPANET/SRC_engines/main.c +0 -93
  62. epyt_flow-0.14.0/epyt_flow/VERSION +0 -1
  63. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/CITATION.cff +0 -0
  64. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/CODE_OF_CONDUCT.md +0 -0
  65. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/LICENSE +0 -0
  66. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/MANIFEST.in +0 -0
  67. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/README.md +0 -0
  68. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET/SRC_engines/genmmd.c +0 -0
  69. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/MSX_Updates.txt +0 -0
  70. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/dispersion.h +0 -0
  71. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/hash.c +0 -0
  72. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/hash.h +0 -0
  73. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/include/epanetmsx.h +0 -0
  74. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/include/epanetmsx_export.h +0 -0
  75. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/mathexpr.c +0 -0
  76. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/mathexpr.h +0 -0
  77. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/mempool.c +0 -0
  78. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/mempool.h +0 -0
  79. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxchem.c +0 -0
  80. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxcompiler.c +0 -0
  81. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxdict.h +0 -0
  82. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxdispersion.c +0 -0
  83. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxerr.c +0 -0
  84. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxfile.c +0 -0
  85. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxfuncs.c +0 -0
  86. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxfuncs.h +0 -0
  87. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxinp.c +0 -0
  88. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxout.c +0 -0
  89. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxproj.c +0 -0
  90. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxqual.c +0 -0
  91. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxrpt.c +0 -0
  92. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxtank.c +0 -0
  93. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxtoolkit.c +0 -0
  94. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxtypes.h +0 -0
  95. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxutils.c +0 -0
  96. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/msxutils.h +0 -0
  97. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/newton.c +0 -0
  98. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/newton.h +0 -0
  99. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/rk5.c +0 -0
  100. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/rk5.h +0 -0
  101. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/ros2.c +0 -0
  102. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/ros2.h +0 -0
  103. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/smatrix.c +0 -0
  104. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/Src/smatrix.h +0 -0
  105. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/EPANET/EPANET-MSX/readme.txt +0 -0
  106. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/__init__.py +0 -0
  107. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/__init__.py +0 -0
  108. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/__init__.py +0 -0
  109. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/batadal.py +0 -0
  110. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/batadal_data.py +0 -0
  111. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/battledim.py +0 -0
  112. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/battledim_data.py +0 -0
  113. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/gecco_water_quality.py +0 -0
  114. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/leakdb.py +0 -0
  115. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/leakdb_data.py +0 -0
  116. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/benchmarks/water_usage.py +0 -0
  117. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/data/networks.py +0 -0
  118. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/gym/__init__.py +0 -0
  119. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/__init__.py +0 -0
  120. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/base_handler.py +0 -0
  121. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/res_manager.py +0 -0
  122. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scada_data/__init__.py +0 -0
  123. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scada_data/data_handlers.py +0 -0
  124. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scada_data/export_handlers.py +0 -0
  125. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scada_data/handlers.py +0 -0
  126. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/__init__.py +0 -0
  127. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/control_handlers.py +0 -0
  128. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/event_handlers.py +0 -0
  129. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/handlers.py +0 -0
  130. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/simulation_handlers.py +0 -0
  131. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/scenario/uncertainty_handlers.py +0 -0
  132. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/rest_api/server.py +0 -0
  133. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/serialization.py +0 -0
  134. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/__init__.py +0 -0
  135. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/backend/__init__.py +0 -0
  136. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/backend/my_epyt.py +0 -0
  137. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/__init__.py +0 -0
  138. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/actuator_events.py +0 -0
  139. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/event.py +0 -0
  140. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/leakages.py +0 -0
  141. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/sensor_reading_attack.py +0 -0
  142. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/events/sensor_reading_event.py +0 -0
  143. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/parallel_simulation.py +0 -0
  144. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/__init__.py +0 -0
  145. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/complex_control.py +0 -0
  146. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/custom_control.py +0 -0
  147. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/scada_data_export.py +0 -0
  148. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scada/simple_control.py +0 -0
  149. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/scenario_config.py +0 -0
  150. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/simulation/sensor_config.py +0 -0
  151. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/uncertainty/__init__.py +0 -0
  152. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/uncertainty/sensor_noise.py +0 -0
  153. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/uncertainty/uncertainties.py +0 -0
  154. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/uncertainty/utils.py +0 -0
  155. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/utils.py +0 -0
  156. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/visualization/__init__.py +0 -0
  157. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/visualization/scenario_visualizer.py +0 -0
  158. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow/visualization/visualization_utils.py +0 -0
  159. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow.egg-info/dependency_links.txt +0 -0
  160. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/epyt_flow.egg-info/top_level.txt +0 -0
  161. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/pyproject.toml +0 -0
  162. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/setup.cfg +0 -0
  163. {epyt_flow-0.14.0 → epyt_flow-0.14.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: epyt-flow
3
- Version: 0.14.0
3
+ Version: 0.14.1
4
4
  Summary: EPyT-Flow -- EPANET Python Toolkit - Flow
5
5
  Author-email: André Artelt <aartelt@techfak.uni-bielefeld.de>, "Marios S. Kyriakou" <kiriakou.marios@ucy.ac.cy>, "Stelios G. Vrachimis" <vrachimis.stelios@ucy.ac.cy>
6
6
  License-Expression: MIT
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
20
20
  Requires-Python: >=3.9
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: epyt>=1.2.1
23
+ Requires-Dist: epyt>=1.2.2
24
24
  Requires-Dist: requests>=2.31.0
25
25
  Requires-Dist: scipy>=1.11.4
26
26
  Requires-Dist: u-msgpack-python>=2.8.0
@@ -1,4 +1,4 @@
1
- epyt>=1.2.1
1
+ epyt>=1.2.2
2
2
  requests>=2.31.0
3
3
  scipy>=1.11.4
4
4
  u-msgpack-python>=2.8.0
@@ -0,0 +1,60 @@
1
+ # Authors ordered alphabetically.
2
+
3
+ Authors with Contributions in the Public Domain:
4
+ Lewis Rossman <LRossman@cinci.rr.com>
5
+ Michael Tryby <tryby.michael@epa.gov>
6
+
7
+ Version 2.0
8
+ Lewis Rossman <LRossman@cinci.rr.com>
9
+
10
+ Authors with Contributions Subject to Copyright (see LICENSE):
11
+ Except where noted.
12
+
13
+ Version 2.1
14
+ Jinduan Chen <jinduan.uc@gmail.com>
15
+ Maurizio Cingi <mrzcng2@gmail.com>
16
+ Demetrios Eliades <eldemet@gmail.com>
17
+ Will Furnass <will@thearete.co.uk>
18
+ Milad Ghiami <milad.ghiami67@gmail.com>
19
+ Sam Hatchett <samhatchett@gmail.com>
20
+ Mike Kane <muke195@gmail.com>
21
+ Marios Kyriakou <mariosmsk@gmail.com>
22
+ Steffen Macke <sdteffen@sdteffen.de>
23
+ Angela Marchi <angela.marchi@adelaide.edu.au>
24
+ Bryant McDonnell <bemcdonnell@gmail.com>
25
+ Lew Rossman <LRossman@cinci.rr.com>
26
+ Elad Salomons <selad@optiwater.com>
27
+ Feng Shang <fengshang72@gmail.com>
28
+ Yunier Soad <yunier.soad@gmail.com>
29
+ Tom Taxon <tntaxon@anl.gov>
30
+ Michael Tryby <tryby.michael@epa.gov> (Contributions in the Public Domain)
31
+ James Uber <jim@citilogics.com>
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) 2017 (see AUTHORS)
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 be included in all
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.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: 06/20/2019
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,