-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample.py
More file actions
122 lines (100 loc) · 3.83 KB
/
example.py
File metadata and controls
122 lines (100 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
from sys import argv
from epanetmsx import toolkit as msx
MINUTE = 60
HOUR = 60 * 60
def make_array(values):
arr = msx.floatArray(len(values))
for i in range(len(values)):
arr[i] = values[i]
return arr
def example(fname):
err = 0
msx.open()
# Builing the network from example.inp
msx.setFlowFlag(msx.CMH)
msx.setTimeParameter(msx.DURATION, 80*HOUR)
msx.setTimeParameter(msx.HYDSTEP, 1*HOUR)
msx.setTimeParameter(msx.QUALSTEP, 8*HOUR)
msx.setTimeParameter(msx.REPORTSTEP, 8*HOUR)
msx.setTimeParameter(msx.REPORTSTART, 0)
# Add nodes
msx.addNode("a")
msx.addNode("b")
msx.addNode("c")
msx.addNode("e")
msx.addReservoir("source", 0,0,0)
# id = msx.getID(msx.NODE, 1, msx.MAXID)
# Add links
msx.addLink("1", "source", "a", 1000, 200, 100)
msx.addLink("2", "a", "b", 800, 150, 100)
msx.addLink("3", "a", "c", 1200, 200, 100)
msx.addLink("4", "b", "c", 1000, 150, 100)
msx.addLink("5", "c", "e", 2000, 150, 100)
# Add Options
msx.addOption(msx.AREA_UNITS_OPTION, "M2")
msx.addOption(msx.RATE_UNITS_OPTION, "HR")
msx.addOption(msx.SOLVER_OPTION, "RK5")
msx.addOption(msx.TIMESTEP_OPTION, "28800")
msx.addOption(msx.RTOL_OPTION, "0.001")
msx.addOption(msx.ATOL_OPTION, "0.0001")
# Add Species
msx.addSpecies("AS3", msx.BULK, msx.UG, 0.0, 0.0)
msx.addSpecies("AS5", msx.BULK, msx.UG, 0.0, 0.0)
msx.addSpecies("AStot", msx.BULK, msx.UG, 0.0, 0.0)
msx.addSpecies("AS5s", msx.WALL, msx.UG, 0.0, 0.0)
msx.addSpecies("NH2CL", msx.BULK, msx.MG, 0.0, 0.0)
#type, units, aTol, rTol = msx.getspecies(5)
#Add Coefficents
msx.addCoefficeint(msx.CONSTANT, "Ka", 10.0)
msx.addCoefficeint(msx.CONSTANT, "Kb", 0.1)
msx.addCoefficeint(msx.CONSTANT, "K1", 5.0)
msx.addCoefficeint(msx.CONSTANT, "K2", 1.0)
msx.addCoefficeint(msx.CONSTANT, "Smax", 50)
#Add terms
msx.addTerm("Ks", "K1/K2")
#Add Expressions
msx.addExpression(msx.LINK, msx.RATE, "AS3", "-Ka*AS3*NH2CL")
msx.addExpression(msx.LINK, msx.RATE, "AS5", "Ka*AS3*NH2CL-Av*(K1*(Smax-AS5s)*AS5-K2*AS5s)")
msx.addExpression(msx.LINK, msx.RATE, "NH2CL", "-Kb*NH2CL")
msx.addExpression(msx.LINK, msx.EQUIL, "AS5s", "Ks*Smax*AS5/(1+Ks*AS5)-AS5s")
msx.addExpression(msx.LINK, msx.FORMULA, "AStot", "AS3 + AS5")
msx.addExpression(msx.TANK, msx.RATE, "AS3", "-Ka*AS3*NH2CL")
msx.addExpression(msx.TANK, msx.RATE, "AS5", "Ka*AS3*NH2CL")
msx.addExpression(msx.TANK, msx.RATE, "NH2CL", "-Kb*NH2CL")
msx.addExpression(msx.TANK, msx.FORMULA, "AStot", "AS3+AS5")
#Add Quality
msx.addQuality("NODE", "AS3", 10.0, "source")
msx.addQuality("NODE", "NH2CL", 2.5, "source")
# Finish Setup
msx.init()
# Run
demands = make_array([0.040220, 0.033353, 0.053953, 0.022562, -0.150088])
heads = make_array([327.371979, 327.172974, 327.164185, 326.991211, 328.083984])
flows = make_array([0.150088, 0.039916, 0.069952, 0.006563, 0.022562])
msx.setHydraulics(demands, heads, flows)
t = 0
tleft = 1 # Value will be updated when MSXstep is called
oldHour = -1
newHour = 0
# Example of using the printQuality function in the loop rather than
# saving results to binary out file and then calling the MSXreport function
while (tleft >= 0 and err == 0):
if ( oldHour != newHour ):
print(f"\r o Computing water quality at hour {newHour}", flush=True, end="")
msx.printQuality(msx.LINK, "4", "AS5s", fname)
msx.printQuality(msx.LINK, "5", "AS5s", fname)
oldHour = newHour
t, tleft = msx.step(t)
newHour = t // 3600
# Close
msx.close()
return err
# Main
if __name__ == "__main__":
err = 0
if len(argv) > 1:
fname = argv[1]
else:
fname = ""
err = example(fname)
print("")