Hello everyone,
I am trying to replicate the NiO DFT+DMFT example listed in the VASP wiki page (https://vasp.at/wiki/DFT%2BDMFT_calcula ... p_tutorial). I copied the exact input files given in step1(KPOINTS,POSCAR,INCAR) and for my POTCAR I used the Ni_pv LDA pseudopotential. I get the same std out results as I should.
However, for Step 2 in running the python script using PLOVASP converter, I get the following error message (also attached below): PLOCAR is inconsistent with IBZKPT (number of k-points).
I wanted to add that I used the unstable branch for dft_tools (3.3.1) as well as triqs.
What could be the issue? Please let me know if you need more information.
Thank you!
Code: Select all
Read parameters: LOCPROJ
0 -> {'label': 'dxy', 'isite': 1, 'l': 2, 'm': 0}
1 -> {'label': 'dyz', 'isite': 1, 'l': 2, 'm': 1}
2 -> {'label': 'dz2', 'isite': 1, 'l': 2, 'm': 2}
3 -> {'label': 'dxz', 'isite': 1, 'l': 2, 'm': 3}
4 -> {'label': 'dx2-y2', 'isite': 1, 'l': 2, 'm': 4}
Found POSCAR, title line: NiO
Total number of ions: 2
Number of types: 2
Number of ions for each type: [1, 1]
Total number of k-points: 120
Total number of tetrahedra: 484
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/software/triqs-dft_tools/3.3.1/b1/lib/python3.9/site-packages/triqs_dft_tools/converters/plovasp/converter.py", line 73, in generate_and_output_as_text
el_struct = ElectronicStructure(vasp_data)
File "/software/triqs-dft_tools/3.3.1/b1/lib/python3.9/site-packages/triqs_dft_tools/converters/plovasp/elstruct.py", line 89, in __init__
assert nk_plo == self.nktot, "PLOCAR is inconsistent with IBZKPT (number of k-points)"
AssertionError: PLOCAR is inconsistent with IBZKPT (number of k-points)

