-
Notifications
You must be signed in to change notification settings - Fork 0
/
subcatchments.py
583 lines (475 loc) · 16.8 KB
/
subcatchments.py
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2014 Bryant E. McDonnell
#
# Licensed under the terms of the BSD2 License
# See LICENSE.txt for details
# -----------------------------------------------------------------------------
"""Subcatchments module for the pythonic interface to SWMM5."""
# Local imports
from pyswmm.swmm5 import PYSWMMException
from pyswmm.toolkitapi import ObjectType, SubcParams, SubcResults
class Subcatchments(object):
"""
Subcatchment Iterator Methods.
:param object model: Open Model Instance
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... for subcatchment in Subcatchments(sim):
... print subcatchment
... print subcatchment.subcatchmentid
...
>>> <swmm5.Subcatchment object at 0x031B0350>
>>> S1
>>> <swmm5.Subcatchment object at 0x030693D0>
>>> S2
>>> <swmm5.Subcatchment object at 0x031B0350>
>>> S3
>>> <swmm5.Subcatchment object at 0x030693D0>
>>> S4
Iterating over Subcatchments Object
>>> subcatchments = Subcatchments(sim)
>>> for subcatchment in subcatchments:
... print subcatchment.subcatchmentid
>>> S0
>>> S1
>>> S2
>>> S3
Testing Existence
>>> subcatchments = Subcatchments(sim)
>>> "S1" in subcatchments
>>> True
Initializing a subcatchment Object
>>> subcatchments = Subcatchments(sim)
>>> s1 = subcatchments['S1']
>>> print(s1.area)
>>> 12
>>>
>>> s1.area = 200
>>> print(s1.area)
>>> 200
"""
def __init__(self, model):
if not model._model.fileLoaded:
raise PYSWMMException("SWMM Model Not Open")
self._model = model._model
self._cuindex = 0
self._nSubcatchments = self._model.getProjectSize(
ObjectType.SUBCATCH.value)
def __len__(self):
"""
Return number of subcatchments.
Use the expression 'len(Subcatchments)'.
:return: Number of Subcatchments
:rtype: int
"""
return self._model.getProjectSize(ObjectType.SUBCATCH.value)
def __contains__(self, subcatchmentid):
"""
Checks if Subcatchment ID exists.
:return: ID Exists
:rtype: bool
"""
return self._model.ObjectIDexist(ObjectType.SUBCATCH.value,
subcatchmentid)
def __getitem__(self, subcatchmentid):
if self.__contains__(subcatchmentid):
return Subcatchment(self._model, subcatchmentid)
else:
raise PYSWMMException("Subcatchment ID Does not Exist")
def __iter__(self):
return self
def __next__(self):
if self._cuindex < self._nSubcatchments:
subcatchmentobject = self.__getitem__(self._subcatchmentid)
self._cuindex += 1 # Next Iteration
return subcatchmentobject
else:
raise StopIteration()
next = __next__ # Python 2
@property
def _subcatchmentid(self):
"""Subcatchment ID."""
return self._model.getObjectId(ObjectType.SUBCATCH.value,
self._cuindex)
class Subcatchment(object):
"""
Subcatchment Methods.
:param object model: Open Model Instance
:param str subcatchmentid: Subcatchment ID
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.rainfall
... for step in simulation:
... print s1.rainfall
... 0.04
"""
def __init__(self, model, subcatchmentid):
if not model.fileLoaded:
raise PYSWMMException("SWMM Model Not Open")
if subcatchmentid not in model.getObjectIDList(
ObjectType.SUBCATCH.value):
raise PYSWMMException("ID Not valid")
self._model = model
self._subcatchmentid = subcatchmentid
# --- Get Parameters
# -------------------------------------------------------------------------
@property
def subcatchmentid(self):
"""
Get Subcatchment ID.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.subcatchmentid
>>> S1
"""
return self._subcatchmentid
@property
def connection(self):
"""
Get Subcatchment Outlet Connection.
This function return the type of loading surface and the ID. The two
load to objects are nodes and other subcatchments.
+--------------+---+
| Node | 2 |
+--------------+---+
| Subcatchment | 1 |
+--------------+---+
:return: (Loading Surface Type, ID)
:rtype: tuple
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.connection
>>> (2, 'J2')
"""
return self._model.getSubcatchOutConnection(self._subcatchmentid)
@property
def width(self):
"""
Get/set subcatchment width.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.width
>>> 100.0
Setting the value
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.width
... s1.width = 30
... print s1.width
>>> 100
>>> 30
"""
return self._model.getSubcatchParam(self._subcatchmentid,
SubcParams.width.value)
@width.setter
def width(self, param):
"""Set Subcatchment Width."""
self._model.setSubcatchParam(self._subcatchmentid,
SubcParams.width.value, param)
@property
def area(self):
"""
Get/set subcatchment area.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.area
>>> 10
Setting the value
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.area
... s1.area = 50
... print s1.area
>>> 10
>>> 50
"""
return self._model.getSubcatchParam(self._subcatchmentid,
SubcParams.area.value)
@area.setter
def area(self, param):
"""Set Subcatchment area."""
self._model.setSubcatchParam(self._subcatchmentid,
SubcParams.area.value, param)
@property
def percent_impervious(self):
"""
Get/set subcatchment percent impervious.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.percent_impervious
>>> 10
Setting the value
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.percent_impervious
... s1.percent_impervious = 50
... print s1.percent_impervious
>>> 10
>>> 50
"""
return self._model.getSubcatchParam(self._subcatchmentid,
SubcParams.fracImperv.value)
@percent_impervious.setter
def percent_impervious(self, param):
"""Set Subcatchment percent impervious."""
self._model.setSubcatchParam(self._subcatchmentid,
SubcParams.fracImperv.value, param)
@property
def slope(self):
"""
Get/set subcatchment slope.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.slope
>>> 0.01
Setting the value
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.slope
... s1.slope = 0.02
... print s1.slope
>>> 0.1
>>> 0.2
"""
return self._model.getSubcatchParam(self._subcatchmentid,
SubcParams.slope.value)
@slope.setter
def slope(self, param):
"""Set Subcatchment Ponding Area."""
self._model.setSubcatchParam(self._subcatchmentid,
SubcParams.slope.value, param)
@property
def curb_length(self):
"""
Get/set subcatchment curb length.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.curb_length
>>> 0
Setting the value
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... print s1.curb_length
... s1.curb_length = 100
... print s1.curb_length
>>> 0
>>> 100
"""
return self._model.getSubcatchParam(self._subcatchmentid,
SubcParams.curbLength.value)
@curb_length.setter
def curb_length(self, param):
"""Set Subcatchment curb length."""
self._model.setSubcatchParam(self._subcatchmentid,
SubcParams.curbLength.value, param)
@property
def rainfall(self):
"""
Get Subcatchment Results for Rainfall.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.rainfall
>>> 0
>>> 1.2
>>> 1.5
>>> 1.9
>>> 1.2
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.rainfall.value)
@property
def evaporation_loss(self):
"""
Get Subcatchment Results for evaporation loss.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.evaporation_loss
>>> 0.01
>>> 0.01
>>> 0.01
>>> 0.01
>>> 0.01
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.evapLoss.value)
@property
def infiltration_loss(self):
"""
Get Subcatchment Results for Infiltration Loss.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.infiltration_loss
>>> 0
>>> 0.01
>>> 0.01
>>> 0.01
>>> 0.01
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.infilLoss.value)
@property
def runon(self):
"""
Get Subcatchment Results for Run On.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.runon
>>> 0
>>> 1.2
>>> 1.5
>>> 1.9
>>> 1.2
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.runon.value)
@property
def runoff(self):
"""
Get Subcatchment Results for Run Off Rate.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.runoff
>>> 0
>>> 0
>>> 0.01
>>> 0
>>> 0
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.newRunoff.value)
@property
def snow_depth(self):
"""
Get Subcatchment Results for Snow Depth.
If Simulation is not running this method will raise a warning and
return 0.
:return: Parameter Value
:rtype: float
Examples:
>>> from pyswmm import Simulation, Subcatchments
>>>
>>> with Simulation('tests/data/TestModel1_weirSetting.inp') as sim:
... s1 = Subcatchments(sim)["S1"]
... for step in sim:
... print s1.snow_depth
>>> 0
>>> 0.5
>>> 0.51
>>> 0.52
>>> 0.49
"""
return self._model.getSubcatchResult(self._subcatchmentid,
SubcResults.newSnowDepth.value)
@property
def statistics(self):
"""
Subcatchment Flow Stats. The stats returned are rolling/cumulative.
Indeces are as follows:
+-------------------+
| precipitation |
+-------------------+
| runon |
+-------------------+
| evaporation |
+-------------------+
| infiltration |
+-------------------+
| runoff |
+-------------------+
| peak_runoff_rate |
+-------------------+
| pollutant_buildup |
+-------------------+
:return: Group of Stats
:rtype: dict
"""
return self._model.subcatch_statistics(self.subcatchmentid)