Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
forum:data:2020:stranger_things [2020/01/07 18:57] – Created from the form at forum:start Riccardo Piombo | forum:data:2020:stranger_things [2020/01/07 20:21] (current) – Maurits W. Haverkort | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
;;# | ;;# | ||
asked by [[mailto: | asked by [[mailto: | ||
Line 6: | Line 6: | ||
<WRAP center box 100%> | <WRAP center box 100%> | ||
Hi every one, | Hi every one, | ||
- | I wrote a simple code to calculate the chemical potential for the addition and for the removal of a particle. The system under consideration is a planar D4h structure composed | + | I wrote a simple code to calculate the chemical potential for the addition and for the removal of a particle. The system under consideration is a planar D4h structure composed |
---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ||
- | "Verbosity(0) | + | < |
+ | |||
+ | Verbosity(0) | ||
NF=20 | NF=20 | ||
Line 30: | Line 32: | ||
TdLb1g = 2.6 | TdLb1g = 2.6 | ||
- | -- Racah parameters | + | -- Racah parameters |
B = 0.09 | B = 0.09 | ||
C = 0.54 | C = 0.54 | ||
-- Slater-Koster integrals for monopole and | -- Slater-Koster integrals for monopole and | ||
- | -- multipole part of Coulomb interaction | + | -- multipole part of Coulomb interaction |
F2dd = 49.0*B + 7*C | F2dd = 49.0*B + 7*C | ||
F4dd = 441.0*C/ | F4dd = 441.0*C/ | ||
Line 113: | Line 115: | ||
print("" | print("" | ||
print(" | print(" | ||
- | Npsi_i = 2 | + | Npsi_i = 1 |
StartRestrictions1 = {NF, NB, {" | StartRestrictions1 = {NF, NB, {" | ||
psiList_N = Eigensystem(H_tot, | psiList_N = Eigensystem(H_tot, | ||
- | --psiList_N = {psiList_N} | + | psiList_N = {psiList_N} |
print(" | print(" | ||
Line 132: | Line 134: | ||
-- chemical potential μ- to remove a particle | -- chemical potential μ- to remove a particle | ||
+ | -- ########################################################### | ||
+ | -- THE PROBLEM SEEMS TO BE HERE | ||
print("" | print("" | ||
print(" | print(" | ||
- | StartRestrictions_rem = {NF, NB, {" | + | StartRestrictions_rem = {NF, NB, {" |
psiList_Nminus1 = Eigensystem(H_tot, | psiList_Nminus1 = Eigensystem(H_tot, | ||
psiList_Nminus1 = {psiList_Nminus1} | psiList_Nminus1 = {psiList_Nminus1} | ||
Line 144: | Line 148: | ||
print(" | print(" | ||
print("" | print("" | ||
+ | -- ########################################################### | ||
-- chemical potential μ+ to add a particle | -- chemical potential μ+ to add a particle | ||
print(" | print(" | ||
- | StartRestrictions_add = {NF, NB, {" | + | StartRestrictions_add = {NF, NB, {" |
psiList_Nplus1 = Eigensystem(H_tot, | psiList_Nplus1 = Eigensystem(H_tot, | ||
psiList_Nplus1 = {psiList_Nplus1} | psiList_Nplus1 = {psiList_Nplus1} | ||
Line 162: | Line 167: | ||
mean_mu = (add_mu + remove_mu)/ | mean_mu = (add_mu + remove_mu)/ | ||
print(" | print(" | ||
- | " | + | |
+ | </ | ||
+ | |||
+ | P.S: after some simulations, | ||
+ | the GS energy becomes -15.628822671742, | ||
</ | </ | ||
~~DISCUSSION|Answers~~ | ~~DISCUSSION|Answers~~ | ||