Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apex/core/property/Gruneisen.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ def _ensure_abacus_volume_outputs(
if not os.path.isfile("FORCE_CONSTANTS"):
raise FileNotFoundError(f"FORCE_CONSTANTS was not created in {helper_dir}")
if not os.path.isfile("mesh.yaml"):
subprocess.check_call(Phonon.phonopy_command("band.conf"), shell=True)
subprocess.check_call(Phonon.phonopy_command("phonopy_disp.yaml --config band.conf"), shell=True)
self._write_band_dat()
finally:
os.chdir(cwd)
Expand Down
2 changes: 1 addition & 1 deletion apex/core/property/Phonon.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def _compute_lower(self, output_file, all_tasks, all_res):
if not os.path.exists("FORCE_SETS"):
raise FileNotFoundError("FORCE_SETS was not created")
print('FORCE_SETS is created')
subprocess.check_call(self.phonopy_command("band.conf"), shell=True)
subprocess.check_call(self.phonopy_command("phonopy_disp.yaml --config band.conf"), shell=True)
self.write_band_dat()

elif self.inter_param["type"] == 'vasp':
Expand Down
Loading