VQE Electronic structure problem#
Problem description#
Consider the problem of finding approximate solutions to the non-relativistic time-independent Schrödinger equation
The Hamiltonian
where
Within the Born-Oppenheimer approximation, one considers the electrons in a molecule to be moving a the field of fixed nuclei. Therefore, the kinetic energy of the nuclei is neglected, and the nuclear repulsion energy is constant.
The Hamiltonian describing the motion of
The electronic stucture problem consists of finding solutions to the Schrödinger equation for the electronic Hamiltonian
where
In the following, we focus on finding the ground state energy
where
A starting point for solving this problem is the (restricted) Hartree-Fock method which produces a set
Utilizing the second quantization formalism, the electronic Hamiltonian is then expressed in the basis of the solutions (i.e., the spin orbitals) of the Hartree-Fock method:
where
Here, the coefficients
One-electron integrals:
Two-electron integrals:
Note: There is a difference between the physicists’s notation (above) and the chemists’ notation for the two-electron integrals!
The Hartree-Fock state
where the first (i.e., the lowest energy)
All feasible
single electron excitation states:
One electron is moved from the occupied orbital
to the unoccupied (virtual) orbital .double electron excitation states:
Two electrons are moved from the occupied orbitals
to the unoccupied (virtual) orbitals .higher order (triple, quadruple, ect.) excitation states.
That is, a ground state can be expressed as
Solving the electronic structure problem, i.e., finding a ground state
Electronic structure problem#
- electronic_structure_problem(arg, active_orb=None, active_elec=None, ansatz_type='QCCSD', threshold=0.0001)[source]#
Creates a VQE problem instance for an electronic structure problem defined by the one-electron and two-electron integrals for the spin orbitals (in physicists’ notation).
The problem Hamiltonian is given by:
for one-electron integrals:
and two-electron integrals:
- Parameters:
- argpyscf.gto.Mole or dict
A PySCF molecule or a dictionary specifying the electronic data for a molecule. The following data is required:
one_int
numpy.ndarrayThe one-electron integrals w.r.t. spin orbitals (in physicists’ notation).
two_int
numpy.ndarrayThe two-electron integrals w.r.t. spin orbitals (in physicists’ notation).
num_orb
intThe number of spin orbitals.
num_elec
intThe number of electrons.
- active_orbint, optional
The number of active spin orbitals.
- active_elecint, optional
The number of active electrons.
- ansatz_typestring, optional
The ansatz type. Availabe is
QCCSD
. The default isQCCSD
.- thresholdfloat, optional
The threshold for the absolute value of the coefficients of Pauli products in the quantum Hamiltonian. The default is 1e-4.
- Returns:
- VQEProblem
The VQE problem instance.
Examples
We calculate the electronic energy for the Hydrogen molecule at bond distance 0.74 angstroms:
from pyscf import gto from qrisp import QuantumVariable from qrisp.vqe.problems.electronic_structure import * mol = gto.M( atom = '''H 0 0 0; H 0 0 0.74''', basis = 'sto-3g') vqe = electronic_structure_problem(mol) vqe.set_callback() energy = vqe.run(QuantumVariable(4),depth=1,max_iter=50) print(energy) #Yields -1.8461290172512965
Helper functions#
- electronic_data(mol)[source]#
A function that utilizes restricted Hartree-Fock (RHF) calculation in the PySCF quantum chemistry package to obtain the electronic data for defining an electronic structure problem.
- Parameters:
- molpyscf.gto.Mole
The molecule.
- Returns:
- datadict
A dictionary specifying the electronic data for a molecule. The following data is provided:
one_int
numpy.ndarrayThe one-electron integrals w.r.t. spin orbitals (in physicists’ notation).
two_int
numpy.ndarrayThe two-electron integrals w.r.t. spin orbitals (in physicists’ notation).
num_orb
intThe number of spin orbitals.
num_elec
intThe number of electrons.
energy_nuc
The nuclear repulsion energy.
energy_hf
The Hartree-Fock ground state energy.
Hamiltonian#
- create_electronic_hamiltonian(arg, active_orb=None, active_elec=None)[source]#
Creates the qubit Hamiltonian for an electronic structure problem. If an Active Space (AS) is specified, the Hamiltonian is calculated following this paper.
- Parameters:
- argpyscf.gto.Mole or dict
A PySCF molecule or a dictionary specifying the electronic data for a molecule. The following data is required:
one_int
numpy.ndarrayThe one-electron integrals w.r.t. spin orbitals (in physicists’ notation).
two_int
numpy.ndarrayThe two-electron integrals w.r.t. spin orbitals (in physicists’ notation).
num_orb
intThe number of spin orbitals.
num_elec
intThe number of electrons.
- active_orbint, optional
The number of active spin orbitals.
- active_elecint, optional
The number of active electrons.
- Returns:
- HFermionicOperator
The fermionic Hamiltonian.
Examples
We calucalte the fermionic Hamiltonian for the Hydrogen molecule, and transform it to a Pauli Hamiltonian via Jordan-Wigner transform.
from pyscf import gto from qrisp.vqe.problems.electronic_structure import * mol = gto.M( atom = '''H 0 0 0; H 0 0 0.74''', basis = 'sto-3g') H = create_electronic_hamiltonian(mol) H.to_qubit_operator()
Yields:
Ansatz#
- create_QCCSD_ansatz(M, N)[source]#
This method creates a function for applying one layer of the QCCSD ansatz.
The chemistry-inspired Qubit Coupled Cluster Single Double (QCCSD) ansatz evolves the initial state, usually, the Hartree-Fock state
under the action of parametrized (non-commuting) single and double excitation unitaries.
The single (S) excitation unitaries
implement a continuous swap for qubits and :Similarly, the double (D) excitation unitaries
implement a continuous swap for qubit pairs and .- Parameters:
- Mint
The number of (active) spin orbitals.
- Nint
The number of (active) electrons.
- Returns:
- ansatzfunction
A function that can be applied to a QuantumVariable and a list of parameters.
- num_paramsint
The number of parameters.
- create_hartree_fock_init_function(M, N)[source]#
Creates the function that, when applied to a QuantumVariable, initializes the Hartee-Fock state: Consistent with the Jordan-Wigner mapping, the first
N
qubits are initialized in the state.- Parameters:
- Mint
The number of (active) spin orbitals.
- Nint
The number of (active) electrons.
- Returns:
- init_functionfunction
A function that can be applied to a QuantumVariable.