-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.py
More file actions
53 lines (53 loc) · 1.79 KB
/
Copy pathnode.py
File metadata and controls
53 lines (53 loc) · 1.79 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
# Node coordinates: node_id : [x, y, z]
nodes = {
1: [0.0000, 0.0000, 0.0000],
2: [0.0000, 0.0000, 1.2000],
3: [0.0000, 0.0000, 5.1750],
4: [0.0000, 0.0000, 9.1500],
5: [0.0000, 0.0000, 10.3500],
6: [25.0000, 0.0000, 0.0000],
7: [25.0000, 0.0000, 1.2000],
8: [25.0000, 0.0000, 5.1750],
9: [25.0000, 0.0000, 9.1500],
10: [25.0000, 0.0000, 10.3500],
11: [2.7778, 0.0000, 0.0000],
12: [2.7778, 0.0000, 1.2000],
13: [2.7778, 0.0000, 5.1750],
14: [2.7778, 0.0000, 9.1500],
15: [2.7778, 0.0000, 10.3500],
16: [5.5556, 0.0000, 0.0000],
17: [5.5556, 0.0000, 1.2000],
18: [5.5556, 0.0000, 5.1750],
19: [5.5556, 0.0000, 9.1500],
20: [5.5556, 0.0000, 10.3500],
21: [8.3333, 0.0000, 0.0000],
22: [8.3333, 0.0000, 1.2000],
23: [8.3333, 0.0000, 5.1750],
24: [8.3333, 0.0000, 9.1500],
25: [8.3333, 0.0000, 10.3500],
26: [11.1111, 0.0000, 0.0000],
27: [11.1111, 0.0000, 1.2000],
28: [11.1111, 0.0000, 5.1750],
29: [11.1111, 0.0000, 9.1500],
30: [11.1111, 0.0000, 10.3500],
31: [13.8889, 0.0000, 0.0000],
32: [13.8889, 0.0000, 1.2000],
33: [13.8889, 0.0000, 5.1750],
34: [13.8889, 0.0000, 9.1500],
35: [13.8889, 0.0000, 10.3500],
36: [16.6667, 0.0000, 0.0000],
37: [16.6667, 0.0000, 1.2000],
38: [16.6667, 0.0000, 5.1750],
39: [16.6667, 0.0000, 9.1500],
40: [16.6667, 0.0000, 10.3500],
41: [19.4444, 0.0000, 0.0000],
42: [19.4444, 0.0000, 1.2000],
43: [19.4444, 0.0000, 5.1750],
44: [19.4444, 0.0000, 9.1500],
45: [19.4444, 0.0000, 10.3500],
46: [22.2222, 0.0000, 0.0000],
47: [22.2222, 0.0000, 1.2000],
48: [22.2222, 0.0000, 5.1750],
49: [22.2222, 0.0000, 9.1500],
50: [22.2222, 0.0000, 10.3500]
}