Closed yqshao closed 2 years ago
https://github.com/jkitchin/vasp/blob/6c73e7f4694752d3f0096929df0cad93e5e5e8e7/vasp/vib.py#L53-L62
The current code will count the modes twice if NWRITE = 3
NWRITE = 3
We need to add something like
if self.parameters.get('nwrite') == 3: NMODES = NMODES // 2
https://github.com/jkitchin/vasp/blob/6c73e7f4694752d3f0096929df0cad93e5e5e8e7/vasp/vib.py#L53-L62
The current code will count the modes twice if
NWRITE = 3
We need to add something like