Firstly, I'd like to verify what LDAUL is used for. If my understanding is correct, LDAUL indicates the l-quantum number which designates the orbital on which the DFT+U interaction is applied to.
With that understanding, If I have 4 different atomic species in my system, how can I specify which l-quantum number goes to which atom? For example, I have the species in the POSCAR file as follows:
La Ti O N
And I would like to apply the DFT+U interaction to the Ti-3d orbital.
How can I specify to apply the LDAUL to the Ti atom?
How to specify LDAUL in DFT+U calculations
Moderators: Global Moderator, Moderator
-
- Newbie
- Posts: 16
- Joined: Wed Jan 24, 2024 7:33 pm
-
- Global Moderator
- Posts: 542
- Joined: Fri Nov 08, 2019 7:18 am
Re: How to specify LDAUL in DFT+U calculations
LDAUL takes one entry per ion type (i.e. different POTCAR) in your system. For your specific example, you would set
which does not add (l=-1) a U to La, O, and N; and adds a U to the d (l=2) states of Ti.
Code: Select all
LDAUL = -1 2 -1 -1
Martin Schlipf
VASP developer
-
- Newbie
- Posts: 16
- Joined: Wed Jan 24, 2024 7:33 pm
Re: How to specify LDAUL in DFT+U calculations
Thank you very much for your help!