reusing SecondQuantizedMolecule #374
-
is it possible to reuse a previous SecondQuantizedMolecule computation? I conduct some experiments in a jupyter notebook. It takes some minutes to have the result of SecondQuantizedMolecule and I wonder if storing the results and reading in later experiments woudl be faster |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
As of now, this is not possible. The naive way would be to use the An interface we thought of was to be able to read |
Beta Was this translation helpful? Give feedback.
-
I would definitely avoid pickle, because it breaks as soon as version numbers in environment etc changes. I like the idea of using a default format supported by the quantum chemistry tools, which empowers users to use a lot of tools outside of Tangelo in their overall workflow. Edit: Would the FCIDUMP feature be complicated to implement, and how useful do we think it is ? |
Beta Was this translation helpful? Give feedback.
As of now, this is not possible.
The naive way would be to use the
pickle
python module to do so, but it is not compatible withSecondQuantizedMolecule
(related to #361).An interface we thought of was to be able to read
FCIDUMP
file, which can be outputted by Psi4, PySCF, ORCA, Gaussian, and many more. The workflow would be to perform a SCF calculation, save the results to an FCIDUMP file, and then create quantum inputs with the provided file in Tangelo.