Queries about input and output files, running specific calculations, etc.
Moderators: Global Moderator, Moderator
-
jasius
- Jr. Member

- Posts: 57
- Joined: Thu Nov 28, 2013 3:25 pm
- License Nr.: 1266
#1
Post
by jasius » Mon Aug 25, 2025 10:09 pm
I am trying to calculate VASP intensities with Raman Python script by Fornari https://github.com/raman-sc/VASP
Calculation fails - I am contacting Fornari about it. but one error comes from VASP and I do not understand why. Fatal error! IBRION=0, but no entry for POTIM on file INCAR. MUST be specified!!
I just want to run some single point calculation - I suppose. I do not quite understand this error, can somebody please advise? Perhaps that will help Python Raman intensity calculation to proceed
running on 256 total cores
distrk: each k-point on 256 cores, 1 groups
distr: one band on 8 cores, 32 groups
using from now: INCAR
vasp.5.4.4.18Apr17-6-g9f103f2a35 (build Jun 14 2024 12:30:39) gamma-only
POSCAR found type information on POSCAR Si O H W
POSCAR found : 4 types and 253 ions
Fatal error! IBRION=0, but no entry for POTIM on file INCAR. MUST be specified!!
----
You do not have the required permissions to view the files attached to this post.
-
andreas.singraber
- Global Moderator

- Posts: 371
- Joined: Mon Apr 26, 2021 7:40 am
#2
Post
by andreas.singraber » Tue Aug 26, 2025 8:30 am
Hello!
It seems to me that the INCAR file has some tags set which cause VASP to perform an unintended MD simulation. My guess is that setting NSW in your INCAR file
triggers IBRION to change from -1 (no ionic update) to 0 (MD simulation). For MD simulations a time step has to be set by the user via the POTIM tag. Because it was not found in your INCAR VASP is complaining and exiting.
You could try to remove the NSW line in your INCAR and run the script again! Although I have never used the script it seems to me that for some steps you need to explicitly set IBRION = 5,6,7 or 8, please consult the documentation of the script for the details.
All the best,
Andreas Singraber
-
jasius
- Jr. Member

- Posts: 57
- Joined: Thu Nov 28, 2013 3:25 pm
- License Nr.: 1266
#3
Post
by jasius » Wed Sep 17, 2025 11:23 pm