-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSIAM_ex.jl
223 lines (126 loc) · 5.69 KB
/
SIAM_ex.jl
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
############################################################################################################################
#################################################--- Photoemission ---######################################################
############################################################################################################################
############################################################################################################################
####################################################--- Importing ---#######################################################
############################################################################################################################
using LinearAlgebra #Pacote de Algebra linear
using Random, Distributions # random number's distributions
using BitBasis, Base.Threads # numbers in binary representation
using LaTeXStrings # For LaTex code
############################################################################################################################
#############################################--- Setting the parameters ---################################################
############################################################################################################################
V=0.1 # Hybridization
U=5.0 # Repulsion
E_d=-U/2 # Impurity Energy
L=5 # Bumber of Bath sites
Occ_number=false # Do you want calculate the Occupation number?
############################################################################################################################
#################################################---- Functions ----########################################################
############################################################################################################################
#######################################---- Generating Basis States ----#####################################################
function Basis(L)
#local_states=["vac","up","down","updown"]
#States=[["vac"],["up"],["down"],["updown"]]
local_states=[0,1,2]
States=[[0],[1],[2]]
for l=2:1:L
sup=[]
for st in States
vec=copy(st)
for j=1:1:length(local_states)
push!(sup,push!(vec,local_states[j]))
vec=copy(st)
end
end
States=copy(sup)
end
return States
end
#######################################---- Calculating the Hamiltonian Elements ----###########################################
function Diagonal_mH(State,E_d,U)
local_state=State[1]
if local_state==0
return 0.0
elseif local_state==1
return E_d
elseif local_state==2
return 2.0*E_d+U
end
end
function off_diagonal_mH(State1,State2,V)
dif=findall(State1.!=State2) # Find where the vectors are iqual
if length(dif)==2
if abs(dif[1]-dif[2])==1
if ((State1[dif[1]]+State1[dif[2]])==(State2[dif[1]]+State2[dif[2]])) && abs(State1[dif[1]]-State2[dif[1]])==1 && abs(State1[dif[2]]-State2[dif[2]])==1
if dif[1]==1 || dif[2]==1
return sqrt(2)*V
else
return -1.0
end
else
return 0.0
end
else
return 0.0
end
else
return 0.0
end
end
#############################################---- Calculating the Hamiltonian ----############################################
function mH(Basis_states,E_d,U,V)
mat=zeros(length(Basis_states),length(Basis_states))
for i=1:1:length(Basis_states)
for j=i:1:length(Basis_states)
if i==j
mat[i,i]=Diagonal_mH(Basis_states[i],E_d,U)
else
mat[i,j]=off_diagonal_mH(Basis_states[i],Basis_states[j],V)
mat[j,i]=mat[i,j]
end
end
end
return mat
end
###########################################---- Impurity Occupation Number ----############################################
function n_f(Vec,Basis_states)
n=0.0
for i=1:1:length(Vec)
state=Basis_states[i]
if state[1]==0
N_el=0.0
elseif state[1]==1
# N_el=1.0
N_el=2.0
elseif state[1]==2
N_el=2.0
end
n+=abs2(Vec[i])*N_el
end
return n
end
############################################################################################################################
#########################################---- Main Calculation function ----################################################
############################################################################################################################
function SIAM_ex(L,E_d,U,V,Occ_number)
Basis_states=Basis(L)
H=mH(Basis_states,E_d,U,V)
if Occ_number
E,Vec=eigen(H)
N_imp=n_f(Vec[:,1],Basis_states)
return E[1],N_imp, H
else
E=eigmin(H)
return E, H
end
end
############################################################################################################################
#################################################---- Really Calculation ----###############################################
############################################################################################################################
if Occ_number
@time e0,nf,H=SIAM_ex(L,E_d,U,V,Occ_number)
else
@time e0,H=SIAM_ex(L,E_d,U,V,Occ_number)
end