-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_plot.py
784 lines (722 loc) · 29.6 KB
/
new_plot.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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
import json
import os
import random
import networkx as nx
import grn_endpoint.grn_info
import users_endpoint.users
import move_endpoint.movement
import pandas as pd
import matplotlib.pyplot as plt
# Command python or python3
command = "python3"
# User generation Script
script = "user_secnario_producer.py"
# Maximum number of iterations
max_iter = 1
# Area Size
N = 0
M = 0
# UAV Communication threshold
UAV_to_UAV_threshold = 0
radius_UAV = 0
# Cell size of each subgrid
cell_size = 0
# Nodes to remove
nodes_rem_lst = []
# Flag variable
flag = True
# Global dictionaries
UAV_location_clone = {}
UAV_location_clone1 = {}
UAV_location_main = {}
UAV_location_baseline = {}
# Global Count Variables
nodes_main = 0
nodes_baseline = 0
nodes_baseline2 = 0
nodes_baseline3 = 0
def similarity_criteria(UAV_G):
"""
Function:similarity_criteria\n
Parameter: UAV_G -> Current UAV graph\n
Returns: A tuple of common edges, uncommon edges and edges which are in grn graph. Dictionary of reverse mapping is also returned\n
"""
grn_node_lst = [grn_endpoint.grn_info.m(node) for node in UAV_G.nodes]
reverse_mapping = {}
for node in UAV_G.nodes:
if grn_endpoint.grn_info.m(node) not in reverse_mapping:
reverse_mapping[grn_endpoint.grn_info.m(node)] = node
uncommon_lst = []
common_lst = []
grn_graph = grn_endpoint.grn_info.get_grn_graph()
grn_SG = grn_graph.subgraph(grn_node_lst)
grn_edge_lst = []
for edge in grn_SG.edges:
u, v = edge
if (u, v) not in grn_edge_lst and (v, u) not in grn_edge_lst:
grn_edge_lst.append((u, v))
for edge in grn_edge_lst:
u, v = edge
if (reverse_mapping[u], reverse_mapping[v]) in UAV_G.edges or (reverse_mapping[v], reverse_mapping[u]) in UAV_G.edges:
if (reverse_mapping[u], reverse_mapping[v]) not in common_lst and (reverse_mapping[v], reverse_mapping[u]) not in common_lst:
common_lst.append((reverse_mapping[u], reverse_mapping[v]))
else:
if (reverse_mapping[u], reverse_mapping[v]) not in uncommon_lst and (reverse_mapping[v], reverse_mapping[u]) not in uncommon_lst:
uncommon_lst.append((reverse_mapping[u], reverse_mapping[v]))
# return (common_lst, uncommon_lst, grn_edge_lst, reverse_mapping)
return common_lst
def get_user_location(parent_dir):
"""
Function: get_user_location\n
Parameter: parent_dir -> path of current dir\n
Returns: Returns list of x and y coordinates of ground users\n
"""
dir_name = 'input_files'
file_name = 'user_input.json'
user_input = {}
with open(os.path.join(parent_dir, dir_name, file_name), 'r') as file_pointer:
user_input = json.load(file_pointer)
pos = user_input['Position of Ground users']
x = []
y = []
for item in pos:
a, b = map(float, item.split(' '))
x.append(a)
y.append(b)
return (x, y)
def plot_graph(UAV_G, UAV_location, file_name, plot_label, x_label, y_label, flag):
"""
Function: plot_graph\n
Parameters: UAV_G -> UAV network, UAV_location -> Coordinates of each UAV, file_name -> name of the file, plot_label -> title of the plot, x_label -> x label of the plot, y_label -> y label of the plot, flag -> which plot to draw\n
Functionality: Saves the Corresponding graph\n
"""
global radius_UAV
plt.clf()
g_x, g_y = get_user_location(os.getcwd())
plt.scatter(g_x, g_y, color='gray')
UAV_x = []
UAV_y = []
rad = int(radius_UAV // cell_size) + 1
for node, loc in UAV_location.items():
a, b = loc
UAV_x.append(a)
UAV_y.append(b)
c = plt.Circle((a, b), rad, color='green', fill=False)
ax = plt.gca()
ax.add_artist(c)
plt.scatter(UAV_x, UAV_y, color='blue')
for idx in range(len(UAV_x)):
plt.annotate(f'{idx + 1}', (UAV_x[idx], UAV_y[idx]), color='black')
if flag:
for edge in UAV_G.edges:
edge_x = []
edge_y = []
a, b = edge
loc_a = UAV_location[a]
loc_b = UAV_location[b]
x1, y1 = loc_a
x2, y2 = loc_b
edge_x = [x1, x2]
edge_y = [y1, y2]
plt.plot(edge_x, edge_y, color='blue')
common_lst = similarity_criteria(UAV_G)
for edge in common_lst:
edge_x = []
edge_y = []
a, b = edge
loc_a = UAV_location[a]
loc_b = UAV_location[b]
x1, y1 = loc_a
x2, y2 = loc_b
edge_x = [x1, x2]
edge_y = [y1, y2]
plt.plot(edge_x, edge_y, color='red')
else:
for edge in UAV_G.edges:
edge_x = []
edge_y = []
a, b = edge
loc_a = UAV_location[a]
loc_b = UAV_location[b]
x1, y1 = loc_a
x2, y2 = loc_b
edge_x = [x1, x2]
edge_y = [y1, y2]
plt.plot(edge_x, edge_y, color='black')
plt.title(plot_label, fontweight="bold")
plt.xlabel(x_label, fontweight='bold')
plt.ylabel(y_label, fontweight='bold')
plt.savefig(os.path.join(os.getcwd(), 'node_failures_plots', file_name))
def get_UAV_graph(UAV_location):
"""
Function: get_UAV_graph\n
Parameters: UAV_location -> list of groun users placed along with their locations\n:
Returns: UAV graph at a particular point of time\n
"""
global UAV_to_UAV_threshold, cell_size
placed = [node for node, loc in UAV_location.items()]
UAV_G = nx.Graph()
for node in placed:
UAV_G.add_node(node)
for node1 in placed:
for node2 in placed:
if move_endpoint.movement.get_euc_dist(UAV_location[node1], UAV_location[node2]) <= int(UAV_to_UAV_threshold // cell_size) and node1 != node2:
UAV_G.add_edge(node1, node2)
return UAV_G
def get_motif_count(UAV_G):
"""
Function: get_motif_count\n
Parameters: UAV_G -> UAV graph\n
Returns: mean of the motif count of nodes\n
"""
return sum(nx.triangles(UAV_G).values()) / 3
def get_network_efficiency(placed, UAV_location, UAV_G):
"""
Function: get_network_efficiency\n
Parameters: placed -> list of placed UAVs, UAV_location -> Dictionary of placed UAVs along with their Locations, UAV_G -> UAV_graph\n
Returns: Network Efficiency of the network
"""
return nx.global_efficiency(UAV_G)
def get_connected_componets(UAV_G):
"""
Function: get_connected_components\n
Parameter: UAV_G -> UAV graph\n
Returns: Number of connected components in the graph\n
"""
return nx.number_connected_components(UAV_G)
def no_nodes_in_largest_connected_component(UAV_G):
"""
Function: no_nodes_in_largest_connected_component\n
Parameter: UAV_G -> UAV graph\n
Returns: Number of nodes in the largest connected components in the graph\n
"""
len_cc = [len(UAV_G.subgraph(c)) for c in nx.connected_components(UAV_G)]
if len_cc:
return max(len_cc)
else:
return 0
def ground_user_coverage(UAV_location):
"""
Function: ground_user_coverage\n
Parameter: UAV_location -> Dictionary of placed UAVs along with their locations\n
Reutrns: Ground users coverage percentage\n
"""
ground_users = users_endpoint.users.get_number_ground_users()
user_served = set()
for node, loc in UAV_location.items():
loc = (loc[0], loc[1])
user_list = users_endpoint.users.get_users_cell_connections(loc)
for user in user_list:
user_served.add(user)
return len(user_served) / ground_users
def parse_input_graph(file_name, dir_name):
"""
Function: parse_input_graph\n
Parameters: file_name -> graph_input file, dir_name -> directory of the file\n
Returns: UAV_location dictionary and placed list\n
"""
UAV_location = {}
with open(os.path.join(dir_name, file_name), 'r') as file_pointer:
UAV_location = json.load(file_pointer)
UAV_loc = {}
for node, loc in UAV_location.items():
UAV_loc[int(node)] = (loc[0], loc[1])
placed = [node for node in UAV_loc]
return (UAV_loc, placed)
def add_UAVs(x, UAV_location):
"""
Function: add_UAVs\n
Parameter: x -> The number of UAVs to add, UAV_location -> Current state of the UAVs\n
Returns -> Updated State of the UAVs and placed list\n
"""
global N, M
placed = [node for node, loc in UAV_location.items()]
reserved_locations = [loc for node, loc in UAV_location.items()]
locations = []
while len(locations) < x:
a = random.randint(0, N)
b = random.randint(0, M)
if (a, b) not in reserved_locations:
locations.append((a, b))
for loc in locations:
key = int(placed[-1]) + 1
if key not in UAV_location:
UAV_location[key] = loc
else:
UAV_location[key] = loc
placed.append(key)
placed = [node for node, loc in UAV_location.items()]
return UAV_location, placed
def remove_UAVs(x, UAV_location):
"""
Function: remove_UAVs\n
Parameter: x -> The number of UAVs to remove, UAV_location -> Scenario of UAVs to remove\n
Functionality: remove x UAVs from the network randomly\n
"""
len_old = len(UAV_location)
diff = len_old - x
if diff < 0:
diff = 0
while len(UAV_location) > diff:
placed = [node for node, loc in UAV_location.items()]
rem = placed[random.randint(0, len(placed) - 1)]
UAV_location.pop(rem)
placed = [node for node, loc in UAV_location.items()]
return UAV_location, placed
def process_baseline2(UAV_location_main, UAV_location_baseline):
"""
Function: process_baseline2\n
Parameters: UAV_location_main -> UAVs position in the main approach, UAV_location_baseline -> UAVs position in the baseline approach\n
Returns: Modified UAV_location and placed list\n
"""
len_main = len(UAV_location_main)
len_baseline = len(UAV_location_baseline)
if len_main > len_baseline:
return add_UAVs(len_main - len_baseline, UAV_location_baseline)
else:
return remove_UAVs(len_baseline - len_main, UAV_location_baseline)
def process_baseline3(UAV_location_main, UAV_location_baseline):
"""
Function: process_baseline3\n
Parameters: UAV_location_main -> UAVs position in the main approach, UAV_location_baseline -> UAVs position in the baseline approach\n
Returns: Modified UAV_location and placed list\n
"""
len_main = len(UAV_location_main)
len_baseline = len(UAV_location_baseline)
if len_baseline >= int(1.5 * len_main):
return remove_UAVs(len_baseline - (1.5 * len_main), UAV_location_baseline)
else:
return add_UAVs((1.5 * len_main) - len_baseline, UAV_location_baseline)
def run(i):
"""
Function: run\n
Parameter: i -> index of the precentage to delete\n
Functionality: Runs all the four simulations\n
"""
global flag, nodes_rem_lst, nodes_baseline, nodes_main, nodes_baseline2, nodes_baseline3
global UAV_location_clone, UAV_location_clone1, UAV_location_baseline, UAV_location_main
parent_dir = os.getcwd()
file_num = len([name for name in os.listdir(
os.path.join(parent_dir, 'node_failures_plots'))])
file_num //= 4
dir_name = 'graph_output_files'
if flag:
UAV_location_baseline, placed = parse_input_graph(
'output_baseline1.json', os.path.join(parent_dir, dir_name))
nodes_baseline = len(UAV_location_baseline)
for node, loc in UAV_location_baseline.items():
UAV_location_clone[node] = loc
UAV_location_clone1[node] = loc
if i == 0:
x = int(nodes_baseline * nodes_rem_lst[i])
UAV_location, placed = remove_UAVs(x, UAV_location_baseline)
else:
y = int(nodes_baseline * nodes_rem_lst[i - 1])
x = int(nodes_baseline * nodes_rem_lst[i])
x = abs(x - y)
UAV_location, placed = remove_UAVs(x, UAV_location_baseline)
UAV_G = get_UAV_graph(UAV_location)
mx = no_nodes_in_largest_connected_component(UAV_G)
mc = get_motif_count(UAV_G)
cc = get_connected_componets(UAV_G)
guser = ground_user_coverage(UAV_location)
ne = get_network_efficiency(placed, UAV_location, UAV_G)
ret_val1 = (mc, cc, guser, ne, mx)
plot_graph(UAV_G, UAV_location, f'EMST_{file_num}_(0).png',
f'Baseline with {nodes_rem_lst[i] * 100}% removal', 'N', 'M', False)
if flag:
UAV_location_main, placed = parse_input_graph(
'output_main2.json', os.path.join(parent_dir, dir_name))
nodes_main = len(UAV_location_main)
nodes_baseline2 = nodes_main
nodes_baseline3 = int(nodes_main * 1.5)
flag = False
if i == 0:
x = int(nodes_main * nodes_rem_lst[i])
UAV_location, placed = remove_UAVs(x, UAV_location_main)
else:
y = int(nodes_main * nodes_rem_lst[i - 1])
x = int(nodes_main * nodes_rem_lst[i])
x = abs(x - y)
UAV_location, placed = remove_UAVs(x, UAV_location_main)
UAV_G = get_UAV_graph(UAV_location)
mx = no_nodes_in_largest_connected_component(UAV_G)
mc = get_motif_count(UAV_G)
cc = get_connected_componets(UAV_G)
guser = ground_user_coverage(UAV_location)
ne = get_network_efficiency(placed, UAV_location, UAV_G)
ret_val2 = (mc, cc, guser, ne, mx)
plot_graph(UAV_G, UAV_location, f'Proposed_{file_num}.png',
f'Main with {nodes_rem_lst[i] * 100}% removal', 'N', 'M', True)
if i == 0:
x = int(nodes_baseline2 * nodes_rem_lst[i])
UAV_location_baseline2, placed = process_baseline2(
UAV_location_main, UAV_location_clone)
UAV_location, placed = remove_UAVs(x, UAV_location_baseline2)
else:
y = int(nodes_baseline2 * nodes_rem_lst[i - 1])
x = int(nodes_baseline2 * nodes_rem_lst[i])
x = abs(x - y)
UAV_location_baseline2, placed = process_baseline2(
UAV_location_main, UAV_location_clone)
UAV_location, placed = remove_UAVs(x, UAV_location_baseline2)
UAV_G = get_UAV_graph(UAV_location)
mc = get_motif_count(UAV_G)
mx = no_nodes_in_largest_connected_component(UAV_G)
cc = get_connected_componets(UAV_G)
guser = ground_user_coverage(UAV_location)
ne = get_network_efficiency(placed, UAV_location, UAV_G)
ret_val3 = (mc, cc, guser, ne, mx)
plot_graph(UAV_G, UAV_location, f'EMST_{file_num}_(1).png',
f'Baseline2 with {nodes_rem_lst[i] * 100}% removal', 'N', 'M', False)
if i == 0:
x = int(nodes_baseline3 * nodes_rem_lst[i])
UAV_location_baseline3, placed = process_baseline3(
UAV_location_main, UAV_location_clone1)
UAV_location, placed = remove_UAVs(x, UAV_location_baseline3)
else:
y = int(nodes_baseline3 * nodes_rem_lst[i - 1])
x = int(nodes_baseline3 * nodes_rem_lst[i])
x = abs(x - y)
UAV_location_baseline3, placed = process_baseline3(
UAV_location_main, UAV_location_clone1)
UAV_location, placed = remove_UAVs(x, UAV_location_baseline3)
UAV_G = get_UAV_graph(UAV_location)
mc = get_motif_count(UAV_G)
mx = no_nodes_in_largest_connected_component(UAV_G)
cc = get_connected_componets(UAV_G)
guser = ground_user_coverage(UAV_location)
ne = get_network_efficiency(placed, UAV_location, UAV_G)
ret_val4 = (mc, cc, guser, ne, mx)
plot_graph(UAV_G, UAV_location, f'EMST_{file_num}_(1.5).png',
f'Baseline3 with {nodes_rem_lst[i] * 100}% removal', 'N', 'M', False)
return (ret_val1, ret_val2, ret_val3, ret_val4)
def process_output(baseline_dict, main_dict, baseline2_dict, baseline3_dict):
"""
Function: process_output\n
Parameters: baseline_dict -> output of baseline, main_dict -> output of main, baseline2_dict -> output of baseline2, baseline3_dict -> output of baseline3
"""
for x, ret_val_lst in baseline_dict.items():
mc = []
cc = []
guser = []
ne = []
mx = []
for ret_val in ret_val_lst:
m, c, g, n, l = ret_val
mc.append(m)
cc.append(c)
guser.append(g)
ne.append(n)
mx.append(l)
baseline_dict[x] = [([pd.DataFrame(mc).describe()[0]['mean'], pd.DataFrame(mc).describe()[0]['75%'], pd.DataFrame(mc).describe()[0]['std'], pd.DataFrame(mc).describe()[0]['50%']], [pd.DataFrame(cc).describe()[
0]['75%'], pd.DataFrame(cc).describe()[
0]['mean'], pd.DataFrame(cc).describe()[
0]['50%'], pd.DataFrame(cc).describe()[
0]['std']], [pd.DataFrame(guser).describe()[0]['75%'], pd.DataFrame(guser).describe()[0]['mean'], pd.DataFrame(guser).describe()[0]['50%'], pd.DataFrame(guser).describe()[0]['std']], [pd.DataFrame(ne).describe()[0]['75%'], pd.DataFrame(ne).describe()[0]['mean'], pd.DataFrame(ne).describe()[0]['50%'], pd.DataFrame(ne).describe()[0]['std']], [pd.DataFrame(mx).describe()[
0]['75%'], pd.DataFrame(mx).describe()[
0]['mean'], pd.DataFrame(mx).describe()[
0]['50%'], pd.DataFrame(mx).describe()[
0]['std']])]
for x, ret_val_lst in main_dict.items():
mc = []
cc = []
guser = []
ne = []
mx = []
for ret_val in ret_val_lst:
m, c, g, n, l = ret_val
mc.append(m)
cc.append(c)
guser.append(g)
ne.append(n)
mx.append(l)
main_dict[x] = [([pd.DataFrame(mc).describe()[0]['mean'], pd.DataFrame(mc).describe()[0]['75%'], pd.DataFrame(mc).describe()[0]['std'], pd.DataFrame(mc).describe()[0]['50%']], [pd.DataFrame(cc).describe()[
0]['75%'], pd.DataFrame(cc).describe()[
0]['mean'], pd.DataFrame(cc).describe()[
0]['50%'], pd.DataFrame(cc).describe()[
0]['std']], [pd.DataFrame(guser).describe()[0]['75%'], pd.DataFrame(guser).describe()[0]['mean'], pd.DataFrame(guser).describe()[0]['50%'], pd.DataFrame(guser).describe()[0]['std']], [pd.DataFrame(ne).describe()[0]['75%'], pd.DataFrame(ne).describe()[0]['mean'], pd.DataFrame(ne).describe()[0]['50%'], pd.DataFrame(ne).describe()[0]['std']], [pd.DataFrame(mx).describe()[
0]['75%'], pd.DataFrame(mx).describe()[
0]['mean'], pd.DataFrame(mx).describe()[
0]['50%'], pd.DataFrame(mx).describe()[
0]['std']])]
for x, ret_val_lst in baseline2_dict.items():
mc = []
cc = []
guser = []
ne = []
mx = []
for ret_val in ret_val_lst:
m, c, g, n, l = ret_val
mc.append(m)
cc.append(c)
guser.append(g)
ne.append(n)
mx.append(l)
baseline2_dict[x] = [([pd.DataFrame(mc).describe()[0]['mean'], pd.DataFrame(mc).describe()[0]['75%'], pd.DataFrame(mc).describe()[0]['std'], pd.DataFrame(mc).describe()[0]['50%']], [pd.DataFrame(cc).describe()[
0]['75%'], pd.DataFrame(cc).describe()[
0]['mean'], pd.DataFrame(cc).describe()[
0]['50%'], pd.DataFrame(cc).describe()[
0]['std']], [pd.DataFrame(guser).describe()[0]['75%'], pd.DataFrame(guser).describe()[0]['mean'], pd.DataFrame(guser).describe()[0]['50%'], pd.DataFrame(guser).describe()[0]['std']], [pd.DataFrame(ne).describe()[0]['75%'], pd.DataFrame(ne).describe()[0]['mean'], pd.DataFrame(ne).describe()[0]['50%'], pd.DataFrame(ne).describe()[0]['std']], [pd.DataFrame(mx).describe()[
0]['75%'], pd.DataFrame(mx).describe()[
0]['mean'], pd.DataFrame(mx).describe()[
0]['50%'], pd.DataFrame(mx).describe()[
0]['std']])]
for x, ret_val_lst in baseline3_dict.items():
mc = []
cc = []
guser = []
ne = []
mx = []
for ret_val in ret_val_lst:
m, c, g, n, l = ret_val
mc.append(m)
cc.append(c)
guser.append(g)
ne.append(n)
mx.append(l)
baseline3_dict[x] = [([pd.DataFrame(mc).describe()[0]['mean'], pd.DataFrame(mc).describe()[0]['75%'], pd.DataFrame(mc).describe()[0]['std'], pd.DataFrame(mc).describe()[0]['50%']], [pd.DataFrame(cc).describe()[
0]['75%'], pd.DataFrame(cc).describe()[
0]['mean'], pd.DataFrame(cc).describe()[
0]['50%'], pd.DataFrame(cc).describe()[
0]['std']], [pd.DataFrame(guser).describe()[0]['75%'], pd.DataFrame(guser).describe()[0]['mean'], pd.DataFrame(guser).describe()[0]['50%'], pd.DataFrame(guser).describe()[0]['std']], [pd.DataFrame(ne).describe()[0]['75%'], pd.DataFrame(ne).describe()[0]['mean'], pd.DataFrame(ne).describe()[0]['50%'], pd.DataFrame(ne).describe()[0]['std']], [pd.DataFrame(mx).describe()[
0]['75%'], pd.DataFrame(mx).describe()[
0]['mean'], pd.DataFrame(mx).describe()[
0]['50%'], pd.DataFrame(mx).describe()[
0]['std']])]
draw_plot(baseline_dict, main_dict, baseline2_dict, baseline3_dict)
def draw_plot(baseline_dict, main_dict, baseline2_dict, baseline3_dict):
"""
Function: draw_plot\n
Parameters: baseline_dict -> Processed values of baseline_dict, main_dict -> Processed values of main_dict, baseline2_dict -> Processed values of baseline2_dict, baseline3_dict -> Processed values of baseline3_dict\n
Functionality: Draws the plot\n
"""
overall_dict = {
"Baseline": baseline_dict,
"Main": main_dict,
"Baseline2": baseline2_dict,
"Baseline3": baseline3_dict
}
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
with open(os.path.join(parent_dir, dir_name, 'new_plot_output.json'), 'w') as file_pointer:
json.dump(overall_dict, file_pointer)
x_axis = [x for x, ret_val in baseline_dict.items()]
b_mc_y = []
m_mc_y = []
b2_mc_y = []
b3_mc_y = []
for x in baseline_dict:
b_mc_y.append(baseline_dict[x][0][0][0])
m_mc_y.append(main_dict[x][0][0][0])
b2_mc_y.append(baseline2_dict[x][0][0][0])
b3_mc_y.append(baseline3_dict[x][0][0][0])
plt.scatter(x_axis, b_mc_y)
plt.plot(x_axis, b_mc_y, label=f'Baseline')
plt.scatter(x_axis, m_mc_y)
plt.plot(x_axis, m_mc_y, label=f'Main')
plt.scatter(x_axis, b2_mc_y)
plt.plot(x_axis, b2_mc_y, label=f'Baseline2')
plt.scatter(x_axis, b3_mc_y)
plt.plot(x_axis, b3_mc_y, label=f'Baseline3')
plt.legend()
plt.title('Motif Count Vs Number of UAV Removed', fontweight="bold")
plt.xlabel('Number of UAV to remove', fontweight='bold')
plt.ylabel('Average Motif Count', fontweight='bold')
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
file_name = 'MotifvsUAVremoved'
plt.savefig(os.path.join(parent_dir, dir_name, file_name))
plt.clf()
b_cc_y = []
m_cc_y = []
b2_cc_y = []
b3_cc_y = []
for x in baseline_dict:
b_cc_y.append(baseline_dict[x][0][1][0])
m_cc_y.append(main_dict[x][0][1][0])
b2_cc_y.append(baseline2_dict[x][0][1][0])
b3_cc_y.append(baseline3_dict[x][0][1][0])
plt.scatter(x_axis, b_cc_y)
plt.plot(x_axis, b_cc_y, label=f'Baseline')
plt.scatter(x_axis, m_cc_y)
plt.plot(x_axis, m_cc_y, label=f'Main')
plt.scatter(x_axis, b2_cc_y)
plt.plot(x_axis, b2_cc_y, label=f'Baseline2')
plt.scatter(x_axis, b3_cc_y)
plt.plot(x_axis, b3_cc_y, label=f'Baseline3')
plt.legend()
plt.title('Connected Components Vs Number of UAV Removed', fontweight="bold")
plt.xlabel('Number of UAV to remove', fontweight='bold')
plt.ylabel('Number of Connected Components', fontweight='bold')
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
file_name = 'ConnectedvsUAVremoved'
plt.savefig(os.path.join(parent_dir, dir_name, file_name))
plt.clf()
b_gu_y = []
m_gu_y = []
b2_gu_y = []
b3_gu_y = []
for x in baseline_dict:
b_gu_y.append(baseline_dict[x][0][2][0])
m_gu_y.append(main_dict[x][0][2][0])
b2_gu_y.append(baseline2_dict[x][0][2][0])
b3_gu_y.append(baseline3_dict[x][0][2][0])
plt.scatter(x_axis, b_gu_y)
plt.plot(x_axis, b_gu_y, label=f'Baseline')
plt.scatter(x_axis, m_gu_y)
plt.plot(x_axis, m_gu_y, label=f'Main')
plt.scatter(x_axis, b2_gu_y)
plt.plot(x_axis, b2_gu_y, label=f'Baseline2')
plt.scatter(x_axis, b3_gu_y)
plt.plot(x_axis, b3_gu_y, label=f'Baseline3')
plt.legend()
plt.title('Ground User percentage Vs Number of UAV Removed',
fontweight="bold")
plt.xlabel('Number of UAV to remove', fontweight='bold')
plt.ylabel('Ground User percentage', fontweight='bold')
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
file_name = 'Ground_user_coveragevsUAVremoved'
plt.savefig(os.path.join(parent_dir, dir_name, file_name))
plt.clf()
b_ne_y = []
m_ne_y = []
b2_ne_y = []
b3_ne_y = []
for x in baseline_dict:
b_ne_y.append(baseline_dict[x][0][3][0])
m_ne_y.append(main_dict[x][0][3][0])
b2_ne_y.append(baseline2_dict[x][0][3][0])
b3_ne_y.append(baseline3_dict[x][0][3][0])
plt.scatter(x_axis, b_ne_y)
plt.plot(x_axis, b_ne_y, label=f'Baseline')
plt.scatter(x_axis, m_ne_y)
plt.plot(x_axis, m_ne_y, label=f'Main')
plt.scatter(x_axis, b2_ne_y)
plt.plot(x_axis, b2_ne_y, label=f'Baseline2')
plt.scatter(x_axis, b3_ne_y)
plt.plot(x_axis, b3_ne_y, label=f'Baseline3')
plt.legend()
plt.title('Network Efficiency Vs Number of UAV Removed', fontweight="bold")
plt.xlabel('Number of UAV to remove', fontweight='bold')
plt.ylabel('Network Efficiency', fontweight='bold')
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
file_name = 'NetworkEfficiencyvsUAVremoved'
plt.savefig(os.path.join(parent_dir, dir_name, file_name))
plt.clf()
b_mx_y = []
m_mx_y = []
b2_mx_y = []
b3_mx_y = []
for x in baseline_dict:
b_mx_y.append(baseline_dict[x][0][4][0])
m_mx_y.append(main_dict[x][0][4][0])
b2_mx_y.append(baseline2_dict[x][0][4][0])
b3_mx_y.append(baseline3_dict[x][0][4][0])
plt.scatter(x_axis, b_mx_y)
plt.plot(x_axis, b_mx_y, label=f'Baseline')
plt.scatter(x_axis, m_mx_y)
plt.plot(x_axis, m_mx_y, label=f'Main')
plt.scatter(x_axis, b2_mx_y)
plt.plot(x_axis, b2_mx_y, label=f'Baseline2')
plt.scatter(x_axis, b3_mx_y)
plt.plot(x_axis, b3_mx_y, label=f'Baseline3')
plt.legend()
plt.title(
'Nodes in largest connected component Vs Number of UAV Removed', fontweight="bold")
plt.xlabel('Number of UAV to remove', fontweight='bold')
plt.ylabel('Node in largest connected component', fontweight='bold')
parent_dir = os.getcwd()
dir_name = 'analysis_output_files'
file_name = 'NodeslargestccvsUAVremoved'
plt.savefig(os.path.join(parent_dir, dir_name, file_name))
plt.clf()
def simulate_plot_making():
"""
Function: simulate_plot_making\n
Parameter: None\n
Functionality: Simulate the plot making process\n
"""
global nodes_rem_lst
baseline_dict = {}
main_dict = {}
baseline2_dict = {}
baseline3_dict = {}
global flag
global UAV_location_clone, UAV_location_clone1, UAV_location_main, UAV_location_baseline
for _ in range(max_iter):
os.system(f'bash fresh_analysis.sh')
os.system(f'{command} {script}')
os.system(f'{command} baseline.py')
os.system(f'{command} main.py')
flag = True
UAV_location_clone = {}
UAV_location_clone1 = {}
UAV_location_baseline = {}
UAV_location_main = {}
for i in range(len(nodes_rem_lst)):
x = nodes_rem_lst[i]
r1, r2, r3, r4 = run(i)
if x not in baseline_dict:
baseline_dict[x] = [r1]
else:
baseline_dict[x].append(r1)
if x not in main_dict:
main_dict[x] = [r2]
else:
main_dict[x].append(r2)
if x not in baseline2_dict:
baseline2_dict[x] = [r3]
else:
baseline2_dict[x].append(r3)
if x not in baseline3_dict:
baseline3_dict[x] = [r4]
else:
baseline3_dict[x].append(r4)
process_output(baseline_dict, main_dict, baseline2_dict, baseline3_dict)
def init():
"""
Function: init
Functionality: Sets all the global variables
"""
global UAV_to_UAV_threshold, cell_size, nodes_rem_lst, N, M, radius_UAV
parent_dir = os.getcwd()
parent_dir = os.getcwd()
folder_name = 'input_files'
file_name = 'scenario_input.json'
file_path = os.path.join(parent_dir, folder_name, file_name)
with open(file_path, 'r') as file_pointer:
file_data = json.load(file_pointer)
UAV_to_UAV_threshold = file_data['UAV_to_UAV_threshold']
cell_size = file_data['cell_size']
unit_mul = file_data['unit_multiplier']
radius_UAV = file_data['radius_UAV']
N = file_data['N']
M = file_data['M']
UAV_to_UAV_threshold *= unit_mul
cell_size *= unit_mul
radius_UAV *= unit_mul
file_name = 'new_plot.json'
file_path = os.path.join(parent_dir, folder_name, file_name)
with open(file_path, 'r') as file_pointer:
file_data = json.load(file_pointer)
nodes_rem_lst = file_data['Nodes']
users_endpoint.users.init()
grn_endpoint.grn_info.init()
simulate_plot_making()
if __name__ == "__main__":
dir_path = os.path.join(os.getcwd(), 'analysis_output_files')
try:
os.mkdir(dir_path)
except OSError as error:
pass
dir_path = os.path.join(os.getcwd(), 'node_failures_plots')
try:
os.mkdir(dir_path)
except OSError as error:
pass
print(f'Relax!! we have taken the charge. (-_-)')
init()