You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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.
No description provided.
The text was updated successfully, but these errors were encountered: