Click here to Skip to main content
15,885,537 members
Articles / Programming Languages / C++

Variational Quantum Monte Carlo

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
17 Mar 2021CPOL5 min read 5.2K   1  
Variational Quantum Monte Carlo for a molecule, using Fokker-Planck/Langevin approach
This post uses the Fokker-Planck/Langevin approach to get the Variational Quantum Monte Carlo for a molecule.

Introduction

I’ll try to describe here briefly another project I have on GitHub1. There will not be much except links, but hopefully those will be useful.

The project is far from being perfect, the simple averaging used there for example could be improved, as there are autocorrelations that one should be aware of, but I’ll do that maybe later. Also, the way the Gaussian orbitals are combined could be improved, too.

Nevertheless, the program appears to work, although one should be careful of what parameters are used. A large number of steps is necessary to obtain a reliable result.

Program in Action

As usual, here is a record of a run:

It doesn’t show much, but with some patience, the program could be extended to supply more information.

Theory

As for the last posts, I’ll provide here only links, as currently I lack motivation to describe the theory in more detail. It’s very well described elsewhere, anyway.

Some starts can be provided by Wikipedia: Quantum Monte Carlo, Variational Quantum Monte Carlo. There are some links there worth visiting.

One book that provides a good start is already mentioned several times on this blog: Computational Physics book by Jos Thijssen2.

A very good lecture by Morten Hjorth-Jensen is found on GitHub: Computational Physics3. In doc/Literature, you’ll find lectures2015.pdf. The formulae in there are mentioned in the code, using the numbering from there, so this is the main reference you should consult. Another link to look over from that repository is here: Computational Physics 2: Variational Monte Carlo methods.

A GitHub repository where a lot of Master Thesis and PhD Thesis are posted can be found at CompPhysics\ThesisProjects4. I will point you in there this: Quantum Monte Carlo Simulation of Atoms and Molecules by Roger Kjøde, because it presents a project similar to what I describe here and also has some results you could use for comparison.

The Code

The code reuses a part of the code from the Hartree-Fock project. Most of the classes are in the same namespaces as in the Hartree-Fock project, but there are changes and additions. Since Gaussian Orbitals are used, the code for loading them and representing them as classes is borrowed as is from that project. There are some additions, though, for example, the Orbitals::VQMCOrbital class is new. It implements a linear combination of two contracted Gaussian Orbitals, to be used as a ‘molecular orbital’ by combining atomic orbitals from the last shell of the atoms in the case of a diatomic molecule. Another change is that I needed the gradient and laplacian in this project, so I added them to the orbitals implementation. This addition is also added to the Hartree-Fock project, although it’s not used there.

The place to start looking over the project is in VQMCMolecule::Compute. The most important classes are Wavefunction and VQMC.

The used libraries are, as in other projects described on this blog: wxWidgets5 and Eigen6.

Results

Here are some results for the ground state energy in Hartrees, computed with STO3G and STO6G, compared with results obtained with the DFTAtom project (for atoms) and the Hartree-Fock one. The DFTAtom results are very similar with the results from NIST and the Hartree-Fock results are very close to other projects that use the same basis set. For Hartree-Fock, I used the restricted method for He and unrestricted for the other atoms. If you would check the above mentioned master thesis, you would notice that the results are typically quite close with the results from the above thesis (where STO3G was used).

For now, I’ll add here some atoms and molecules with a small number of electrons. Later, I might add some more complex ones. Of course, the lower values are better, as the variational principle is used.

Atom VQMC STO3G VQMC STO6G HF STO3G HF STO6G DFTAtom
He -2.841 -2.876 -2.807 -2.846 -2.834
Li -7.360 -7.430 -7.315 -7.399 -7.335
Be -14.428 -14.590 -14.351 -14.503 -14.447
B -24.228 -24.533 -24.148 -24.394 -24.344

For molecules, I used the restricted Hartree-Fock method, as the electrons are paired for the chosen molecules.

Molecule Distance VQMC STO3G VQMC STO6G HF STO3G HF STO6G
H2 1.4 -1.148 -1.156 -1.116 -1.125
Li2 5.051 -14.808 -14.887 -14.638 -14.808
LiH 4.516 -7.823 -7.909 -7.784 -7.873

Possible Improvements

An improvement that should be done and I’m probably going to do in the future is to implement better statistics. The current simple averaging suffers due of autocorrelations.

Also, the way the Gaussian Orbitals are picked and combined could probably improved as well. Currently, the ones from the valence shell are paired in order. Hartree-Fock, for example, uses all of them in computation, filling them up in order of their energy. If the shell is not filled, in this project case not all orbitals from the basis set are used.

To improve the results, probably all of them could be used by using a linear combination of Slater determinants, each of them having a different combination of those orbitals from the last shell. This method would work in general, not only on diatomic molecules, too. This would require a lot of variational parameters, instead of a single one as it’s currently in the program, and gradient descent algorithms should be used to find the minimum (in a similar way as for the DFT Quantum Dot project). Of course, not all ‘tricks’ for speeding up used in this project would work anymore and besides, having so many Slater determinants and variational parameters would slow the speed a lot, so I’m not going to consider such an implementation for such a project.

The Variational Quantum Monte Carlo can be a start for Diffusion Quantum Monte Carlo, which is in principle exact, so the program could be extended to improve results using that method.

Conclusion

If you find any bugs and/or have suggestions for improvements, please point them out here or on GitHub.

  1. VQMCMolecule The project on GitHub
  2. Computational Physics book by Jos Thijssen
  3. Computational Physics by Morten Hjorth-Jensen
  4. CompPhysics\ThesisProjects PhD and Master Thesis papers, some of them being about Quantum Monte Carlo
  5. wxWidgets Cross-platform GUI library
  6. Eigen The matrix library

The post Variational Quantum Monte Carlo first appeared on Computational Physics.

This article was originally posted at https://compphys.go.ro/variational-quantum-monte-carlo

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Invictus Wings SRL
Romania Romania
Software engineer and physicist

Comments and Discussions

 
-- There are no messages in this forum --