Bonding through Code
eBook - ePub

Bonding through Code

Theoretical Models for Molecules and Materials

  1. 230 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Bonding through Code

Theoretical Models for Molecules and Materials

Book details
Book preview
Table of contents
Citations

About This Book

This timely and unique publication is designed for graduate students and researchers in inorganic and materials chemistry and covers bonding models and applications of symmetry concepts to chemical systems. The book discusses the quantum mechanical basis for molecular orbital concepts, the connections between molecular orbitals and localized views of bonding, group theory, bonding models for a variety of compounds, and the extension of these ideas to solid state materials in band theory. Unlike other books, the concepts are made tangible to the readers by guiding them through their implementation in MATLAB functions. No background in MATLAB or computer programming is needed; the book will provide the necessary skills.

Key Features



  • Visualization of the Postulates of Quantum Mechanics to build conceptual understanding


  • MATLAB functions for rendering molecular geometries and orbitals


  • Do-it-yourself approach to building a molecular orbital and band theory program


  • Introduction to Group Theory harnessing the 3D graphing capabilities of MATLAB


  • Online access to a growing collection of applications of the core material and other appendices

Bonding through Code is ideal for first-year graduate students and advanced undergraduates in chemistry, materials science, and physics. Researchers wishing to gain new tools for theoretical analysis or deepen their understanding of bonding phenomena can also benefit from this text.

About the Author

Daniel Fredrickson is a Professor in the Department of Chemistry at the University of Wisconsinā€“Madison, where his research group focuses on understanding and harnessing the structural chemistry of intermetallic phases using a combination of theory and experiment. His interests in crystals, structure, and bonding can be traced to his undergraduate research at the University of Washington (B.S. in Biochemistry, 2000) with Prof. Bart Kahr, his Ph.D. studies at Cornell University (2000ā€“2005) with Profs. Stephen Lee and Roald Hoffmann, and his post-doctoral work with Prof. Sven Lidin at Stockholm University (2005ā€“2008). As part of his teaching at UWā€“Madison since 2009, he has worked to enhance his department's graduate course, Physical Inorganic Chemistry I: Symmetry and Bonding, through the incorporation of new material and the development of computer-based exercises.

Frequently asked questions

Simply head over to the account section in settings and click on ā€œCancel Subscriptionā€ - itā€™s as simple as that. After you cancel, your membership will stay active for the remainder of the time youā€™ve paid for. Learn more here.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Both plans give you full access to the library and all of Perlegoā€™s features. The only differences are the price and subscription period: With the annual plan youā€™ll save around 30% compared to 12 months on the monthly plan.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, weā€™ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes, you can access Bonding through Code by Daniel C. Fredrickson in PDF and/or ePUB format, as well as other popular books in Physical Sciences & Inorganic Chemistry. We have over one million books available in our catalogue for you to explore.

Information

Publisher
CRC Press
Year
2020
ISBN
9780429531873

CHAPTER 1

The Postulates of Quantum Mechanics

Chemical bonding is a quantum mechanical phenomenon. As such, we will need familiarity with the properties and behavior of quantum mechanical systems as we work our way from the electronic structure of atoms to increasingly complex molecules and solids. In this first chapter, we will review the fundamental assumptions underlying quantum mechanics (as are covered in more detail in textbooks such as I. N. Levine, Quantum Chemistry, Pearson), while simultaneously seeing how they can be realized in the language of MATLABĀ®, which we will be using to express and explore bonding concepts throughout this book. To illustrate these postulates, we will make use of a common model system: The particle in a box.
Postulate 1: The state of a system is given by its wavefunction. All that can be known about the system is obtainable from this function.
There are several ways in which this wavefunction can be expressed. When writing equations down on paper, we might express it as a function of the coordinates of the particles in a system: Ļˆ(x,y,z) for a single electron, Ļˆ(x,y,z,Ļƒ) for an electron with a specific spin, or Ļˆ(x 1 ,y 1 ,z 1 ,Ļƒ 1 ,x 2 ,y 2 ,z 2 ,Ļƒ 2 , ā€¦, x N ,y N ,z N ,Ļƒ N ) for an N-electron system. Alternatively, the wavefunction Ļˆ can be expressed in terms of a series of basis functions, Ļ• n: Ļˆ = āˆ‘ n c n Ļ• n , where the state of the system can be completely expressed with the set of coefficients {c n}. When using such basis sets, Ļˆ can then be written as a vector of coefficients,
Ļˆ = ( c 1 c 2 c 3 ā‹® ) ,
and manipulated using matrix math. Finally, a more general notation can be used, which does not refer to any specific mathematical form for the state of the system: The bra-ket notation of Dirac. Here, the state of the system is specified as | Ļˆ āŒŖ = āˆ‘ n c n | Ļ• n āŒŖ .
Both the functional and vector formats for the wavefunction can be implemented in MATLAB. To see this, letā€™s consider the stationary states for an electron placed in a one-dimensional box of length a, whose potential energy is 0 within the box and āˆž outside of it. As we will see in more detail below, the stationary states of this system are given by the functions Ļˆ n = ( 2 a ) 1 2 sin ( Ļ€ n a x ) , where n is a positive integer going over the different possible states of the system. Such a function can be created in MATLAB by opening the editor, and typing in the following:
function psi = particle_in_box_psi(x,a,n)
psi = (2/a)^0.5*sin(pi*n*x/a);
Here, the first line serves to define the properties of the function, with ā€œpsiā€ being the output variable, ā€œparticle _ in _ box _ psiā€ being the name of the function, and ā€œx,a,nā€ being the names of parameters that are given when the function is called. The second line does the actual work of the function, computing the value of psi from the values that are given for x,a,n. Once this function is typed in, it can be saved as the file ā€œparticle _ in _ box _ psi.mā€.
Whenever this file is in your active directory (or a path is given to its location), y...

Table of contents

  1. Cover
  2. Half-Title
  3. Title
  4. Copyright
  5. Dedication
  6. Contents
  7. Acknowledgments
  8. About the Author
  9. CHAPTER 1 The Postulates of Quantum Mechanics
  10. CHAPTER 2 Atoms and Atomic Orbitals
  11. CHAPTER 3 Overlap between Atomic Orbitals
  12. CHAPTER 4 Introduction to Molecular Orbital Theory
  13. CHAPTER 5 The Molecular Orbitals of N2
  14. CHAPTER 6 Heteronuclear Diatomic Molecules
  15. CHAPTER 7 Symmetry Operations
  16. CHAPTER 8 Symmetry Groups
  17. CHAPTER 9 Group Theory and Basis Sets
  18. CHAPTER 10 The MOs of H2O
  19. CHAPTER 11 MOs of the Trigonal Planar Geometry
  20. CHAPTER 12 Walsh Diagrams and Molecular Shapes
  21. CHAPTER 13 Getting Started with Transition Metals
  22. CHAPTER 14 Translational Symmetry and Band Structures
  23. INDEX