Book Image

Quantum Chemistry and Computing for the Curious

By : Alex Khan, Keeper L. Sharkey, Alain Chancé
Book Image

Quantum Chemistry and Computing for the Curious

By: Alex Khan, Keeper L. Sharkey, Alain Chancé

Overview of this book

Explore quantum chemical concepts and the postulates of quantum mechanics in a modern fashion, with the intent to see how chemistry and computing intertwine. Along the way you’ll relate these concepts to quantum information theory and computation. We build a framework of computational tools that lead you through traditional computational methods and straight to the forefront of exciting opportunities. These opportunities will rely on achieving next-generation accuracy by going further than the standard approximations such as beyond Born-Oppenheimer calculations. Discover how leveraging quantum chemistry and computing is a key enabler for overcoming major challenges in the broader chemical industry. The skills that you will learn can be utilized to solve new-age business needs that specifically hinge on quantum chemistry
Table of Contents (14 chapters)
8
Chapter 8: References
9
Chapter 9:Glossary
Appendix B: Leveraging Jupyter Notebooks on the Cloud
Appendix C: Trademarks

4.6. Constructing a fermionic Hamiltonian with Qiskit Nature

The Qiskit Nature platform works with spin orbitals [Qiskit_Nat_1]. Each molecular orbital can have a spin-up or a spin-down electron, or spin-paired electrons. A spin orbital is either of those cases. For each molecular orbital, we have two spin orbitals. Let's now illustrate the construction of a fermionic Hamiltonian operator of the hydrogen molecule with Qiskit Nature.

4.6.1. Constructing a fermionic Hamiltonian operator of the hydrogen molecule

First, we define the molecular geometry of the hydrogen molecule with the Qiskit Molecule class, which has the following input parameters:

  • geometry, a list of atom names, such as H for hydrogen, followed by Cartesian coordinates of the atom's position in units of angstroms
  • charge, an integer, the electric charge of the molecule
  • multiplicity, an integer, the multiplicity of the molecule, where is the total spin angular momentum, which is determined...