-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathplotnodes.py
137 lines (102 loc) · 3.32 KB
/
plotnodes.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
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.text import Text
from mpl_toolkits.mplot3d import Axes3D
from numpy.random import rand
print_lables=True
#print_lables=False
F = False
T = True
nsd = 3
lplot_global_coords = F
lplot_low_order_only = F
plot_edge_nodes = T
plot_face_nodes = F
if nsd == 2:
plot_vol_nodes = F
else:
plot_vol_nodes = F
#
# USER: DO NO TOUCH from here on!
#
plt.close('all')
fig = plt.figure()
ax3d = fig.add_subplot(projection='3d')
ax3d.set_box_aspect(aspect = (1,1,1))
if (lplot_global_coords == True):
coords = np.loadtxt('COORDS_GLOBAL.dat', usecols=range(4))
x=coords[:,0];
y=coords[:,1];
z=coords[:,2];
ip=coords[:,3];
scatter = ax3d.scatter(x, y, z, marker='x', picker=True)
lplot_low_order_only = F
plot_edge_nodes = F
plot_face_nodes = F
if (print_lables == True):
for xcoords, ycoords, zcoords, label in zip(x, y, z, ip):
ax3d.text(xcoords, ycoords, zcoords, int(label))
#
# Load coords
#
# 1) Low order:
#if (lplot_low_order_only == True or nsd < 2):
coords_lo = np.loadtxt('COORDS_LO.dat', usecols=range(4))
x=coords_lo[:,0];
y=coords_lo[:,1];
z=coords_lo[:,2];
ip=coords_lo[:,3];
scatter = ax3d.scatter(x, y, z, marker='o', picker=True)
if (print_lables == True):
for xcoords, ycoords, zcoords, label in zip(x, y, z, ip):
ax3d.text(xcoords, ycoords, zcoords, int(label))
if (plot_edge_nodes == True and nsd >= 2):
# 2) high order edges
if 'x' in globals():
del x, y, z, ip
coords_ho = np.loadtxt('COORDS_HO_edges.dat', usecols=range(4))
x=coords_ho[:,0];
y=coords_ho[:,1];
z=coords_ho[:,2];
ip=coords_ho[:,3];
#ax3d.scatter(x, y, z, marker='x')
line = ax3d.scatter(x, y, z, marker='x', picker=True, pickradius=5) # 5 points tolerance
if (print_lables == True):
for xcoords, ycoords, zcoords, label in zip(x, y, z, ip):
ax3d.text(xcoords, ycoords, zcoords, int(label))
if (plot_face_nodes == True and nsd >= 2):
# 3) high order faces
if 'x' in globals():
del x, y, z, ip
coords_ho = np.loadtxt('COORDS_HO_faces.dat', usecols=range(4))
x=coords_ho[:,0];
y=coords_ho[:,1];
z=coords_ho[:,2];
ip=coords_ho[:,3];
ax3d.scatter(x, y, z, marker='s')
if (print_lables == True):
for xcoords, ycoords, zcoords, label in zip(x, y, z, ip):
ax3d.text(xcoords, ycoords, zcoords, int(label))
if (plot_vol_nodes == True and nsd > 2):
# 4 high order internal
if 'x' in globals():
del x, y, z, ip
coords_ho = np.loadtxt('COORDS_HO_vol.dat', usecols=range(4))
x=coords_ho[:,0];
y=coords_ho[:,1];
z=coords_ho[:,2];
ip=coords_ho[:,3];
ax3d.scatter(x, y, z, marker='s')
if (print_lables == True):
for xcoords, ycoords, zcoords, label in zip(x, y, z, ip):
ax3d.text(xcoords, ycoords, zcoords, int(label))
# Make axes limits
my_aspect_ratio = max(max(x)/max(z), max(x)/max(y))
#ax3d.set_box_aspect((my_aspect_ratio, 1, 1))
xmax = max(x)
xmin = min(x)
eps = 0.1*(xmax - xmin)
#ax3d.axes.set_xlim3d(left=xmin-eps, right=xmax+eps)
#ax3d.axes.set_ylim3d(bottom=min(y)-eps, top=max(y)+eps)
#ax3d.axes.set_zlim3d(bottom=min(z)-eps, top=max(z)+eps)
plt.show()