Hello
Just a strange observation. The Zab_VDW correlation parameter does not show in the OUTCAR for some reason, it only shows ******. Is this due to a mistake in the INCAR or something else? The calculation seems to run fine.
INCAR: ZAB_VDW = -1.8867
I am wondering if it is due to the minus sign, or whether I am using the wrong "-" sign?
Just want to make sure I have not done any error in my calculations.
Kind regards,
Øystein
Zab_VDW parameter does not show in OUTCAR
Moderators: Global Moderator, Moderator
-
- Newbie
- Posts: 2
- Joined: Wed Sep 21, 2022 5:57 am
Zab_VDW parameter does not show in OUTCAR
You do not have the required permissions to view the files attached to this post.
-
- Global Moderator
- Posts: 418
- Joined: Mon Sep 13, 2021 11:02 am
Re: Zab_VDW parameter does not show in OUTCAR
Hi,
This is due to the format for the write statement that was not adapted. You can fix this in fock.F (at line 685 in VASP.6.4.2) by replacing
by
This fix will be included in the next VASP release. Thanks for pointing this out.
This is due to the format for the write statement that was not adapted. You can fix this in fock.F (at line 685 in VASP.6.4.2) by replacing
Code: Select all
' Zab_VDW =',F6.4, ' correlation parameter'/&
Code: Select all
' Zab_VDW =',F7.4, ' correlation parameter'/&
-
- Newbie
- Posts: 2
- Joined: Wed Sep 21, 2022 5:57 am
Re: Zab_VDW parameter does not show in OUTCAR
Thanks for the reply!
Good to know.
Øystein
Good to know.
Øystein