The CASSCF Hamiltonian¶
In the previous chapter, we constructed the CASSCF wavefunction as a linear combination of Configuration State Functions (CSFs),
The next question is:
How do we calculate the energy of this wavefunction?
The answer lies in the electronic Hamiltonian operator, which contains all of the physical interactions between the electrons and nuclei in the molecule.
In this chapter, we derive the CASSCF Hamiltonian and show how it is transformed into a matrix that can be solved numerically.
The Time-Independent Schrödinger Equation¶
Every electronic structure method begins with the time-independent Schrödinger equation,
where
- \(\hat H\) is the Hamiltonian operator,
- \(\Psi\) is the electronic wavefunction,
- \(E\) is the electronic energy.
Our goal is therefore simple:
Find the wavefunction that satisfies this equation while producing the lowest possible energy.
The Electronic Hamiltonian¶
Within the Born–Oppenheimer approximation, the nuclei are treated as fixed, and only the electrons are considered explicitly.
The electronic Hamiltonian becomes
This equation contains every interaction experienced by the electrons.
Understanding Each Term¶
The Hamiltonian consists of three contributions.
1. Electron Kinetic Energy¶
This operator represents the kinetic energy of electron \(i\).
The Laplacian
describes the curvature of the electronic wavefunction.
Greater curvature corresponds to larger kinetic energy.
2. Electron–Nucleus Attraction¶
This term represents the electrostatic attraction between electron \(i\) and nucleus \(A\).
where
- \(Z_A\) is the nuclear charge,
- \(r_{iA}\) is the distance between electron and nucleus.
This interaction lowers the total energy because opposite charges attract.
3. Electron–Electron Repulsion¶
Every electron repels every other electron.
This term makes the Schrödinger equation difficult to solve because the motion of every electron depends on every other electron.
Almost every approximation in quantum chemistry exists because of this term.
Why Is the Schrödinger Equation Difficult?¶
Suppose there is only one electron.
The Schrödinger equation can be solved exactly.
Now consider ten electrons.
Now every electron interacts with every other electron simultaneously.
There is no exact analytical solution.
This is why approximate electronic structure methods such as RHF and CASSCF are required.
Applying the Hamiltonian to the CASSCF Wavefunction¶
The CASSCF wavefunction is
Substituting this into the Schrödinger equation gives
Since the Hamiltonian is a linear operator,
it acts independently on every Configuration State Function.
Projecting onto the CSF Basis¶
To determine the unknown coefficients \(c_I\),
we multiply the equation by another Configuration State Function,
giving
Substituting the CASSCF wavefunction,
Orthonormality of the CSFs¶
Configuration State Functions are orthonormal,
meaning
where
This greatly simplifies the equations.
The Hamiltonian Matrix¶
We now define the Hamiltonian matrix elements as
Each matrix element represents the interaction between two Configuration State Functions.
For example,
If two configurations interact strongly,
the corresponding Hamiltonian element becomes large.
Constructing the Hamiltonian Matrix¶
For three CSFs,
the Hamiltonian matrix becomes
where
- diagonal elements describe the energy of each CSF,
- off-diagonal elements describe the coupling between different configurations.
Physical Interpretation¶
The Hamiltonian matrix tells us
- how much energy each configuration possesses,
- how strongly different configurations interact,
- how electrons move between configurations.
This interaction is what produces the multiconfigurational wavefunction.
Why Is the Matrix Important?¶
Once the Hamiltonian matrix has been constructed,
the entire CASSCF problem reduces to solving
This is simply an eigenvalue problem.
The eigenvalues become the electronic energies,
while the eigenvectors become the CI coefficients.
Everything now depends on solving this matrix equation efficiently.
This is the Configuration Interaction (CI) problem, discussed in the next chapter.
Key Takeaways¶
- Every electronic structure method begins with the Schrödinger equation.
- The electronic Hamiltonian contains the kinetic energy, electron–nucleus attraction, and electron–electron repulsion.
- Applying the Hamiltonian to the CASSCF wavefunction generates a matrix representation.
- Each matrix element describes the interaction between two Configuration State Functions.
- Solving the Hamiltonian matrix yields the energies and CI coefficients of the electronic states.