-
Is there any way to add data to simmate databases manually (like from vasp output files)? |
Beta Was this translation helpful? Give feedback.
Answered by
jacksund
Mar 3, 2023
Replies: 1 comment
-
Yep! You can use the database table's from pathlib import Path
from simmate.database import connect
from simmate.database.base_data_types import Relaxation
my_folder = Path("path/to/my/folder")
relaxation = Relaxation.from_directory(my_folder) I don't think I have many unittests for this feature yet (and it's been forever since I've used it myself), so if it throws an error, be sure to let me know and open an issue for it! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jacksund
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep! You can use the database table's
from_directory
methods. For example:I don't think I have many unittests for this feature yet (and it's been forever since I've used it myself), so if it throws an error, be sure to let me know and open an issue for it!