-
Notifications
You must be signed in to change notification settings - Fork 25
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
Molecular Hamiltonian as LinearMap? #121
Comments
Hi @msmerlak, I have worked in the past with an approach where I'd simply build the whole Hamiltonian matrix... It is expensive, but it's fairly simple to implement, I must still have the code somewhere. Would that work for you, or do you need something more efficient like Olsen's fci (where you don't compute H, but rather just the effect of it onto the CI vector). |
Hi @gustavojra, and thanks for your trouble. I would indeed need the matrix-free version, as building the whole matrix would be too expensive for all but the smallest molecules. (My goal is to show that an eigenvalue algorithm I've designed can outperform Davidson. But to show this I need an example where H * CI is the computational bottleneck, i.e. big enough). Using
I've tried to do this myself in Julia using |
Hi,
I would have a feature request. (Would love to code it myself and PR, but, not being an expert, this would take me several days. Hoping you can help!)
Fermi runs HF with a simple interface. I would like to use the molecular orbitals and ERIs to form the molecular Hamiltonian as a LinearMap, for use in FCI calculations. Right now I’m using a workaround with ‘PyCall’ and ‘PySCF’. A pure Julia version would be more efficient and more elegant.
Thanks!
The text was updated successfully, but these errors were encountered: