-
Notifications
You must be signed in to change notification settings - Fork 2
/
MINLP_Pressurzied_raw_08_2023R1.py
644 lines (543 loc) · 25 KB
/
MINLP_Pressurzied_raw_08_2023R1.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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
# -*- coding: utf-8 -*-
"""
Created on Sat May 8 11:55:13 2021
@author: yunus
"""
from osgeo import ogr
import igraph as ig
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from scipy.spatial import distance_matrix
from math import sin, cos, sqrt, atan2, radians
import sys
import geopandas as gpd
from shapely.geometry import Polygon, box, Point, LineString, MultiLineString
import xlwt
from xlwt import Workbook
import os
import gurobipy as gp
from gurobipy import GRB
xmin = -87.52739617137372
xmax = -87.47#841138757
ymin = 32.42075991564647
ymax = 32.469#87035515
# approximate radius of earth in km
def haversinedist(lat1, lon1, lat2, lon2):
R = 6373.0
lat1 = radians(lat1)
lon1 = radians(lon1)
lat2 = radians(lat2)
lon2 = radians(lon2)
dlon = lon2 - lon1
dlat = lat2 - lat1
a = sin(dlat / 2)**2 + cos(lat1) * cos(lat2) * sin(dlon / 2)**2
c = 2 * atan2(sqrt(a), sqrt(1 - a))
distance = R * c
return distance
def readClusterFile(fileID):
file = np.genfromtxt(fileID, delimiter=" ")
if np.count_nonzero(file) <= 5:
file_list = file
else:
file_list = file[:,1:]
return file_list
def readClusterfileID(fileID):
file_indexes = np.genfromtxt(fileID, delimiter=" ", dtype = str)
if np.count_nonzero(file_indexes) <= 5:
file_id = file_indexes[0]
else:
file_id = file_indexes[:,0]
return file_id
def readArcs(fileID):
file = np.genfromtxt(fileID, delimiter=" ", dtype = str)
return file
#note: the slopes in this function take the from node as the start point(i) and the to node as the endpoint (j)
def findDistances(tree, dataframe):
returnDictdist = {}
for i, j in tree:
lon1 = dataframe.loc[dataframe['n_id'] == i]['lon']
lat1 = dataframe.loc[dataframe['n_id'] == i]['lat']
lon2 = dataframe.loc[dataframe['n_id'] == j]['lon']
lat2 = dataframe.loc[dataframe['n_id'] == j]['lat']
distance = haversinedist(lat1, lon1, lat2, lon2)
#meters divded meters
returnDictdist[i,j] = distance * 1000
return returnDictdist
#this section of code makes sure the directed arcs drain into the source node
#this function takes a point and the list of arcs and the list of already accounted for arcs and finds
#all the arcs that are connected to a node, which have not already been insepcted in the repetition variable
#this section of code makes sure the directed arcs drain into the source node
#this function takes a point and the list of arcs and the list of already accounted for arcs and finds
#all the arcs that are connected to a node, which have not already been insepcted in the repetition variable
def findconnectingnodes(source, arclist, repetition):
returnlist = list()
for i in range(len(arclist)):
for j in source:
if (arcs[i][0] == j or arcs[i][1] == j) and arclist[i] not in repetition and arclist[i][::-1] not in repetition:
returnlist.append(arclist[i])
return returnlist
#this function goes through the directed mst and makes sure the directions go the right way
def correctFlow(arcs1, outlet):
visitedToNodes = []
returnArcList = []
source_index = outlet
visitedToNodes.append(source_index)
tempNodes = [source_index]
#travels through all the arcs of the mst switches flow direction if it is facing the wrong way
while len(visitedToNodes) <= len(arcs):
tempToList = findconnectingnodes(tempNodes, arcs1, returnArcList)
for i in tempToList:
if i[0] in visitedToNodes:
rev_tup = i[::-1]
returnArcList.append(rev_tup)
visitedToNodes.append(rev_tup[0])
tempNodes.append(rev_tup[0])
else:
returnArcList.append(i)
visitedToNodes.append(i[0])
tempNodes.append(i[0])
tempNodes = tempNodes[-len(tempToList):]
tempToList = []
return returnArcList
#flips the arcs if
def flip(arcList, out):
returnArcs = []
returnStarts = []
for i in arcList:
if i[0] == out:
returnArcs.append(i[::-1])
returnStarts.append(i[1])
elif i[1] == out:
returnArcs.append(i)
returnStarts.append(i[0])
return returnArcs, returnStarts
def correctFlow2(arcsR, outletR):
todealwith = arcsR
row_count = 0
visited = set()
returnArcs = np.array([0,0])
toVisit = [outletR]
while len(visited) < len(todealwith):
toVisit2 = []
for i in toVisit:
for j in range(len(todealwith)):
if i == todealwith[j, 0] and tuple(todealwith[j]) not in visited:
returnArcs = np.vstack((returnArcs, todealwith[j][::-1]))
toVisit2.append(todealwith[j,1])
visited.add(tuple(todealwith[j]))
row_count += 1
elif i == todealwith[j, 1] and tuple(todealwith[j]) not in visited:
returnArcs = np.vstack((returnArcs, todealwith[j]))
visited.add(tuple(todealwith[j]))
toVisit2.append(todealwith[j,0])
row_count += 1
toVisit = toVisit2
return returnArcs[1:,:]
# run this in the kernel to make sure you get the workbook started wb = Workbook()
#note: if you did this for the other models you don't need to do it for this one
#after you run this in the kernel then you start adding your sheets
wb = Workbook()
PressurizeSystemSheet = wb.add_sheet("Pressurized_System")
PressurizeSystemSheet.write(0, 0, 'Cluster_Name')
PressurizeSystemSheet.write(0, 1, 'Obj1')
PressurizeSystemSheet.write(0, 2, 'Obj2')
PressurizeSystemSheet.write(0, 3, 'Obj3')
PressurizeSystemSheet.write(0, 4, 'Obj4')
PressurizeSystemSheet.write(0, 5, 'Obj')
PressurizeSystemSheet.write(0, 6, 'Objective + Additional Costs')
Pumps = wb.add_sheet("pumps_loc_cluster.csv")
Pumps.write(0, 0, 'cluster')
Pumps.write(0, 1, 'Pump_Arc_Locations')
Pumps.write(0, 2, 'Pump_Arc_Mid_Lon')
Pumps.write(0, 3, 'Pump_Arc_Mid_Lat')
pumpcounter = 0
################################## initialize parameters
node_flow = 2592 / (60 * 24) #for 1.8 gpm
arb_min_slope = 0.01
arb_max_slope = 0.10
pipesize = [0.1, 0.15, 0.2, 0.25, 0.3,0.35,0.4,0.45]
# #pipe costsxcavation not included
#pipesize_str, pipecost = gp.multidict({'0.05': 8.7, '0.06': 9.5, '0.08': 11, \
# '0.1': 12.6, '0.15': 43.5,'0.2': 141, '0.25': 151, '0.3': 161}) #all pipes entering and exiting and come in at the same elevation
# fully installed costs
pipesize_str, pipecost = gp.multidict({'0.05': 18, '0.06': 19, '0.08': 22, \
'0.1': 25, '0.15': 62,'0.2': 171, '0.25': 187, '0.3': 203, '0.35':230, '0.4': 246, '0.45':262})
excavation = 0#25
bedding_cost_sq_ft = 0#6
capital_cost_pump_station = 0
ps_flow_cost = 0
ps_OM_cost = 10279
treat_om = 237000
fixed_treatment_cost = 44000
added_post_proc = 8.52 #for gallons per day so use arcFlow values
hometreatment = 5500
collection_om = 209
#define aquifer boundaries:
#we need to know aquifer boundaries to identify these potential treatment nodes
aquifers = gpd.read_file("C:\\Users\\yunus\\OneDrive\\Desktop\\Columbia_School_Work\\Alabama_Water_Project\\WW_FINAL\\us_aquifers.shx")
utown_poly = Polygon([[xmin, ymin], [xmin, ymax], [xmax,ymax], [xmax, ymin]])
aquifers_utown = gpd.clip(aquifers, utown_poly)
ngroups=2
for cluster in range(1, (ngroups+1)):
#come up with new naming convention
arcsfilename = 'clust_' + str(cluster) + '_road_arcs_utown.txt'
arcsfile = os.path.realpath(os.path.join(os.path.dirname('MST_Decentralized'))) + '\\' + arcsfilename
arcsDist = readArcs(arcsfile)
arcs = arcsDist[:,:-1]
road_nodes = set()
demand_nodes = []
arcDistances = dict()
for a, b, c in arcsDist:
road_nodes.add(a)
road_nodes.add(b)
arcDistances[a, b] = float(c)
arcDistances[b, a] = float(c)
df = pd.read_csv('Uniontown_df.csv')
#determine which points are able to be used as treatment
treatment = []
for i in df['n_id']:
row = df.loc[df['n_id'] == i]
rowlat = float(row['lat'])
rowlon = float(row['lon'])
geo = Point([rowlon, rowlat])
if aquifers_utown.contains(geo).all() and i in road_nodes and int(row['n_demand']) > 0:
treatment.append(1)
elif i in road_nodes:
treatment.append(0.1)
else:
treatment.append(0)
df['treatment'] = treatment
#############################################################
#find the outlet node elevation using the dataframe
#specify it can only come from a node with non zero demand
#also within the aquifer
#also have a case for when there the site is not above an aquifer
if all(df['treatment'] != 0):
min_elevation = min(list(df[df['treatment'] == 1]['elevation']))
else:
min_elevation = min(list(df[df['treatment'] == 0.1]['elevation']))
outlet_node = df.loc[df['elevation'] == min_elevation]['n_id'].values[0]
arcsnp = np.array([0, 0])
for i in arcs:
arcsnp = np.vstack((arcsnp, i))
arcsnp = arcsnp[1:,:]
arcs = correctFlow2(arcsnp, outlet_node)
#connectivity list with corresponding slopes
#the end node or treatment plant is the final coordinate which is at index 79 or the 80th coordinate
#arcDistances = findDistances(arcs, df)
nodes = list()
nodes_notup = list()
arcFlow = dict()
# for i in range(len(arcs)+1):
# tup = (i,)
# nodes.append(tup)
# nodes_notup.append(i)
#pumpcap = dict()
#arcs, arcSlopes = gp.multidict(arcSlopes)
arcarray = np.array(arcs)
fromcol = list(arcarray[:,0])
tocol = list(arcarray[:, 1])
for i in tocol:
if i not in fromcol:
end = i
#fix this to reflect rainfall
startpoints = [i for i in road_nodes if i[0] not in tocol]
visitedpoints = []
previous = []
beforemergeval = 0
for i in startpoints:
currentpoint = i
move = []
while currentpoint != end:
rowindex = int(np.where(arcarray[:,0] == currentpoint)[0])
to = arcarray[rowindex,:][1]
if (currentpoint, to) not in arcFlow:
arcFlow[currentpoint, to] = sum(move) + float(df.loc[df['n_id'] == currentpoint]['n_demand'])*250/(60*24) #from 250 gallons per household per day
else:
#if we are merginnig we should give it all our water
if previous not in visitedpoints[:-1]:
beforemergeval = arcFlow[tuple(previous)]
arcFlow[currentpoint, to] += beforemergeval
else:
arcFlow[currentpoint, to] += beforemergeval
previous = [currentpoint, to]
visitedpoints.append(previous)
currentpoint = to
move.append(float(df.loc[df['n_id'] == currentpoint]['n_demand'])*250/(60*24))
arcs = list(arcs)
#Break up treatment plant node into a dummy node and a treatment plant node only a meter or two away.
#sets it up as 100 meters away cause the elevation change might be a lot so this accomodates for that
road_nodes.add(outlet_node + 'f')
arcs.append(np.array([outlet_node, outlet_node + 'f'], dtype='<U11'))
#nodes_notup.append((len(nodes)-1),)
endnodelon = float(df.loc[df['n_id'] == outlet_node]['lon']) + 0.0001
endnodelat = float(df.loc[df['n_id'] == outlet_node]['lat']) + 0.0001
endnodeelev = float(df.loc[df['n_id'] == outlet_node]['elevation'])
df2 = {'n_id': str(outlet_node) + 'f', 'x': 0, 'y': 0, 'geometry': Point(0,0), 'elevation': endnodeelev, 'n_demand': 0, 'lat': endnodelat, 'lon': endnodelon, 'cluster': -1, 'treatment': 1}
df = df.append(df2, ignore_index = True)
arcDistances[(outlet_node, outlet_node + 'f')] = 35
endlinks = [(i, j) for i,j in arcFlow if j == outlet_node]
for i, j in endlinks:
if (outlet_node, outlet_node + 'f') in arcFlow:
arcFlow[(outlet_node, outlet_node + 'f')] += arcFlow[i,j]
else:
arcFlow[(outlet_node, outlet_node + 'f')] = arcFlow[i,j]
#nodes = twoDcluster
# groundelev_dict = dict()
# for i in road_nodes:
# index = int(i[0])
# if i[0] == len(threeDcluster):
# groundelev_dict[i] = threeDcluster[outlet_node, 2]
# else:
# groundelev_dict[i] = threeDcluster[index, 2]
inflow = dict()
inflow_count = 0
#have to add a final node with a demand of zero for the outlet
#demands = np.append(demands, 0)
nodes2 = []
for i in road_nodes:
n_name = str(i)
nodes2.append(n_name)
for i in nodes2:
if i == outlet_node + 'f':
inflow[i] = -arcFlow[outlet_node, outlet_node + 'f']
else:
inflow[i] = float(df.loc[df['n_id'] == i]['n_demand'])*250/(60*24)
building_num = 0
for i in nodes2:
df_row = df.loc[df['n_id'] == i]
building_num += int(df_row['n_demand'])
#get rid of all the nodes that do not contribute flow
# nodes2 = list(road_nodes.copy())
# for i in road_nodes:
# if inflow[str(i)] == 0:
# nodes2.remove(i)
#this section is for the optimization of the model
#this section is for the optimization of the model
m = gp.Model('Cluster1')
#pipe diameter
m.Params.timeLimit = 1200
#always run feasibilitytol and intfeastotal together
#m.Params.feasibilitytol = 0.01
#m.Params.optimalitytol = 0.01
#m.Params.IntFeasTol = 0.1
#m.Params.tunecleanup = 1.0
#pipe diameter
pipeflow = arcFlow.copy()
for i, j in pipeflow:
pipeflow[i,j] = pipeflow[i,j] / 15850
#pump location
arc_sizes = m.addVars(pipeflow.keys(), pipesize, vtype = GRB.BINARY, name = "DIAMETER")
pl = m.addVars(pipeflow.keys(), vtype = GRB.BINARY, name = "PUMPS") #pump capacity
pc = m.addVars(pipeflow.keys(), lb = 0, vtype = GRB.CONTINUOUS, name = 'Pump Capacity')
#node elevation excavation in meters
#upper bound is arbritrary maximum depth assuming 1 foot or 0.3048 meters of cover beneath the surface is needed for the pipes
#a lower bound variable is created but not used. In future models might need to implement that depending on the site (digging too deep for excavation is not feasible for many projects)
elevation_ub = dict()
elevation_lb = dict()
for i in nodes2:
elevation_ub[i] = float(df.loc[df['n_id'] == i]['elevation']) - 0.3048
elevation_lb[i] = float(df.loc[df['n_id'] == i]['elevation']) - 30
e = m.addVars(nodes2, lb = elevation_lb, ub = elevation_ub, name = 'In Node Elevation')
e[outlet_node] = float(df.loc[df['n_id'] == outlet_node]['elevation'])
#d3 = m.addVars(arcs, name = "Diameter to Power of 3")
#elevdifabs = m.addVars(arcs, name = "Absolute Val. of Elevation Different")
m.addConstrs((gp.quicksum(arc_sizes[i,j,k] for k in pipesize) == 1 for i,j in pipeflow.keys()), "single size chosen")
#arcSlopesroots = dict()
#converting gallons per min into m^3 per second
for i,j in list(pipeflow.keys()):
if j == outlet_node: #and j == outlet_node + 'f':
#m.addConstr((0.001 <= (-eIn[(i,)] + eIn[(j,)] - nodeElevDif[(i,)]) / arcDistances[i,j]), "slope min" + str([i,j]))
#m.addConstr((0.1 >= (-eIn[(i,)] + eIn[(j,)] - nodeElevDif[(i,)]) / arcDistances[i,j]), "slope max" + str([i,j]))
pass
else:
m.addConstr(
(0 <= (e[i] - e[j]) / arcDistances[i,j]), "slope min" + str([i,j]))
m.addConstr(
(0.1 >= (e[i] - e[j]) / arcDistances[i,j]), "slope max" + str([i,j]))
m.addConstrs((
pipeflow[i,j] <= ((3.14/4)*gp.quicksum(arc_sizes[i,j,k]*k**2 for k in pipesize)) * 3 for i,j in pipeflow.keys()), "Velocity Max Constr")
for i,j in pipeflow.keys():
if inflow[i] > 0:
pl[i,j] = 1
else:
pl[i,j] = 0
m.addConstrs((
pipeflow[i, j]*pl[i,j] <= pc[i,j] for i,j in pipeflow.keys()), "Pump Capacity Constraint")
#obj1 = gp.quicksum((1 + gp.quicksum(arc_sizes[i,j,k]*k for k in pipesize)*0.01) * arcDistances[i,j] * bedding_cost_sq_ft + excavation * (1 + gp.quicksum(arc_sizes[i,j,k]*k for k in pipesize)*0.01) * arcDistances[i,j] * 0.5 * ((elevation_ub[(i,)] - e[(i,)]) + (elevation_ub[(j,)] - e[(j,)])) for i, j in arcs)
obj1 = gp.quicksum((1 + gp.quicksum(arc_sizes[i,j,k]*k for k in pipesize)*0.01) * arcDistances[i,j] * bedding_cost_sq_ft + excavation * \
(1 + gp.quicksum(arc_sizes[i,j,k]*k for k in pipesize)*0.01) * arcDistances[i,j] * 0.5 * ((elevation_ub[i] - e[i]) + (elevation_ub[j] - e[j])) for i, j in pipeflow.keys())
obj2 = gp.quicksum(pl[i,j]*capital_cost_pump_station for i,j in pipeflow.keys())
obj3 = gp.quicksum(arcDistances[i,j] * gp.quicksum(pipecost[str(k)] * arc_sizes[i, j, k] for k in pipesize) for i,j in pipeflow.keys())
#pump operation costs:
obj4 = collection_om * (building_num+1) + gp.quicksum(ps_OM_cost*pl[i,j] for i,j in arcs) + treat_om
obj = obj1 + obj2 + obj3 + obj4 + fixed_treatment_cost + arcFlow[outlet_node, outlet_node+'f'] * added_post_proc * 60 * 24/10.368 + hometreatment * (building_num) #converts gals/min into gals per day
#obj = obj1 + obj3
#m.Params.Presolve = 0
#m.Params.Method = 2
#m.Params.PreQLinearize = 1
#m.Params.Heuristics = 0.001
m.setObjective(obj, GRB.MINIMIZE)
#m.Params.tunetimelimit = 3600
#m.tune()
m.optimize()
#p = m.presolve()
#p.printStats()
# print('The model is infeasible; computing IIS')
# m.computeIIS()
# if m.IISMinimal:
# print('IIS is minimal\n')
# else:
# print('IIS is not minimal\n')
# print('\nThe following constraint(s) cannot be satisfied:')
# for c in m.getConstrs():
# if c.IISConstr:
# print('%s' % c.constrName)
#PressurizeSystemSheet.write(clusternumber, 1, obj1.getValue())
PressurizeSystemSheet.write(cluster, 1, obj1.getValue())
PressurizeSystemSheet.write(cluster, 2, obj2.getValue())
PressurizeSystemSheet.write(cluster, 3, obj3.getValue())
PressurizeSystemSheet.write(cluster, 4, obj4.getValue())
PressurizeSystemSheet.write(cluster, 5, m.objVal)
PressurizeSystemSheet.write(cluster, 6, m.objVal)
# if m.status == GRB.INFEASIBLE:
# relaxvars = []
# relaxconstr = []
# for i in m.getVars():
# if 'velocity[' in str(i):
# relaxvars.append(i)
# for j in m.getConstrs():
# if 'slope[' in str(j):
# relaxconstr.append(j)
# lbpen = [3.0]*len(relaxvars)
# ubpen = [3.0]*len(relaxvars)
# rhspen = [1.0]*len(relaxconstr)
# m.feasRelax(2, False, relaxvars, lbpen, ubpen, relaxconstr, rhspen)
# m.optimize()
# modelname = "Decentralized_Uniontown_" + tot_clust_str + '_' + clustername + "PressurizedSystem" + ".txt"
# #m.write(modelname)
# modelfile = open(modelname, "w")
# modelfile.write('Solution Value: %g \n' % m.objVal)
# for v in m.getVars():
# modelfile.write('%s %g \n' % (v.varName, v.x))
# modelfile.close()
#m.close()
for a,b in pl:
a_lon = float(df.loc[df['n_id'] == a]['lon'])
a_lat = float(df.loc[df['n_id'] == a]['lat'])
b_lon = float(df.loc[df['n_id'] == b]['lon'])
b_lat = float(df.loc[df['n_id'] == b]['lat'])
if type(pl[a, b]) == int:
if pl[a, b] == 1:
pumpcounter += 1
Pumps.write(pumpcounter, 0, i)
Pumps.write(pumpcounter, 1, str([a, b]))
Pumps.write(pumpcounter, 2, (a_lon + b_lon)*0.5)
Pumps.write(pumpcounter, 3, (a_lat + b_lat)*0.5)
else:
if pl[a, b].X == 1:
pumpcounter += 1
Pumps.write(pumpcounter, 0, i)
Pumps.write(pumpcounter, 1, str([a, b]))
Pumps.write(pumpcounter, 2, (a_lon + b_lon)*0.5)
Pumps.write(pumpcounter, 3, (a_lat + b_lat)*0.5)
#mapping the boundaries of the system
#background plot:
fig, ax = plt.subplots(1, figsize = (50, 50))
#creating building points
#cluster_dict = {}
pump_dict = {}
node_list = []
for i in nodes2:
node_list.append(i[0])
cluster_df=pd.DataFrame(columns=["Building","Latitude","Longitude","Elevation"],\
index=node_list)
map_count = 0
for i in nodes2:
elev=0
#final_elev=0
lat=0
long=0
temp=[]
if type(e[i]) == float:
elev = e[i]
else:
elev = e[i].x
#new_name = i[0:i.index('self')]
lat=float(df.loc[df['n_id'] == i]['lat'])
long=float(df.loc[df['n_id'] == i]['lon'])
if i == outlet_node:
temp=['outlet',lat,long,elev]
else:
temp=[i,lat,long,elev]
cluster_df.loc[i]=temp
clustergdf = gpd.GeoDataFrame(cluster_df, geometry=gpd.points_from_xy(cluster_df.Longitude, cluster_df.Latitude))
#pump locations
pumpLocationsLon = []
pumpLocationsLat = []
pumpNames = []
counter = 0
for i,j in pl:
i_lon = float(df.loc[df['n_id'] == i]['lon'])
i_lat = float(df.loc[df['n_id'] == i]['lat'])
j_lon = float(df.loc[df['n_id'] == j]['lon'])
j_lat = float(df.loc[df['n_id'] == j]['lat'])
if pl[i,j] > 0:
loc_lon = (i_lon + j_lon) * 0.5
loc_lat = (i_lat + j_lat) * 0.5
pumpLocationsLon.append(loc_lon)
pumpLocationsLat.append(loc_lat)
pumpNames.append(counter)
counter += 1
pump_dict["Pump"] = pumpNames
pump_dict["Latitude"] = pumpLocationsLat
pump_dict["Longitude"] = pumpLocationsLon
clusterpump_df = pd.DataFrame(pump_dict)
clusterpumpgdf = gpd.GeoDataFrame(
clusterpump_df, geometry = gpd.points_from_xy(clusterpump_df.Longitude, clusterpump_df.Latitude))
#creating the roadlines
#reads sf files from R code in the spatial features tab
#has to replace lower case C with capital C
clustermultilinelist = []
for i,j in pipeflow.keys():
i_lon = float(df.loc[df['n_id'] == i]['lon'])
i_lat = float(df.loc[df['n_id'] == i]['lat'])
j_lon = float(df.loc[df['n_id'] == j]['lon'])
j_lat = float(df.loc[df['n_id'] == j]['lat'])
frompointlon, frompointlat = i_lon, i_lat
frompoint = Point(frompointlon, frompointlat)
topointlon, topointlat = j_lon, j_lat
topoint = Point(topointlon, topointlat)
line = LineString([frompoint, topoint])
clustermultilinelist.append(line)
clustermultiline = MultiLineString(clustermultilinelist)
driver = ogr.GetDriverByName('Esri Shapefile')
pipelayoutfile = 'MST_STE_press_cluster_' + str(cluster) + 'pipelayout' + '.shp'
ds = driver.CreateDataSource(pipelayoutfile)
layer = ds.CreateLayer('', None, ogr.wkbMultiLineString)
# Add one attribute
layer.CreateField(ogr.FieldDefn('id', ogr.OFTInteger))
defn = layer.GetLayerDefn()
## If there are multiple geometries, put the "for" loop here
# Create a new feature (attribute and geometry)
feat = ogr.Feature(defn)
feat.SetField('id', 123)
# Make a geometry, from Shapely object
geom = ogr.CreateGeometryFromWkb(clustermultiline.wkb)
feat.SetGeometry(geom)
layer.CreateFeature(feat)
feat = geom = None # destroy these
# Save and close everything
ds = layer = feat = geom = None
pipelines = gpd.read_file(pipelayoutfile)
pipelines.plot(ax = ax, color = 'black')
#pipelines = gpd.read_file('C' + clustername[1:] + '.shp')
#pipelines.plot(ax = ax, color = 'black')
clustergdf.plot(ax = ax, column = 'Elevation', legend = True)
clusterpumpgdf.plot(ax = ax, color = "red", marker = '^')
plt.scatter(df.loc[df['n_id'] == outlet_node]['lon'], df.loc[df['n_id'] == outlet_node]['lat'], facecolors = 'None', edgecolors = 'r')
for lat, lon, label in zip(clustergdf.geometry.y, clustergdf.geometry.x, clustergdf.Building):
ax.annotate(label, xy=(lon, lat), xytext=(lon, lat))
plt.show()
wb.save('v2_MINLP_pres_raw.xls')