PeriodicTrends-IEs - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Periodic Trends in Ionization Energies of Atoms

Copyright (c) RDMCHEM LLC 2019

 

Overview

Initialize

Atomic Ionization Energies and Periodic Trends

Appendix

Overview

 

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).

 

Initialize

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:digits15: 

AObasisdzp;   AOmethodHartreeFock;  IEVector8,0;IE_Group1AVector1312.04, 520.22, 495.84, 418.81, 403.03, 375.70, 392.96;IE_Group7AVector1681.03, 1251.18,1139.85, 1008.39;IE_Period2Vector520.22, 899.50, 800.63, 1086.44, 1402.32, 1313.93, 1681.03, 2080.64;

AObasisdzp

AOmethodHartreeFock

IE_Group7A1681.030000001251.180000001139.850000001008.39000000

 

Atomic Ionization Energies and Periodic Trends

 

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

 

n8:      # for Group 1A, n = 6, for Group7A, n = 4, for Period2, n = 8

m8:     # Start with m = 1 and increase as you proceed down or across a group or period, respectively.

elementNe:      # Provide the chemical symbol

Num_neutral0:  # Number of unpaired electrons in neutral

Num_cation1:   # number of unpaired electrons in cation ground electron configuration

 

 

Step 2: Calculate energies of neutral atom and cation. Determine highest occupied atomic orbital.

 

Atomelement,0,0,0:NeutralAOmethodAtom,charge=0, spin=Num_neutral, basis=AObasis;CationAOmethodAtom,charge=1, spin=Num_cation, basis=AObasis;for i from 1 by 1 while Neutralmo_occi>0 do end do;HOMOi1; 

HOMO5

(3.1)

 

 

Step 3: Calculate IE (in kJ/mol) using Equations (1) and (2) 

 

IEm2625.50Catione_totNeutrale_tot;

 

 

Step 4: Repeat steps 1 - 3 for each element in group or period

 

 

Step 5: Plot Ionization Energies and Compare

 

XVectorn,ii :AplotX,IE_Period2,color=Blue: BplotX,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?

Answer

For both Group 7A and Period 2, the trend in calculated ionization energies compares well with experiment!

 

 

 

Appendix

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).