-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompute_vector_rdf.py
executable file
·163 lines (138 loc) · 5.38 KB
/
compute_vector_rdf.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
import rust
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors as clr
import cmasher as cmr
import hickle as hkl
import sys
import os
def cut_circle(r, rad=0.5):
idx = np.nonzero(np.linalg.norm(r,axis=-1)<=rad)
r = np.squeeze(r[idx])
return r
file_path = sys.argv[1]
[dname,file_name] = os.path.split(file_path)
dname = os.path.abspath(dname)
if '.hkl' in file_path:
points = hkl.load(file_path)[:,:-1]
elif '.txt' in file_path:
with open(file_path, 'r') as file:
first_line = file.readline()
# Determine the delimiter based on the first line
if ',' in first_line:
delimiter = ','
elif ' ' in first_line:
delimiter = None
elif "\t" in first_line:
delimiter = None
else:
raise NotImplementedError("Delimiter not identified")
points = np.loadtxt(file_path, delimiter=delimiter)[:,0:2]
elif '.csv' in file_path:
with open(file_path, 'r') as file:
first_line = file.readline()
# Determine the delimiter based on the first line
if ',' in first_line:
delimiter = ','
elif ' ' in first_line:
delimiter = ' '
else:
raise NotImplementedError("Delimiter not identified")
points = np.loadtxt(file_path, delimiter=delimiter)[:,0:3]
else:
print("Wrong file format")
sys.exit()
# points = hkl.load("/home/mathias/Documents/snek/hyperalg-master/HPY2D/phi0.6/a-3.0/HPY2D_phi0.6_a-3.0_N50000000_K5050.0_points_0.hkl")[:,:-1]
points -= np.mean(points)
# points = cut_circle(points, rad=0.01)
points /= np.amax(points)
points *= 0.5
# print(np.amax(points))
# np.savetxt("excerpt_rose.csv", points)
ndim = points.shape[1]
npoints = points.shape[0]
print(ndim)
order = 100
boxsize = 1.0
radius = boxsize / (npoints)**(1.0/ndim)
binsize = radius / 5.0
periodic = False
logscaleplot = False
vmaxmax = 2
if ndim == 2:
# vector_rdf = rust.compute_vector_rdf2d(points, boxsize, binsize, periodic)
vector_rdf, vector_orientation = rust.compute_vector_gyromorphic_corr_2d(points, boxsize, binsize, periodic, order)
elif ndim == 3:
vector_rdf = rust.compute_vector_rdf3d(points, boxsize, binsize, periodic)
nbins = np.ceil(boxsize/binsize)
rho_n = npoints * npoints / ( boxsize * boxsize * boxsize)
vector_rdf /= rho_n * binsize * binsize * binsize
hkl.dump(vector_rdf, file_name+"vector_rdf_test.hkl")
if periodic:
center = int(vector_rdf.shape[0]/2)
width = int(vector_rdf.shape[1]/2)
else:
center = int(vector_rdf.shape[0]/2)
width = int(vector_rdf.shape[1]/2)
fig = plt.figure(figsize=(10,10))
ax = fig.gca()
if logscaleplot:
pc = ax.imshow(vector_rdf[center-width:center+width+1, center-width:center+width+1, center],norm=clr.LogNorm(vmin=1e-3,vmax=1e1), cmap=cmr.ember)
else:
vmax = np.min([vector_rdf.max(), vmaxmax])
pc = ax.imshow(vector_rdf[center-width:center+width+1, center-width:center+width+1, center], vmin = 0, vmax = vmax, cmap=cmr.ember)
fig.colorbar(pc)
plt.savefig(file_name+"_vector_rdf_test.png", dpi = 300)
plt.close()
fig = plt.figure(figsize=(10,10))
ax = fig.gca()
if logscaleplot:
pc = ax.imshow(vector_rdf[center, center-width:center+width+1, center-width:center+width+1],norm=clr.LogNorm(vmin=1e-3,vmax=1e1), cmap=cmr.ember)
else:
vmax = np.min([vector_rdf.max(), vmaxmax])
pc = ax.imshow(vector_rdf[center, center-width:center+width+1, center-width:center+width+1], vmin = 0, vmax = vmax, cmap=cmr.ember)
fig.colorbar(pc)
plt.savefig(file_name+"_vector_rdf_test_bis.png", dpi = 300)
plt.close()
sys.exit()
else:
print("Wrong dimensionality!")
nbins = np.ceil(boxsize/binsize)
rho_n = npoints * npoints / ( boxsize * boxsize)
vector_rdf /= rho_n * binsize * binsize
vector_orientation /= rho_n * binsize * binsize
vector_orientation = np.sum(vector_orientation**2,axis=-1)
np.savetxt(file_name+"vector_rdf_test.csv", vector_rdf)
np.savetxt(file_name+"vector_orientation_test.csv", vector_orientation)
if periodic:
center = int(vector_rdf.shape[0]/2)
width = int(vector_rdf.shape[1]/8)
else:
center = int(vector_rdf.shape[0]/2)
width = int(vector_rdf.shape[1]/16)
fig = plt.figure(figsize=(10,10))
ax = fig.gca()
if logscaleplot:
pc = ax.imshow(vector_rdf[center-width:center+width+1, center-width:center+width+1],norm=clr.LogNorm(vmin=1e-3,vmax=1e1), cmap=cmr.ember)
else:
vmax = np.min([vector_rdf.max(), vmaxmax])
pc = ax.imshow(vector_rdf[center-width:center+width+1, center-width:center+width+1], vmin = 0, vmax = vmax, cmap=cmr.ember)
fig.colorbar(pc)
plt.savefig(file_name+"_vector_rdf_test.png", dpi = 300)
plt.close()
width = int(vector_rdf.shape[1]/10)
fig = plt.figure(figsize=(10,10))
ax = fig.gca()
pc = ax.plot(vector_rdf[center, center-width:center+width+1])
plt.savefig(file_name +"_vector_rdf_test_centerline.png", dpi = 300)
plt.close()
fig = plt.figure(figsize=(10,10))
ax = fig.gca()
if logscaleplot:
pc = ax.imshow(vector_orientation[center-width:center+width+1, center-width:center+width+1],norm=clr.LogNorm(vmin=1e-3,vmax=1e1), cmap=cmr.ember)
else:
vmax = np.min([vector_orientation.max(), vmaxmax])
pc = ax.imshow(vector_orientation[center-width:center+width+1, center-width:center+width+1], vmin = 0, vmax = None, cmap=cmr.ember)
fig.colorbar(pc)
plt.savefig(file_name+"_vector_orientation_test.png", dpi = 300)
plt.close()