-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheigenVal_plotter.py
78 lines (61 loc) · 2.23 KB
/
eigenVal_plotter.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
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 25 15:07:04 2024
@author: evanp
"""
import matplotlib.pyplot as plt
# Function to format labels with subscript
def format_label(label):
base, subscript = label.split('_')
return f"{base}$_{{{subscript}}}$"
data = r"./eigenVal.txt"
# data = r"./eigenVal2.csv"
f = open(data)
eigenVal = f.readlines()
for i in range(0, len(eigenVal)):
eigenVal[i] = eigenVal[i].split()
numberOfDefects = 9
band = []
occupancy = []
i = 1
k = 1
total = 1
dotSize = 100
plt.subplots(1,numberOfDefects, figsize=(12,4))
while (i < len(eigenVal)):
title = eigenVal[i][2]
title = format_label(title)
while(eigenVal[i]):
band.append(float(eigenVal[i][0]))
occupancy.append(float(eigenVal[i][1]))
total = total + 1
i = i + 1
plt.subplot(1,numberOfDefects,k)
plt.tick_params(labelbottom=False,bottom=False, top=False, labeltop=False, labelright=False, labelleft=False, left=False, right=False)
vbm = band[0]
for j in range(1, len(band) - 1):
band[j] = band[j] - vbm
if(occupancy[j] < 0.2):
plt.axhline(band[j], color = 'black')
plt.scatter([0.25, 0.75], [band[j], band[j]], facecolors='white', edgecolors='black', zorder = 3, s = dotSize)
elif(occupancy[j] > 0.8):
plt.axhline(band[j], color = 'black')
plt.scatter([0.25, 0.75], [band[j], band[j]], color = 'black', zorder = 3, s = dotSize)
else:
filledState = float(eigenVal[i - (len(band) - j)][2]) - vbm
emptyState = float(eigenVal[i - (len(band) - j)][3]) - vbm
plt.axhline(filledState, color = 'black', xmax = 0.5)
plt.axhline(emptyState, color = 'black', xmin = 0.5)
plt.scatter(0.25, filledState, color='black', zorder = 3, s = dotSize)
plt.scatter(0.75, emptyState, facecolors='white', edgecolors='black', zorder = 3, s = dotSize)
plt.plot([0.5,0.5], [filledState, emptyState], color = 'black', linestyle = 'dashed')
plt.xlabel(title, fontsize = 12)
plt.xlim(0,1)
plt.ylim(0, band[len(band) - 1] - vbm)
k = k + 1
band = []
occupancy = []
i = i + 1
total = total + 1
plt.savefig("eigenvalplot.png")
plt.show()