-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple DOS overlapping #154
Comments
1.
At first, I draw some DOS of primitive Ruthenium with plain mode.
And I want to draw with axis units together.
image.png (view on web)<https://github.com/user-attachments/assets/f230af58-8917-488e-9adf-587a6be8b6ef>
I already know the x-axis represent Energy in (eV) units, but I'm not sure about the units for the y-axis of DOS.
Generally, the units for DOS are likely to be (states/eV), but in some examples, the units are not specified or are written as (a.u.) (possibly denoting Bohr radius).
Arbitrary units
TO check the actual units, it has to be checked on how the particular DFT code reports their values… you can check in the DFT code… we just plot the output of whatever code gies
Especially, in "User Guid", plotting DOS with VASP data in 'plain' mode denotes (a.u.) for the y-axis unit.
(user guid: https://romerogroup.github.io/pyprocar/user-guide/dos.html#<url>)
But with QE, in my case, the figure came out with out written any units for y-axis. (watch above the picture)
How can I check the units of y-axis?
In the QE manual
1.
Second, Can anyone please tell me how to normalize y-axis with slab size?
When I try to calculate slab DOS, y axis seems not to be normalized.
But, I wan't to analyze these data with normalized same scale.
Please tell me how.
Define normalization? Integral of the DOS should be equal to the number of electrons… is that?
1.
Last, how can I compare normalized DOS for slabs of different sizes effectively in a single Figure?
No sure what you mean…. You can always normalize to one by dividing to the number of electrons
When slab size differs, DOS should be differs too.
In fact, there should be some difference between each DOS of each slab size and I want to observe them.
* DOS for 2 atom slab (Ru primitive + 15 Angstrom vacuum)
image.png (view on web)<https://github.com/user-attachments/assets/d469c112-0006-4d61-969d-1e44db59b9ca>
* DOS for 10 atom slab (x5 super cell with z direction of Ru (001) + 15 Angstrom vacuum)
image.png (view on web)<https://github.com/user-attachments/assets/e640a996-fc85-4d75-a48c-7cf36ba5416e>
Best regards,
G. H.
—
Reply to this email directly, view it on GitHub<#154>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AB24DTJHFSWQCE2NIU33AMDZMOC23AVCNFSM6AAAAABK4COO4WVHI2DSMVQWIX3LMV43ASLTON2WKOZSGQYDQMJXGM4DCOA>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Hey just to add to the conversation
ahromero is correct we just keep the units of the underlying DFT code. If you want to change the label, you can, add the pyprocar.dosplot(
code='vasp',
mode='plain',
orientation='horizontal',
fermi=5.3017,
grid=True,
y_label='DOS [a.u.]'
dirname=data_dir)
Currently, there is not an option to do this in the package. But, this sounds interesting we can add the option to choose the normalization, either by the total number electrons like ahromero mentioned or by the max value. I will update you when i have done this.
You can compare different density of sates in the following way. dosplot returns matplotlib fig and ax object, so you can pass the ax object to dosplot for another density of states. fig,ax =pyprocar.dosplot(
code='vasp',
mode='parametric_line',
orbitals = [1],
atoms=[2,3,4],
spins=[0],
clim=[0,1],
orientation='horizontal',
fermi=5.3017,
grid=True,
show=False, # make sure show is False to avoid producing 2 plots
dirname=data_dir)
pyprocar.dosplot(
code='vasp',
mode='overlay_species',
orbitals = [4,5,6,7,8],
clim=[0,1],
orientation='horizontal',
fermi=5.3017,
grid=True,
ax=ax, # Pass the ax object to dosplot
dirname=data_dir,
plot_total=False, # Do not show total as the previous plot has the same total
)
Yes, set the fermi energy. Otherwise the energy axis will not be shifted by the fermi energy.
I apologies about this, this image is out of data we need to update to the current configuration. Logan Lang |
Dear Ahromero and Logan. Thanks for both your help, and sorry about my late answer. Well I have to check out my self about what you replied me and answer again. Before, I wan't to know something about the y-axis unit. This seems like y-axis refers to (E), but I have no idea about this unit. Last, there seems to be no change in the DOS plot after varying the Fermi level in the code. (I'm using qe option). |
Hey,
You are absolutely correct in your assumption. Here, from there documentation for
Hmmmm, this does not happen in my version. I am pushing updates to pypi tonight. I will message you when I have. Install those and try this again. It should shift dos plot such that the fermi level is at 0. Also it will change the x axis label. Logan Lang |
Yes, you are right. If the Fermi level option works, the DOS plot should shift accordingly. But as I show above, there is nothing different after Fermi changed.
Always appreciate your help. |
Hey, I pushed the version 6.2.1 to pypi, so you should be able to
In a previous versions, we automatically shifted the fermi energy in the code. We decided to move away from this because other DFT package do not retain the self-consistent Fermi energy in the same directory as the band calculation. Quantum Espresso is able to do this as the The change in behavior to the fermi energy happened in version 6.1.9 Mar 28th, 2024. Quantum Espresso never really had an issue with its fermi energy, so I would say the dos you've drawn should be correct. Yeah, I've looked at their documentation many times and I always seem to find new details I didn't see before. It's just how it goes. I'm glad I could help! Best, Logan Lang |
Yeah, it works perfectly. Currently, the calculations are being performed sequentially, with SCF and NSCF being carried out together as a single task. grep Fermi *out It's a bit disappointing that, like you said, some tools can not directly access the Fermi level in the output data. It's actually more convenient when the Fermi level is automatically set like before (nonetheless, thanks for your consideration). In that sense, considering going back to the original setup seems like a good idea, but I think it wouldn't hurt to have a way to shift the Fermi level when you do input values, and only set it to default if you don't. Also, is there any updates for normalization you told me above?
Thanks for your help. Best regards, |
You are right that for Either way I do not like the consistency, so I changed to parsing of the fermi energy to
I agree, I changed it so
I just added this feature in. You can pass Here is an example: fig,ax = pyprocar.dosplot(
code=code,
mode='plain',
orientation='horizontal',
normalize_dos_mode='max',
grid=True,
show=True,
dirname=data_dir) I pushed the changes to the main branch of github, so you will have to install from the github repository. Best, Logan Lang |
Dear Logan, I'm very appreciate every work you did. First, what about using only 15x15x15 for bulk SCF, 50x50x50 for bulk NSCF and 15x15x1 for slab SCF, 50x50x4 for Slab NSCF? And, please let me know where can I look up the options about normalize_dos_mode? Last, I can't understand your last sentence,
I apologize for my bad knowledge. I'm not very familiar with github and python... so I have no idea what I have to do. Sincery, |
First, what about using only 15x15x15 for bulk SCF, 50x50x50 for bulk NSCF and 15x15x1 for slab SCF, 50x50x4 for Slab NSCF?
I think you have to answer these questions by reviewing what is DFT and how it is done…. There is a difference between what you do in SCF and NSCF…. The point is not the K-mesh!!!
You mentioned that I should use the SCF Fermi energy rather than NSCF, but if the k-meshes are dense enough, NSCF would be acceptable since there is not quite big difference.
Define big? The problem is not the “small”difference but what is correct, the SCF is the correct Fermi, why do you want to use something that is incorrect? If you want to check if the system is metallic or check the occupation at Fermi, then, this matters a lot!
In my case, are those k-points dense enough?
This is system dependent and we can not answer that… you have to check that on your own
They usually have 0.03~0.1 eV differences between SCF and NSCF.
THIS IS HUGE!!!! Just think, 250 meV is around 300K… if your system is at room temperature, your difference is larger that temperature fluctuations
And, please let me know where can I look up the options about normalize_dos_mode?
I can't find out any differences between 'max' and 'integral'.
What do you mean ty “find out”… did you check the numbers? The proper way to normalize DOS is with the number of electrons, see Kittel or Cardona’s book… you can always normalize to one for particular comparisons but they have to be taken with care.. for example to compare supercell vs unit cell calculations
Also, I want to check out what kind of normalization each are.
* Ru Primitive
image.png (view on web)<https://github.com/user-attachments/assets/02c3cd3e-0986-47c6-8013-2789c8c3e786>
image.png (view on web)<https://github.com/user-attachments/assets/e389bb3f-ed03-4f93-b466-3960d55adccb>
image.png (view on web)<https://github.com/user-attachments/assets/8377bb21-39a5-4ab8-a982-c09f0eee4bce>
image.png (view on web)<https://github.com/user-attachments/assets/04309312-fa0a-4c60-ad5c-0116cd6bb59d>
Last, I can't understand your last sentence,
I pushed the changes to the main branch of gitthub, so you will have to install from the github repository.
I apologize for my bad knowledge. I'm not very familiar with github and python... so I have no idea what I have to do.
This is quite important as you are using Python as the main interface…. Github is where the actual code exist and if we make changes, we upload them first in the repository… you can use Git commands to download and create the package.. the conda and pip version, require work from our side and we do not do it so frequently… we need time for own research
Is that mean, you already update this job in the 6.2.0 version?
Using always the last version is the best idea
Sincery,
G. H.
—
Reply to this email directly, view it on GitHub<#154 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AB24DTMXX233E4MCGAWVSF3ZOEX6DAVCNFSM6AAAAABK4COO4WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENJRGAZDMNBYGU>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Dear Ahromero.
First of all, as I understand it, the SCF calculation is used to converge the electron density function through self-consistent iteration. Since a lot of computational cost is required for the iteration, I understand that specifying many k-points through SCF is a challenging task. So, when you asks why I use the non-self-consistent (NSCF) if the self-consistent (SCF) is the correct approach, I think it means I'm misunderstanding the DFT system. I thought that using SCF first to calculate a rough structure and then get a more detailed structure with NSCF.
Well, when I run the DOS plot through that option, I get the graph data, right? But I never thought about changing it into numbers to take a look at it... I’m sorry if my question has made you feel a bit frustrated or angry. Thanks. |
First of all, as I understand it, the SCF calculation is used to converge the electron density function through self-consistent iteration. Since a lot of computational cost is required for the iteration, I understand that specifying many k-points through SCF is a challenging task.
On the other hand, NSCF is the process of using the electron density derived from SCF to calculate electronic band structures with a denser k-mesh.
It is an approximation and as any approximation it is system dependent… that is why you need to use the computed SCF
So, when you asks why I use the non-self-consistent (NSCF) if the self-consistent (SCF) is the correct approach, I think it means I'm misunderstanding the DFT system. I thought that using SCF first to calculate a rough structure and then get a more detailed structure with NSCF.
That's why I believed the YouTube examples using NSCF data for interpolation when running calculations with a program called BoltzTraP2 were showing the right method.
If I calculate NSCF with a sufficiently dense k-mesh, shouldn't it represent the results from the SCF calculations?
This is really system dependent… it is not the same for a semimetal, a semiconductor, etc…. you need to check convergence of this parameter
What do you mean ty “find out”… did you check the numbers? The proper way to normalize DOS is with the number of electrons, see Kittel or Cardona’s book… you can always normalize to one for particular comparisons but they have to be taken with care.. for example to compare supercell vs unit cell calculations
Well, when I run the DOS plot through that option, I get the graph data, right? But I never thought about changing it into numbers to take a look at it...
I’m saying this because you asked if I checked the numbers, Can I recheck these data (Post-processing data from the outputs obtained through projectwfc.x calculations) in to numbers?
You need to ask that into the QE users group..
And even if we quantify the data with numbers, if there's already no change in the figures that reflect that data, doesn't it make a difference?
Did not understand
I’m sorry if my question has made you feel a bit frustrated or angry.
But, I’m really trying my best to understand what I can, so I’d like to ask for your understanding on this part.
I think you need to discuss this with your advisor or with colleagues that are close to you… do not believe everything you see on Youtube… several of this videos are from little experience users and you have to becareful with that info
Thanks.
G. H.
…______________________________________::::__________________________________________
Prof. Aldo Humberto Romero
Director Research Computing, West Virginia University
Eberly Family Distinguished Professor
Fellow American Physical Society
Editor Physica B, Assistant Editor EPJB, Editor Frontiers in Physics
Section Editor Papers in Physics
Member of the Editorial Board of “Materials” and “Symmetry Physics”
https://scholar.google.com/citations?user=pwte-hQAAAAJ&hl=en
Physics and Astronomy Department
West Virginia University
135 Willey Street, PO Box 6315
111 White Hall
Morgantown, WV 26506
Phone: 304-293-6317
Fax: 304-293-5732
email: ***@***.******@***.***>
|
Actually, the lab I belong isn't that big and it's a relatively new lab (just opened 2 years ago). My advisor said that assigning a large k-point for SCF calculations uses too many computational resources, so it's better to use NSCF instead. I actually ran a few convergence tests with that approach. (If I remember correctly, for Ru, NSCF over 30x30x30 was sufficient for convergence.) That’s why I’m using NSCF for the current calculations, and the pyprocar homepage also suggests doing DOS plots in the order of SCF > NSCF > PDOS, so I was following that process. Well, thanks for your guidance.
This means that you asked me to check the numbers, but if there’s no difference between the two figures, then there shouldn’t be a noticeable difference in the numbers themselves, right? Best regards, |
y.
My advisor said that assigning a large k-point for SCF calculations uses too many computational resources, so it's better to use NSCF instead.
If you converge your results with the SCF< that is the Fermi you should use, the differences into increasing the K-mesh will be minimal… while for the NSCF the differences are larger… sorry, your advisor is wrong.
I actually ran a few convergence tests with that approach. (If I remember correctly, for Ru, NSCF over 30x30x30 was sufficient for convergence.) That’s why I’m using NSCF for the current calculations, and the pyprocar homepage also suggests doing DOS plots in the order of SCF > NSCF > PDOS, so I was following that process.
I always use the SCF for the converged results and it is fine
However, there are opinions that using SCF is more accurate, while NSCF can give different values for some systems (especially semiconductors or semi-metals), so I think I should discuss that part again with my advisor. (Though all the systems I’m calculating are conductors...)
Well, thanks for your guidance.
I'll check this again.
And even if we quantify the data with numbers, if there's already no change in the figures that reflect that data, doesn't it make a difference?
This means that you asked me to check the numbers, but if there’s no difference between the two figures, then there shouldn’t be a noticeable difference in the numbers themselves, right?
I guess… I am not familiar with your system but if you really change the set up, you have to see differences, even at the tiny level… you have to check each calculation very carefully
I think I'm not really getting what you're trying to point out either.
I do not understand your concern
Best regards,
G. H.
—
Reply to this email directly, view it on GitHub<#154 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AB24DTO6JJXJDTRYWFYZH4DZOGYWHAVCNFSM6AAAAABK4COO4WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENJRHA2TGMJQGE>.
You are receiving this because you commented.Message ID: ***@***.***>
|
I talked to my advisor again, and we concluded that using the Fermi level of SCF is indeed the right approach. Lastly, I’m still pretty clueless about the Anyway, thanks for your help! |
Hey, Apologies for the delayed response; my graduate school workload has been increasing. To clarify, normalizing the density of states involves dividing the dataset by a specific reference value. There are two main approaches for choosing this reference: either by using the maximum value of the density of states ( When you set the Best regards, |
I really thought I had seen your comment and replied about it three weeks ago, I apologize for unintentionally disregarding your sincere efforts. Anyway, over the past few weeks, I've been so busy with urgent stuff that I haven't been able to properly check the bands and DOS yet. Thanks for all your help in many ways. Sincery, |
Dear pyprocar users.
Hello.
I'm trying to draw some Density of States by using pyprocar from Quantum ESPRESSO data, and here I have some questions.
1) At first, I draw some DOS of primitive Ruthenium with plain mode.
And I want to draw with axis units together.
I already know the x-axis represent Energy in (eV) units, but I'm not sure about the units for the y-axis of DOS.
Generally, the units for DOS are likely to be (states/eV), but in some examples, the units are not specified or are written as (a.u.) (possibly denoting Bohr radius).
Especially, in "User Guid", plotting DOS with VASP data in 'plain' mode denotes (a.u.) for the y-axis unit.
(user guid: https://romerogroup.github.io/pyprocar/user-guide/dos.html#)
But with QE, in my case, the figure came out with out written any units for y-axis. (watch above the picture)
How can I check the units of y-axis?
2) Second, Can anyone please tell me how to normalize y-axis with slab size?
When I try to calculate slab DOS, y axis seems not to be normalized.
But, I wan't to analyze these data with normalized same scale.
Please tell me how.
3) Last, how can I compare normalized DOS for slabs of different sizes effectively in a single Figure?
When slab size differs, DOS should be differs too.
In fact, there should be some difference between each DOS of each slab size and I want to observe them.
Additional question.
When plotting DOS with QE datas in plain mode, should I set the Fermi level on execution .py file?
It seems there is nothing change whether it distinguished or not.
<Dos.py>
But in the "User Guid", I linked above, they set the Fermi level for the option.
(Moreover, that output figure is not similar form with this QE output form, even if I didn't consider the spin.)
<User Guid, VASP, Plain>
How to set up the DOS plotting codes with QE outputs?
DOS for 2 atom slab (Ru primitive + 15 Angstrom vacuum)
DOS for 10 atom slab (x5 super cell with z direction of Ru (001) + 15 Angstrom vacuum)
Best regards,
G. H.
The text was updated successfully, but these errors were encountered: