Page 1 of 1

Zab_VDW parameter does not show in OUTCAR

Posted: Sat Oct 21, 2023 9:01 am
by gullbrekken
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

Re: Zab_VDW parameter does not show in OUTCAR

Posted: Sun Oct 22, 2023 7:35 am
by fabien_tran1
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

Code: Select all

           '   Zab_VDW    =',F6.4,  '    correlation parameter'/&
by

Code: Select all

           '   Zab_VDW    =',F7.4,  '    correlation parameter'/&
This fix will be included in the next VASP release. Thanks for pointing this out.

Re: Zab_VDW parameter does not show in OUTCAR

Posted: Sun Oct 22, 2023 11:43 am
by gullbrekken
Thanks for the reply!
Good to know.

Øystein