Closed-Shell Hartree-Fock: an Efficient Implementation Based On

Total Page:16

File Type:pdf, Size:1020Kb

Closed-Shell Hartree-Fock: an Efficient Implementation Based On Closed-Shell Hartree-Fock: an Efficient Implementation Based on the Contraction of Integrals in the Primitive Basis Inaugural-Dissertation zur Erlangung des Doktorgrades der Mathematisch-Naturwissenschaftlichen Fakultät der Universität zu Köln vorgelegt von Joseph Held aus München Köln 2017 Berichterstatter: Prof. Dr. M. Dolg Berichterstatter: PD Dr. M. Hanrath Tag der letzten mündlichen Prüfung: 05. Juli 2017 Meinen Eltern Abstract In this work a highly efficient, closed-shell restricted Hartree-Fock self-consistent-field (SCF) program has been developed. It has been written as a part of the “Quantum Objects Library” (QOL), which is developed at the Institute for Theoretical Chemistry at the University of Cologne. In the implementation presented here, the explicit transformation of the two-electron integrals from the primitive to the radial contracted, angularly transformed basis is avoided. The density matrix is obtained by diagonalizing the Fock matrix in the radial- angular-transformed basis. It is transformed to the primitive basis, and contracted with the integrals to give the Fock matrix, also in the primitive basis. To assure that solutions of the Fock equations are obtained in the transformed basis, the Fock matrix is transformed back to the radial contracted, angularly transformed basis after the density contraction step. Both one- and two-electron integrals are calculated using the ansatz of Obara-Saika (OS). For the evaluation of the two-electron integrals a code-generating ansatz is used. At compile time optimized code is generated, to be called at runtime. Numerical insta- bilities inherent in the Obara-Saika scheme were analyzed and eliminated. The code- generating ansatz was also used for the implementation of the density contraction. Con- traction codes for both primitive and radial-angular-transformed bases were developed. Both two-electron integral evaluation and density contraction implementations have been optimized by explicit use of streaming single instruction multiple data (SIMD) extensions (SSE). Integral prescreening has been implemented on basis of the Schwarz inequality, and the differential density scheme is used. Convergence acceleration has been realized by im- plementing the direct inversion of the iterative subspace (DIIS) method. The developed SCF program has been parallelized using the open multi-processing (OMP) application programming interface (API). In final performance comparisons to commercially available programs competitive re- sults were obtained. i Kurzzusammenfassung In dieser Arbeit wurde ein hocheffizientes, closed-shell restricted Hartree-Fock self-consis- tent-field (SCF) Programm entwickelt. Es wurde in die "‘Quantum Objects Library"’ (QOL) integriert, die am Institut für Theoretische Chemie der Universität zu Köln ent- wickelt wird. In der hier vorgestellten Implementierung wird die explizite Transformation der Zwei- Elektronen Integrale aus der primitiven in die radial kontrahierte, sphärisch trans- formierte Basis umgangen. Durch Diagonalisierung der Fock Matrix in der radial- sphärisch transformierten Basis wird die Dichte Matrix erhalten. Diese wird in die primitive Basis transformiert und mit den Integralen kontrahiert, wodurch die Fock Matrix ebenfalls in ihrer primitiven Darstellung vorliegt. Um sicherzustellen dass die Lösungen der Fock Gleichungen in der transformierten Basis erhalten werden, wird die Fock Matrix nach der Dichte Kontraktion zurück in die radial-sphärische Basis trans- formiert. Sowohl Ein- als auch Zwei-Elektronen Integrale werden mit dem Verfahren von Obara- Saika (OS) berechnet, wobei für die Zwei-Elektronen Integrale ein Code generierender Ansatz gewählt wurde. Dabei wird zum Zeitpunkt der Kompilierung optimierter Code generiert, der zur Laufzeit ausgeführt wird. Die numerischen Instabilitäten des Obara- Saika Verfahrens wurden analysiert und beseitigt. Auch auf die Implementierung der Kontraktion der Dichte wurde der Code generierende Ansatz angewandt, wobei Spe- zialisierungen sowohl für primitive als auch für sphärisch transformierte Basen erzeugt wurden. beide Implementierungen, Integral Berechnung und Dichte Kontraktion, wur- den optimiert durch die explizite Berücksichtigung der streaming single instruction mul- tiple data (SIMD) extensions (SSE). Eine Abschätzung der Integral Größenordnungen wurde auf Basis der Schwarz’schen Ungleichung umgesetzt, und das differential density scheme wird benutzt. Zur Kon- vergenz Beschleunigung kommt das direct inversion of the iterative subspace (DIIS) Verfahren zum Einsatz. Das entwickelte SCF Programm wurde mittels der open multi- processing (OMP) Programmierschnittstelle (API) parallelisiert. In finalen Vergleichen zu kommerziell erhältlichen Programmen wurden konkurrenz- fähige Resultate im Hinblick auf die Performanz erreicht. ii Contents 1. Introduction1 I. Theory5 2. Hartree-Fock Theory7 2.1. Electronic Solutions for Restricted Closed-Shell Systems.........7 2.2. The Roothaan-Hall Equations........................ 10 3. Integral Evaluation 13 3.1. Primitive Cartesian Gaussians........................ 13 3.1.1. Shells and Shell Batches....................... 15 3.2. The Obara-Saika Scheme........................... 16 3.2.1. Overlap- and Kinetic-Energy Integrals............... 16 3.2.2. Coulomb Integrals.......................... 18 4. Symmetry In Two-Electron Integrals And Batches 23 4.1. Two-Electron Integral Symmetry...................... 23 4.2. Symmetry in Batches of Two-Electron Integrals.............. 24 5. Density Contraction 27 5.1. Integral Contributions............................ 27 5.1.1. Symmetric Integrals......................... 27 5.1.2. Integrals with Broken Symmetries.................. 28 5.2. Shell Batch Contributions.......................... 29 5.2.1. Symmetric Batches.......................... 29 5.2.2. Batches with Broken Symmetries.................. 29 6. Basis Transformations 31 6.1. Atomic Basis Functions............................ 31 6.1.1. The Angular Basis.......................... 31 6.1.2. The Radial Basis........................... 33 6.1.3. Atomic Basis Functions in Terms of Primitive Cartesian Gaussians 33 6.2. Explicit Expressions for Basis Transformations............... 34 6.2.1. Two-Electron Integrals........................ 34 6.2.2. The Density Matrix.......................... 36 6.2.3. The Two-Electron Part of the Fock Matrix............. 37 iii Contents 7. Prescreening 39 7.1. The Schwarz Inequality............................ 39 7.1.1. Batches of Integrals.......................... 39 7.2. Density Screening............................... 41 7.2.1. Batches of Integrals.......................... 41 7.3. The Differential Density Scheme....................... 42 II. Implementation 43 8. Technical Details 45 8.1. Programs Used................................ 45 8.2. Basis Sets and Geometries.......................... 45 8.2.1. Basis Sets............................... 45 8.2.2. Input Geometries........................... 46 8.3. Computational Details............................ 47 8.3.1. Computational Facilities....................... 47 8.3.2. Calculational Details......................... 47 9. Numerics 49 9.1. Numerical Errors............................... 49 9.1.1. Absolute and Relative Errors.................... 50 9.1.2. Numerical Analysis.......................... 50 10.Basis Sets and Iteration 55 10.1. Molecules and Basis Sets........................... 55 10.1.1. Input Format............................. 55 10.1.2. Technical Representation....................... 56 10.2. Iterators.................................... 56 10.2.1. Basis Iterators............................. 57 10.2.2. Two- and Four-Index Iterators.................... 58 10.2.3. Arbitrary Level and Notation Iteration............... 60 11.Prescreening 63 11.1. General Implementation........................... 63 11.1.1. The MapperWithMatrix Ansatz..................... 64 11.1.2. Initialization.............................. 65 11.1.3. Calculation of the Estimate..................... 67 11.1.4. Accuracy................................ 68 11.1.5. Quality of the Estimate....................... 68 11.2. Exploiting Basis Set Hierarchies....................... 71 11.2.1. Results................................. 74 11.3. Iteration in Chemists Notation. Further Levels of Hierarchy....... 76 11.4. The Differential Density Scheme....................... 78 iv Contents 12.The Obara-Saika Integration Scheme 81 12.1. General Considerations............................ 82 12.1.1. Batchwise Evaluation......................... 82 12.1.2. Batchwise Recursion......................... 83 12.1.3. Transfer Order............................ 85 12.2. Existing Implementations.......................... 86 12.2.1. Generic Implementation....................... 86 12.2.2. The Code-Generation Approach................... 87 12.3. Numerical Instabilities............................ 90 12.3.1. Solutions................................ 93 12.3.2. Results................................. 94 12.4. Code Reduction by Using a Different Code-Generating Ansatz...... 98 12.4.1. Removing Redundancies, the Splitted Integration Ansatz..... 99 12.4.2. Shell Ordering and Index Relations................. 101 12.4.3. Generation of the Individual Batch Codes............. 103 12.4.4. Comparison of the Electron Transfers E1 and E2 .......... 109 12.5. One-Electron Integrals............................ 110 13.Density Contraction 113 13.1. Existing Implementation........................... 113 13.2. Code-Generated Implementation......................
Recommended publications
  • Arxiv:1809.04476V2 [Physics.Chem-Ph] 18 Oct 2018 (Sub)States
    Quantum System Partitioning at the Single-Particle Level Quantum System Partitioning at the Single-Particle Level Adrian H. M¨uhlbach and Markus Reihera) ETH Z¨urich, Laboratorium f¨ur Physikalische Chemie, Vladimir-Prelog-Weg 2, CH-8093 Z¨urich,Switzerland (Dated: 17 October 2018) We discuss the partitioning of a quantum system by subsystem separation through unitary block- diagonalization (SSUB) applied to a Fock operator. For a one-particle Hilbert space, this separation can be formulated in a very general way. Therefore, it can be applied to very different partitionings ranging from those driven by features in the molecular structure (such as a solute surrounded by solvent molecules or an active site in an enzyme) to those that aim at an orbital separation (such as core-valence separation). Our framework embraces recent developments of Manby and Miller as well as older ones of Huzinaga and Cantu. Projector-based embedding is simplified and accelerated by SSUB. Moreover, it directly relates to decoupling approaches for relativistic four-component many-electron theory. For a Fock operator based on the Dirac one-electron Hamiltonian, one would like to separate the so-called positronic (negative-energy) states from the electronic bound and continuum states. The exact two-component (X2C) approach developed for this purpose becomes a special case of the general SSUB framework and may therefore be viewed as a system- environment decoupling approach. Moreover, for SSUB there exists no restriction with respect to the number of subsystems that are generated | in the limit, decoupling of all single-particle states is recovered, which represents exact diagonalization of the problem.
    [Show full text]
  • A New Scalable Parallel Algorithm for Fock Matrix Construction
    A New Scalable Parallel Algorithm for Fock Matrix Construction Xing Liu Aftab Patel Edmond Chow School of Computational Science and Engineering College of Computing, Georgia Institute of Technology Atlanta, Georgia, 30332, USA [email protected], [email protected], [email protected] Abstract—Hartree-Fock (HF) or self-consistent field (SCF) ber of independent tasks and using a centralized dynamic calculations are widely used in quantum chemistry, and are scheduler for scheduling them on the available processes. the starting point for accurate electronic correlation methods. Communication costs are reduced by defining tasks that Existing algorithms and software, however, may fail to scale for large numbers of cores of a distributed machine, particularly in increase data reuse, which reduces communication volume, the simulation of moderately-sized molecules. In existing codes, and consequently communication cost. This approach suffers HF calculations are divided into tasks. Fine-grained tasks are from a few problems. First, because scheduling is completely better for load balance, but coarse-grained tasks require less dynamic, the mapping of tasks to processes is not known communication. In this paper, we present a new parallelization in advance, and data reuse suffers. Second, the centralized of HF calculations that addresses this trade-off: we use fine- grained tasks to balance the computation among large numbers dynamic scheduler itself could become a bottleneck when of cores, but we also use a scheme to assign tasks to processes to scaling up to a large system [14]. Third, coarse tasks reduce communication. We specifically focus on the distributed which reduce communication volume may lead to poor load construction of the Fock matrix arising in the HF algorithm, balance when the ratio of tasks to processes is close to one.
    [Show full text]
  • Domain Decomposition and Electronic Structure Computations: a Promising Approach
    Domain Decomposition and Electronic Structure Computations: A Promising Approach G. Bencteux1,4, M. Barrault1, E. Canc`es2,4, W. W. Hager3, and C. Le Bris2,4 1 EDF R&D, 1 avenue du G´en´eral de Gaulle, 92141 Clamart Cedex, France {guy.bencteux,maxime.barrault}@edf.fr 2 CERMICS, Ecole´ Nationale des Ponts et Chauss´ees, 6 & 8, avenue Blaise Pascal, Cit´eDescartes, 77455 Marne-La-Vall´ee Cedex 2, France, {cances,lebris}@cermics.enpc.fr 3 Department of Mathematics, University of Florida, Gainesville, FL 32611-8105, USA, [email protected] 4 INRIA Rocquencourt, MICMAC project, Domaine de Voluceau, B.P. 105, 78153 Le Chesnay Cedex, FRANCE Summary. We describe a domain decomposition approach applied to the spe- cific context of electronic structure calculations. The approach has been introduced in [BCH06]. We survey here the computational context, and explain the peculiari- ties of the approach as compared to problems of seemingly the same type in other engineering sciences. Improvements of the original approach presented in [BCH06], including algorithmic refinements and effective parallel implementation, are included here. Test cases supporting the interest of the method are also reported. It is our pleasure and an honor to dedicate this contribution to Olivier Pironneau, on the occasion of his sixtieth birthday. With admiration, respect and friendship. 1 Introduction and Motivation 1.1 General Context Numerical simulation is nowadays an ubiquituous tool in materials science, chemistry and biology. Design of new materials, irradiation induced damage, drug design, protein folding are instances of applications of numerical sim- ulation. For convenience we now briefly present the context of the specific computational problem under consideration in the present article.
    [Show full text]
  • Matrix Algebra for Quantum Chemistry
    Matrix Algebra for Quantum Chemistry EMANUEL H. RUBENSSON Doctoral Thesis in Theoretical Chemistry Stockholm, Sweden 2008 Matrix Algebra for Quantum Chemistry Doctoral Thesis c Emanuel Härold Rubensson, 2008 TRITA-BIO-Report 2008:23 ISBN 978-91-7415-160-2 ISSN 1654-2312 Printed by Universitetsservice US AB, Stockholm, Sweden 2008 Typeset in LATEX by the author. Abstract This thesis concerns methods of reduced complexity for electronic structure calculations. When quantum chemistry methods are applied to large systems, it is important to optimally use computer resources and only store data and perform operations that contribute to the overall accuracy. At the same time, precarious approximations could jeopardize the reliability of the whole calcu- lation. In this thesis, the selfconsistent eld method is seen as a sequence of rotations of the occupied subspace. Errors coming from computational ap- proximations are characterized as erroneous rotations of this subspace. This viewpoint is optimal in the sense that the occupied subspace uniquely denes the electron density. Errors should be measured by their impact on the over- all accuracy instead of by their constituent parts. With this point of view, a mathematical framework for control of errors in HartreeFock/KohnSham calculations is proposed. A unifying framework is of particular importance when computational approximations are introduced to eciently handle large systems. An important operation in HartreeFock/KohnSham calculations is the calculation of the density matrix for a given Fock/KohnSham matrix. In this thesis, density matrix purication is used to compute the density matrix with time and memory usage increasing only linearly with system size. The forward error of purication is analyzed and schemes to control the forward error are proposed.
    [Show full text]
  • Problem Set #1 Solutions
    PROBLEM SET #2 SOLUTIONS by Robert A. DiStasio Jr. Q1. 1-particle density matrices and idempotency. (a) A matrix M is said to be idempotent if M 2 = M . Show from the basic definition that the HF density matrix is idempotent when expressed in an orthonormal basis. An element of the HF density matrix is given as (neglecting the factor of two for the restricted closed-shell HF density matrix): * PCCμν = ∑ μi ν i . (1) i In matrix form, (1) is simply equivalent to † PCC= occ occ (2) where Cocc is the occupied block of the MO coefficient matrix. To reformulate the nonorthogonal Roothaan-Hall equations FC= SCε (3) into the preferred eigenvalue problem ~~ ~ FC= Cε (4) the AO basis must be orthogonalized. There are several ways to orthogonalize the AO basis, but I will only discuss symmetric orthogonalization, as this is arguably the most often used procedure in computational quantum chemistry. In the symmetric orthogonalization procedure, the MO coefficient matrix in (3) is recast as ~ + 1 − 1 ~ CSCCSC=2 ⇔ = 2 (5) which can be substituted into (3) yielding the eigenvalue form of the Roothaan-Hall equations in (4) after the following algebraic manipulation: FC = SCε − 1 ~ − 1 ~ FSCSSC( 2 )(= 2 )ε − 1 − 1 ~ −1 − 1 ~ SFSCSSSC2 ( 2 )(= 2 2 )ε . (6) −1 − 1 ~ −1 − 1 ~ ()S2 FS2 C= () S2 SS2 Cε ~~ ~ FC = Cε ~ ~ −1 − 1 −1 − 1 In (6), the dressed Fock matrix, F , was clearly defined as F≡ S2 FS 2 and S2 SS2 = S 0 =1 was used. In an orthonormal basis, therefore, the density matrix of (2) takes on the following form: ~ ~† PCC= occ occ .
    [Show full text]
  • Relativistic Cholesky-Decomposed Density Matrix
    Relativistic Cholesky-decomposed density matrix MP2 Benjamin Helmich-Paris,1, 2, a) Michal Repisky,3 and Lucas Visscher2 1)Max-Planck-Institut f¨urKohlenforschung, Kaiser-Wilhelm-Platz 1, D-45470 M¨ulheiman der Ruhr 2)Section of Theoretical Chemistry, Vrije Universiteit Amsterdam, De Boelelaan 1083, 1081 HV Amsterdam, The Netherlands 3)Hylleraas Centre for Quantum Molecular Sciences, Department of Chemistry, UiT The Arctic University of Norway, N-9037 Tromø Norway (Dated: 15 October 2018) In the present article, we introduce the relativistic Cholesky-decomposed density (CDD) matrix second-order Møller–Plesset perturbation theory (MP2) energies. The working equations are formulated in terms of the usual intermediates of MP2 when employing the resolution-of-the-identity approximation (RI) for two-electron inte- grals. Those intermediates are obtained by substituting the occupied and vir- tual quaternion pseudo-density matrices of our previously proposed two-component atomic orbital-based MP2 (J. Chem. Phys. 145, 014107 (2016)) by the corresponding pivoted quaternion Cholesky factors. While working within the Kramers-restricted formalism, we obtain a formal spin-orbit overhead of 16 and 28 for the Coulomb and exchange contribution to the 2C MP2 correlation energy, respectively, compared to a non-relativistic (NR) spin-free CDD-MP2 implementation. This compact quaternion formulation could also be easily explored in any other algorithm to compute the 2C MP2 energy. The quaternion Cholesky factors become sparse for large molecules and, with a block-wise screening, block sparse-matrix multiplication algorithm, we observed an effective quadratic scaling of the total wall time for heavy-element con- taining linear molecules with increasing system size.
    [Show full text]
  • Lecture 16 Hartree Fock Implementation
    Quantum Chemistry Lecture 16 Implementation of Hartree-Fock Theory NC State University The linear combination of atomic orbitals (LCAO) Calculations of the energy and properties of molecules requires hydrogen-like wave functions on each of the nuclei. The Hartree-Fock method begins with assumption That molecular orbitals can be formed as a linear combination of atomic orbitals. The basis functions fm are hydrogen-like atomic orbitals that have been optimized by a variational procedure. The HF procedure is a variational procedure to minimize the coefficients Cmi. Note that we use the index m for atomic orbitals and i or j for molecular orbitals. Common types of atomic orbitals Slater-type orbitals (STOs) The STOs are like hydrogen atom wave functions. The problem with STOs arises in multicenter integrals. The Coulomb and exchange integrals involve electrons on different nuclei and so the distance r has a different origin. Gaussian-type orbitals (GTOs) Gaussian orbitals can be used to mimic the shape of exponentials, i.e. the form of the solutions for the hydrogen atom. Multicenter Gaussian integrals can be solved analytically. STOs vs GTOs GTOs are mathematically easy to work with STOs vs GTOs GTOs are mathematically easy to work with, but the shape of a Gaussian is not that similar to that of an exponential. STOs vs GTOs Therefore, linear combinations of Gaussians are used to imitate the shape of an exponential. Shown is a representation of the 3-Gaussian model of a STO. Double-zeta basis sets Since the remaining atoms have a different exponential dependence than hydrogen it is often convenient to include more parameters.
    [Show full text]
  • Fock Matrix Construction for Large Systems
    Fock Matrix Construction for Large Systems Elias Rudberg Theoretical Chemistry Royal Institute of Technology Stockholm 2006 Fock Matrix Construction for Large Systems Licentiate thesis c Elias Rudberg, 2006 ISBN 91-7178-535-3 ISBN 978-91-7178-535-0 Printed by Universitetsservice US AB, Stockholm, Sweden, 2006 Typeset in LATEX by the author Abstract This licentiate thesis deals with quantum chemistry methods for large systems. In particu- lar, the thesis focuses on the efficient construction of the Coulomb and exchange matrices which are important parts of the Fock matrix in Hartree–Fock calculations. The meth- ods described are also applicable in Kohn–Sham Density Functional Theory calculations, where the Coulomb and exchange matrices are parts of the Kohn–Sham matrix. Screening techniques for reducing the computational complexity of both Coulomb and exchange com- putations are discussed, as well as the fast multipole method, used for efficient computation of the Coulomb matrix. The thesis also discusses how sparsity in the matrices occurring in Hartree–Fock and Kohn– Sham Density Functional Theory calculations can be used to achieve more efficient storage of matrices as well as more efficient operations on them. As an example of a possible type of application, the thesis includes a theoretical study of Heisenberg exchange constants, using unrestricted Kohn–Sham Density Functional Theory calculations. iii Preface The work presented in this thesis has been carried out at the Department of Theoretical Chemistry, Royal Institute of Technology, Stockholm, Sweden. List of papers included in the thesis Paper 1 Efficient implementation of the fast multipole method, Elias Rudberg and Pawe l Sa lek,J.
    [Show full text]
  • Theoretical Studies of Charge Recombination Reactions
    Theoretical studies of charge recombination reactions Sifiso Musa Nkambule Akademisk avhandling f¨oravl¨aggandeav licentiatexamen vid Stockholms universitet, Fysikum. January, 2015. Abstract This thesis is based on theoretical studies that have been done for low-energy reactions involving small molecular systems. It is mainly focusing on mutual neutralization of oppositely charged ions and dissociative recombination of molecular ions. Both reactions involve highly excited electronic states that are coupled to each other. Employing electronic structure meth- ods, the electronic states relevant to the reactions are computed. It is necessary to go beyond the Born-Oppenheimer approximation and include non-adiabatic effects. This non-adiabatic behaviour plays a crucial role in driving the reactions. Schemes on how to go about and include these coupling elements are discussed in the thesis, which include computations of non-adiabatic and electronic couplings of the resonant states to the ionisation continuum. The nuclear dynamics are studied either semi-classically, using the Landau-Zener method or quantum mechanically, employing the time-independent and time-dependant Schr¨odinger + equations. Reactions studied here are mutual neutralization in collision of H + H−, where both the semi-classical and quantum mechanical methods are employed. Total and differential cross sections are computed for all hydrogen isotopes. We also perform quantum mechanical + studies of mutual neutralization in the collision of He + H−. For this system not only the non-adiabatic couplings among the neutral states have to be considered, but also the electronic coupling to the ionization continuum. Worth noting in the two systems is that reactants and the final products belong to different electronic states, which a coupled together, hence for the reaction to take place there must be non-adiabatic transition.
    [Show full text]
  • Quaternion Symmetry in Relativistic Molecular Calculations: the Dirac–Hartree–Fock Method T
    Quaternion symmetry in relativistic molecular calculations: The Dirac–Hartree–Fock method T. Saue, H. Jensen To cite this version: T. Saue, H. Jensen. Quaternion symmetry in relativistic molecular calculations: The Dirac–Hartree– Fock method. Journal of Chemical Physics, American Institute of Physics, 1999, 111 (14), pp.6211- 6222. 10.1063/1.479958. hal-03327446 HAL Id: hal-03327446 https://hal.archives-ouvertes.fr/hal-03327446 Submitted on 27 Aug 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. JOURNAL OF CHEMICAL PHYSICS VOLUME 111, NUMBER 14 8 OCTOBER 1999 Quaternion symmetry in relativistic molecular calculations: The Dirac–Hartree–Fock method T. Sauea) and H. J. Aa Jensen Department of Chemistry, University of Southern Denmark—Main campus: Odense University, DK-5230 Odense M, Denmark ͑Received 5 April 1999; accepted 9 July 1999͒ A symmetry scheme based on the irreducible corepresentations of the full symmetry group of a molecular system is presented for use in relativistic calculations. Consideration of time-reversal symmetry leads to a reformulation of the Dirac–Hartree–Fock equations in terms of quaternion algebra. Further symmetry reductions due to molecular point group symmetry are then manifested by a descent to complex or real algebra.
    [Show full text]
  • Hartree-Fock Theory
    Hartree-Fock theory Morten Hjorth-Jensen1 National Superconducting Cyclotron Laboratory and Department of Physics and Astronomy, Michigan State University, East Lansing, MI 48824, USA1 May 16-20 2016 c 2013-2016, Morten Hjorth-Jensen. Released under CC Attribution-NonCommercial 4.0 license Why Hartree-Fock? Hartree-Fock (HF) theory is an algorithm for finding an approximative expression for the ground state of a given Hamiltonian. The basic ingredients are I Define a single-particle basis f αg so that HF h^ α = "α α with the Hartree-Fock Hamiltonian defined as HF HF h^ = t^+u ^ext +u ^ HF I The term u^ is a single-particle potential to be determined by the HF algorithm. HF I The HF algorithm means to choose u^ in order to have HF hH^i = E = hΦ0jH^jΦ0i that is to find a local minimum with a Slater determinant Φ0 being the ansatz for the ground state. HF I The variational principle ensures that E ≥ E0, with E0 the exact ground state energy. Why Hartree-Fock? We will show that the Hartree-Fock Hamiltonian h^HF equals our definition of the operator f^ discussed in connection with the new definition of the normal-ordered Hamiltonian (see later lectures), that is we have, for a specific matrix element HF X hpjh^ jqi = hpjf^jqi = hpjt^+u ^extjqi + hpijV^jqiiAS ; i≤F meaning that HF X hpju^ jqi = hpijV^jqiiAS : i≤F The so-called Hartree-Fock potential u^HF brings an explicit medium dependence due to the summation over all single-particle states below the Fermi level F .
    [Show full text]
  • Restricted Closed Shell Hartree Fock Roothaan Matrix Method Applied to Helium Atom Using Mathematica Introduction the Hartree Fo
    European J of Physics Education Volume 5 Issue 1 2014 Acosta, Tapia, Cab Restricted Closed Shell Hartree Fock Roothaan Matrix Method Applied to Helium Atom using Mathematica César R. Acosta*1 J. Alejandro Tapia1 César Cab1 1Av. Industrias no Contaminantes por anillo periférico Norte S/N Apdo Postal 150 Cordemex Physics Engineering Department Universidad Autónoma de Yucatán *[email protected] (Received: 20.12. 2013, Accepted: 13.02.2014) Abstract Slater type orbitals were used to construct the overlap and the Hamiltonian core matrices; we also found the values of the bi-electron repulsion integrals. The Hartree Fock Roothaan approximation process starts with setting an initial guess value for the elements of the density matrix; with these matrices we constructed the initial Fock matrix. The Mathematica software was used to program the matrix diagonalization process from the overlap and Hamiltonian core matrices and to make the recursion loop of the density matrix. Finally we obtained a value for the ground state energy of helium. Keywords: STO, Hartree Fock Roothaan approximation, spin orbital, ground state energy. Introduction The Hartree Fock method (Hartree, 1957) also known as Self Consistent Field (SCF) could be made with two types of spin orbital functions, the Slater Type Orbitals (STO) and the Gaussian Type Orbital (GTO), the election is made in function of the integrals of spin orbitals implicated. We used the STO to construct the wave function associated to the helium atom electrons. The application of the quantum mechanical theory was performed using a numerical method known as the finite element method, this gives the possibility to use the computer for programming the calculations quickly and efficiently (Becker, 1988; Brenner, 2008; Thomee, 2003; Reddy, 2004).
    [Show full text]