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
check_lib() in Molecule Class opens and checks the .lib file (format, unit name)
Issues
sometimes the .lib file is not explicitly provided, checking a non-explicitly provided .lib file will cause FileNotFound Error.
for example. solvent.lib is used for solvent objects that belongs to the amber dictionary. And, solvent.lib does not need to be explicitly provided.
to solve that issue, check_lib() use pass when the molecule.lib == 'solvent.lib'
now, we only know that solvent.lib does not need to be explicitly provided.
Question?
are there any other .lib files or any files not needed to be explicitly provided?
The text was updated successfully, but these errors were encountered:
description of check_lib()
check_lib() in Molecule Class opens and checks the .lib file (format, unit name)
Issues
sometimes the .lib file is not explicitly provided, checking a non-explicitly provided .lib file will cause FileNotFound Error.
for example. solvent.lib is used for solvent objects that belongs to the amber dictionary. And, solvent.lib does not need to be explicitly provided.
to solve that issue, check_lib() use pass when the molecule.lib == 'solvent.lib'
now, we only know that solvent.lib does not need to be explicitly provided.
Question?
The text was updated successfully, but these errors were encountered: