Periodic Trends in Ionization Energies of Atoms
Copyright (c) RDMCHEM LLC 2019
Overview
Initialize
Atomic Ionization Energies and Periodic Trends
Appendix
Very often, chemical reactivity can be thought of in terms of ionization energies. For example, the lower an atom's ionization energy, the higher its reactivity. For an atom X, its ionization energy, IE, can be defined as
X(g) --> X+(g) + 1e- ΔE = IE
Of course, ionization energies will depend on which atomic orbital an electron is removed. The lowest ionization energy would correspond to removing an electron from the highest occupied orbital. So given its importance, it is often useful to calculate an atom's ionization energy to predict or explain its chemical reactivity. In this activity, you will calculate the ionization energy directly of a series of atoms by calculating explicitly the energy of X, and X+ and take energy differences:
IE = E(X+) − E(X) (1)
The details of how electronic energies are calculated are beyond the scope of this activity. In short, you will use the Hartree-Fock method with a 'DZP' atomic orbital basis. For more accurate results, you may choose to use any method available in the QuantumChemistry package (i.e. DensityFunctional, MP2, Parametric2RDM).
Here we initialize the Maple packages we wish to use as well as define the experimental values of the quantities we wish to calculate for comparison.
withplots:withScientificConstants:withQuantumChemistry:digits≔15:
AObasis≔dzp; AOmethod≔HartreeFock; IE≔Vector8,0;IE_Group1A≔Vector1312.04, 520.22, 495.84, 418.81, 403.03, 375.70, 392.96;IE_Group7A≔Vector1681.03, 1251.18,1139.85, 1008.39;IE_Period2≔Vector520.22, 899.50, 800.63, 1086.44, 1402.32, 1313.93, 1681.03, 2080.64;
AObasis≔dzp
AOmethod≔HartreeFock
IE_Group7A≔1681.030000001251.180000001139.850000001008.39000000
In this section, we calculate the energies of the neutral and cation species for Group 1A, Group 7A, and Period 2 elements and use equations (1) and (2) to determine IEs. We then plot the results along with experimental values to compare. We will use Hartree Fock theory with a DZP basis, which allows us to calculate energies of Group 1A elements up to cesium and Group 7A elements up to iodine. (For more accurate methods, see for example DensityFunctional, MP2, or Parametric2RDM. If desired, change AOmethod and AObasis in the Initialize subsection. Make sure the AObasis exists for the elements of interest.)
The following Maple input is divided into steps. The first 3 steps are used to calculated the IE of the H atom. Step 4 requires you to repeat Steps 1 - 3 to calculate IEs for the remaining elements in Group 1A. Once you have completed the series, you can plot the results and then repeat the process for Group7A and Period 2. For logistical reasons, we consider the following variables to be specified before each calculation:
Group1A series has n = 6 elements. The index m labels which atom:
H (m = 1),
Li (m = 2),
Na (m = 3),
K (m = 4),
Rb (m = 5), and
Cs (m = 6).
Num_neutral = 1, Num_cation = 0.
Group7A series has n = 4 elements. The index m labels which atom:
F (m = 1),
Cl (m = 2),
Br (m = 3), and
I (m = 4).
Num_neutral = 1,
Num_cation = 2.
Period 2 series has n = 8 elements. The index m labels which atom:
Li (m = 1),
Be (m = 2),
B (m = 3),
C (m = 4),
N (m = 5),
O (m = 6),
F (m = 7), and
Ne (m = 8).
Num_neutral = varies according to ground electron configuration and Hund's Rule,
Num_cation = varies according to ground electron configuration and Hund's Rule.
Step 1: Specify parameters
n≔8: # for Group 1A, n = 6, for Group7A, n = 4, for Period2, n = 8
m≔8: # Start with m = 1 and increase as you proceed down or across a group or period, respectively.
element≔Ne: # Provide the chemical symbol
Num_neutral≔0: # Number of unpaired electrons in neutral
Num_cation≔1: # number of unpaired electrons in cation ground electron configuration
Step 2: Calculate energies of neutral atom and cation. Determine highest occupied atomic orbital.
Atom≔element,0,0,0:Neutral≔AOmethodAtom,charge=0, spin=Num_neutral, basis=AObasis;Cation≔AOmethodAtom,charge=1, spin=Num_cation, basis=AObasis;for i from 1 by 1 while Neutralmo_occi>0 do end do;HOMO≔i−1;
HOMO≔5
Step 3: Calculate IE (in kJ/mol) using Equations (1) and (2)
IEm≔2625.50⋅Catione_tot−Neutrale_tot;
Step 4: Repeat steps 1 - 3 for each element in group or period
Step 5: Plot Ionization Energies and Compare
X≔Vectorn,i→i :A≔plotX,IE_Period2,color=Blue: B≔plotX,IE,color=Red:displayA,B
How do ionization energies compare with experimental values using Equations (1)?
Answer
We see that for the Hartree Fock method and the DZP basis, the trend in IE is correct, but as atomic number increases, the agreement decreases.
Repeat Steps 0 - 5 for Group 7A and Period 2.
How do ionization energies and trends compare with experimental values?
For both Group 7A and Period 2, the trend in calculated ionization energies compares well with experiment!
References
1. Mehler, et al., Int. J. of Quant. Chem., 35, 205 (1989).
2. Shakman and Mazziotti, J. Phys. Chem. A, 111, 7223 (2007).
3. A. Szabo and N. S. Ostlund, Modern Quantum Chemistry: Introduction to Advanced Electronic Structure Theory (Dover Books, New York, 1996).
Download Help Document