-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
raise RuntimeError("Failed to retrieve any thermo_style-output") #360
Comments
Hi @YukeLi-chem , this might be a result from ase parser's failure to read the lammps log file from the latest lammps version. What you can do is to revise ase's parser code. We have been using the bash commands as below: ase_file="$(dirname $(python3 -c 'import ase; print(ase.__file__)'))/calculators/lammpsrun.py"
sed -i 's/line.startswith(_custom_thermo_mark)/line.strip\(\).startswith\("Step"\)/g' $ase_file |
This solution exactly works and no retrivement issue anymore. However, the check_mgp_match will assert error due to the large forces discrepancy between gp and lammps. |
Hi @Teng-Martin-Ma, here are a few suggestions you could try:
|
No description provided.
The text was updated successfully, but these errors were encountered: