MRCI calculations in MOLPRO

Size: px
Start display at page:

Download "MRCI calculations in MOLPRO"

Transcription

1 1 MRCI calculations in MOLPRO Molpro is a software package written in Fortran and maintained by H.J. Werner and P.J. Knowles. It is often used for performing sophisticated electronic structure calculations, in particular of multireference CI type and also CCSD(T) calculations. The program is also suitable to do ab initio calculations on very large molecules using local correlation techniques, and to include an explicit r12 factor in the wave function. The latter option allows one to get very accurate results using relatively small basis sets. Nowadays Molpro benefits from the contributions of a number of authors. Moreover, this program is updated often and the complete software package includes many of the most current techniques used to solve electron structure problems. Since Molpro is quite sophisticated, the input files for the various exercises are provided to you. Your objective is to follow through the details provided here as a way of familiarizing yourself with the structure of the input and output files of Molpro. The input files for this lab are located in ~nooijen/chem440/molpro 1. Calculating the potential energy surface for the N 2 molecule (directory N2_pes). Let us start with simple single point energy calculations. The input file n2_re.inp provides the molpro input to run this calculation. To run the calculations we use a similar protocol as when running ACES2 calculations. Use a submit file in your working directory, and use a joball file to specify the calculations you wish to run. Here the joball file might read jobmolpro n2_re As with ACES2 the script jobmolpro assumes the extension for the input file (.inp) while it writes the output file with extension (.out), as it is running, and it changes it to (.out0) when the calculation is finished. This allows you to keep track of calculations. The input file for the single point calculation reads explicitly: ***,N2 Single point symmetry,x,y,z!use D2h symmetry!z-matrix N,N,Re basis=6-31g*!define basis set Re=2.1!define r for this geometry hf;!do Hartree-Fock SCF calculation escf=energy!save scf energy for this geometry ccsd(t);! run CCSD(T) calculation eccsd_t=energy! save ccsd(t) energy for printing eccsd=energc! energyc is the ccsd energy in Molpro casscf;!do CASSCF calculation. Use default active space ecasscf=energy!save CASSCF energy mrci;!do MRCI calculation. Use defaults for the orbital spaces emrci=energy(1)!save MRCI energy for first state emrci_q=energd0(1)!save MRCI+Q energy for first state (Davidson correction). {table,re,escf,ecasscf,emrci,emrci_q,eccsd,eccsd_t,!produce a table with results head, Re,HF-SCF,CASSCF,MRCI,MRCI+Q,CCSD,CCSD(T)!Define column headers for table title,results for N2, basis $basis!title for table sort,1,2,3!sort table (if neceessary) 1

2 2 The input contains comments to explain what is done (everything on a line following the exclamation mark is comment). Here we run a Hartree-Fock calculation followed by a CCSD(T) calculation, a CASSCF calculation followed by a MRCI calculation. All of the relevant energies are assigned to variables that are then printed in a Table. You can go through the Molpro output, which is very compact. At the end of the file, you find the table we asked the program to print. Results for N2, basis 6-31G* RE HF-SCF CASSCF MRCI MRCI+Q CCSD CCSD(T) We used a fairly simple input here to run all of the above calculations. Molpro chooses its defaults very carefully, and I myself find this quite impressive. It is not an easy task to figure this out in an automated fashion. Let us next calculate the potential energy surface for the N 2 molecule, using the CCSD(T) method. This method is very accurate around the equilibrium bond distance, but it breaks down at larger distances. If you try to run CCSD(T) beyond 4.2 Bohr, the calculation fails to converge. Even at 4.0 Bohr the result is no longer accurate. In Molpro it is very easy to calculate a potential energy surface. We can simply provide a list of distances. Here is the input (file n2_cc_pes.inp): ***,N2 potential symmetry,x,y,z!use D2h symmetry!z-matrix N,N,r(i) basis=6-31g*!define basis set distances=[1.5,1.6,1.7,1.8,1.9,2.0,2.1,2.2,2.3,2.4,2.5,2.6,2.8,3.0,3.2,3.4,3.6,3.8,3.9,4.0]!list of distances do i=1,#distances!loop over distances for N-N (in Bohr or atomic units) r(i)=distances(i)!save r for this geometry hf;!do Hartree-Fock SCF calculation escf(i)=energy!save scf energy for this geometry ccsd(t),maxit=100,nocheck;!run CCSD(T) calculation, with some further options. eccsd_t(i)=energy!assign ccsd(t) energy to array eccsd(i)=energc! assign ccsd energy to array enddo!end of do loop i {table,r,escf,eccsd,eccsd_t!produce a table with results head, R,HF-SCF,CCSD,CCSD(T)!modify column headers for table save,n2_cc_pes.tab!save the table in file n2_cc_pes.tab title, Potential energy surface for N2, basis $basis!title for table sort,1,2,3!sort table In setting up the calculation you are creating simple loop structures. Also if statements are possible, inside the input file! Here, we loop over the distances and at each distance, i.e. geometry r(i) we run an scf and CCSD(T) calculation. The resulting energies are saved in arrays that we can name on the fly. At the end of the input file we collect the data in a table. This table is saved as n2_cc_pes.tab and copied back to your working directory. This is what it looks like (a piece of it): 2

3 3 Potential energy surface for N2, basis 6-31G* R HF-SCF CCSD CCSD(T) Likewise we can run MRCI calculations. The input file is in n2_mrci_pes.inp, and is replicated here: ***,N2 MRCI potential symmetry,x,y,z!use D2h symmetry!z-matrix N,N,r(i) basis=6-31g*!define basis set distances=[1.5,1.6,1.7,1.8,1.9,2.0,2.1,2.2,2.3,2.4,2.5,2.6,2.8,3.0,3.2,3.4,3.6,3.8,3.9,4.0,4.2,4.6,5.0] st of distances do i=1,#distances!loop over distances for N-N (in Bohr or atomic units) r(i)=distances(i)!save r for this geometry hf;!do Hartree-Fock SCF calculation escf(i)=energy!save scf energy for this geometry casscf;!do CASSCF calculation. Use default active space ecasscf(i)=energy!save CASSCF energy mrci;!do MRCI calculation. Use defaults for the orbital spaces emrci(i)=energy(1)!save MRCI energy for first state emrci_q(i)=energd0(1)!save MRCI+Q energy for first state (Davidson correction). enddo!end of do loop i {table,r,escf,ecasscf,emrci,emrci_q!produce a table with results head, R,HF-SCF,CASSCF,MRCI,MRCI+Q!modify column headers for table save,n2_mrci_pes.tab!save the table in file n2.tab title, Potential energy surface for N2, basis $basis!title for table sort,1,2,3!sort table!li\ In the table n2_mrci_pes.tab (see where we specified this name in the input file), we collected the results at the HF-SCF, CASSCF, MRCI and MRCI+Q level. In general one would expect the MRCI+Q calculations to be most accurate. In our trial calculations we use a poor basis set, 6-31G*. To get accurate results a bigger basis set is needed, for example CC-PVTZ. This is very easy to do. Just change the basis set in each of your inputs and rerun the calculations. I have collected results in the N2_pes_TZ directory. The tables can directly be imported in excel, and you can plot the potential energy surfaces. They could be used to calculate accurate vibrational and rovibrational energies, or example using the LEVEL program developed by Professor Bob Leroy. You need to ask him for advice on how to use it! 2. Calculating electronic excitation energies of atoms: Nitrogen Atoms are well suited for testing the validity of electronic structure calculations because their wavefunctions have no contributions from rotational or vibrational motion. The hydrogen atom is the simplest atom and the solutions of the Schrödinger equation for 3

4 4 the H atom are taught in any introductory quantum mechanics class. For many-electron atoms exact solutions are not known, and an accurate technique to calculate these socalled multireference systems is to use the multireference CI method. Many-electron atoms are quite complicated because of the degeneracy of their energy levels. Many of these levels cannot be described using Hartree-Fock MO theory, but require the use of CASSCF and subsequent MRCI treatment. We will use the atomic calculations to explain more about MRCI and the various orbital spaces. As molecules (or atoms) get bigger one would need to properly select the input parameters. Let me first quickly recall what we learn on atoms in a first course on quantum mechanics. The electronic configuration of Nitrogen is 1s 2s 2p. This means we have 3 electrons in 6 spin-orbitals of p-type, which means one can distribute them in 6 6! = = = 20 ways, or we have !3! micro states. The state of highest MS = S =, ML = L= 0. This is the 4 S multiplet, 2 which accounts for 4 states in total. Any multiplet is always (2S+1)*(2L+1)-fold degenerate. Creating the state of highest M L = = 2 gives rise to the 2 D state, with 1 M =±. There are 6 more states that lead to a 2 P multiplet. In Molpro we would S 2 calculate only the state of the highest possible M S for each multiplet. This means we should be able to get 1 state of the 4 S multiplet, 5 states representing the 2 D and 3 states for the 2 P. Let us see how to accomplish this in Molpro. In order to specify the state we can use both symmetry and spin-multiplicity. Molpro uses the quantity 2S to specify spin-multiplicity, which is always an integer. To indicate the spatial symmetry we use the D 2h abelian subgroup of the full SO(3) point group. From the table below we can glean the symmetries resulting from occupying different orbitals. The so-called highest Abelian pointgroup symmetry of the nitrogen atom is D 2h. It has the following irreducible representations. Number Name Function 1 A g s 2 B 3u y 3 B 2u z 4 B 1g xy 5 B 1u z 6 B 2g xz 7 B 3g yz 8 A u xyz It is not so easy to explain how to use this information to determine the symmetry labels of atomic multiplets. Let me give you the results and some hand waving arguments. 4

5 5 For the 4 S we occupy pxpp y z. This transforms like xyz which corresponds to A u in symmetry block 8. This state preserves the spherical symmetry, and the degeneracy of the orbitals. The half-filled state is a nice and easy state to calculate. For the 2 P the states transform in the same way as the px, py, p z orbitals themselves, or like xyz,,. This corresponds to representations B1 u, B2u, B 3u in symmetry blocks 2, 3, 5. Corresponding determinants look like pxpxpz + pypypz, which transforms like z. The 2 D state is most complicated to explain. The xy, xz, yz components correspond to blocks 4, 6, and 7. There are two more states x y, z. They are in symmetry block 1. However, each D-state has three p-orbitals occupied, not 2. I have determined the symmetry block of the state, but pretending to look at the d-orbitals from the atom. In fact this is sufficiently correct. The symmetry (using the abelian subgroup) works out to be the same. We will get back to this later on. Let us now try the Molpro calculations. We will first calculate the 4 S state using CCSD(T). The calculation of the 4 S is easiest. It has an spin up electron in each of the 3 p-orbitals. We need to specify an unrestricted CCSD(T) calculation as the atom is openshell. The input files in this section are all in ~nooijen/chem440/molpro/n_atom. The following is the content of the file cc_ground_4_s.inp ***,N atom ground state: quartet S basis=cc-pvdz! title {rhf; uccsd(t); The WF keyword specifies the numer of electrons (7), the spatial D 2h irrep of the state (block 8) and the spin-multiplicity (2S=3). From the output we can get the relevant results: UCCSD(T) RHF-SCF We can run the same calculation using the MRCI approach. Here is the input file: ***,n basis=cc-pvdz {rhf;! title 5

6 6 {casscf;! do casscf calculaion! define wavefunction symmetry! do mrci calculaion! define wavefunction symmetry To run the MRCI calculation we first need to run a CASSCF calculation in general. MRCI includes a more complete description of electron correlation and is essential to get correct results. Here is the final output: MRCI CASSCF RHF-SCF You see that in this case the CASSCF and RHF=ROHF results coincide, because of the half-open shell nature of the state. The MRCI result is far more accurate as it includes electron correlation effects. You can also find the following section in the output Number of closed-shell orbitals: 1 ( ) Number of active orbitals: 4 ( ) Number of external orbitals: 9 ( ) The closed-shell orbitals refer to the 1s orbitals for the nitrogen atom. The active orbitals refer to the valence orbitals, 2s and 2p, and it lists them by number for each symmetry block. The external orbitals refer to the virtual orbitals, and this depends on the size of the basis set, which is only cc-pvdz here. Just below this output you find State symmetry 1 Number of electrons: 5 Spin symmetry=quartet Space symmetry=8 Number of states: 1 Number of CSFs: 1 (1 determinants, 4 intermediate states) Here the number of electrons is the # of active electrons (2s and 2p). It indicates we are interested in the quartet state of symmetry block 8. We have full control over all of this in the input. Let me indicate how this is done, using the following input file mrci_4_s_def.inp in which we define this information in the input file itself. 6

7 7 ***,n basis=cc-pvdz {rhf;! title! rohf calculation {casscf;! do casscf calculation OCC,2,1,1,0,1,0,0,0;! specify total occupied space FROZEN,1,0,0,0,0,0,0,0;! specify Frozen core orbitals! define wavefunction symmetry ecasscf=energy! do mrci calculation OCC,2,1,1,0,1,0,0,0;! specify occupied space CORE,1,0,0,0,0,0,0,0;! specify frozen core orbitals! define wavefunction symmetry e_4_s=energy(1)! MRCI energy eq_4_s=energd0(1)! MRCI+Q energy (Davidson correction). {aqcc;! do mraqcc calculation OCC,2,1,1,0,1,0,0,0;! specify occupied space CORE,1,0,0,0,0,0,0,0;! specify frozen core orbitals! define wavefunction symmetry {acpf;! do mracpf calculaion OCC,2,1,1,0,1,0,0,0;! specify occupied space CORE,1,0,0,0,0,0,0,0;! specify frozen core orbitals! define wavefunction symmetry We did quite a bit more here. In the CASSCF section I defined the 1s orbitals to be frozen. This means they are not optimized, but taken from the ROHF calculation. In the MRCI section I specified CORE= This means that these orbitals are not included in the treatment for electron correlation (like DROPMO= in ACES2). In the MRCI section I picked up both the MRCI and the MRCI+Q energies, as indicated. I did two more calculations, which are very similar to MRCI+Q. They are attempts to get more accurate energies and are referred to as the MR-ACPF and MR-AQCC approaches in the literature. I am just listing them here, as they are quite useful in practice. This input can be made a bit more compact for future reference. Here is the input file method_4_s.inp 7

8 8 ***,n! title basis=cc-pvdz methods=[mrci,aqcc,acpf] {rhf; {casscf;! do casscf calculaion OCC,2,1,1,0,1,0,0,0;! specify occupied space FROZEN,1,0,0,0,0,0,0,0;! specify Frozen core orbitals! define wavefunction symmetry! Calculate the ground state: quartet S do i=1,#methods method=$methods(i) {$method; OCC,2,1,1,0,1,0,0,0; CLOSED,1,0,0,0,0,0,0,0; CORE,1,0,0,0,0,0,0,0; E(i)=energy(1) E_Q(i)=energd0(1)! specify occupied space! specify closed-shell (inactive) orbitals! specify frozen core orbitals enddo! tabulate results for various methods {table, methods, E, E_Q head, method, E, E+Q save,method_4_s.tab title, total energies for N atom Quartet S state I specified a number of methods, using methods=[mrci,aqcc,acpf], created a loop over the methods and then made a table for each. This shows some of the flexibility of the Molpro input. I am impressed! Let us now attempt to get all of the valence type excited states for the Nitrogen atom. I used a common set of orbitals, corresponding to the half-filled 4 S state, which has equal population of px, py, p z and hence preserves the spherical symmetry of the orbitals. The input file N_atom/mrci_all.inp provides a (lengthy) input file to do this: 8

9 9 ***,N! title basis=cc-pvdz methods=[mrci] sym=[1,2,3,4,5,6,7,8,9] {rhf; {casscf;! do casscf calculaion OCC,2,1,1,0,1,0,0,0;! specify occupied space FROZEN,1,0,0,0,0,0,0,0;! specify Frozen core orbitals! define wavefunction symmetry! Calculate the ground state: quartet S do i=1,#methods method=$methods(i) {$method; OCC,2,1,1,0,1,0,0,0; CLOSED,1,0,0,0,0,0,0,0; CORE,1,0,0,0,0,0,0,0; E(8)=energy(1) E_Q(8)=energd0(1)! specify occupied space! specify closed-shell (inactive) orbitals! specify frozen core orbitals! Doublet D states (5 in total) {$method WF,7,4,1;! define wavefunction symmetry E(4)=energy(1) E_Q(4)=energd0(1) WF,7,6,1; E(6)=energy(1) E_Q(6)=energd0(1) WF,7,7,1; E(7)=energy(1) E_Q(7)=energd0(1) WF,7,1,1; state,2;! specifies # of states in this symmetry block 9

10 10 E(1)=energy(1) E_Q(1)=energd0(1) E(9)=energy(2) E_Q(9)=energd0(2)!# Doublet P states WF,7,2,1; E(2)=energy(1) E_Q(2)=energd0(1) WF,7,3,1; E(3)=energy(1) E_Q(3)=energd0(1) WF,7,5,1; E(5)=energy(1) E_Q(5)=energd0(1) enddo {table, sym, E, E_Q head, symmetry, MRCI, MRCI+Q save,mrci_all.tab title, MRCI total energies for N atom ground and excited states sort,2,1,3 As you can see, I am asking for many MRCI calculations, all based on the same CASSCF orbitals optimized for the 4 S state. This yields the following table (mrci_all.tab) MRCI total energies for N atom ground and excited states SYMMETRY MRCI MRCI+Q You can see one state with the lowest energy in symmetry block 8. This is the 4 S state as before. Then three degenerate states which comprise the 2 P multiplet. Finally 5 states, which are almost degenerate make up the 2 D multiplet. In reality they are exactly 10

11 11 degenerate, and this slight shift (0.1 mh) is a feature of Molpro. The above calculation is not sufficiently accurate, because we used the orbitals of the 4 S state for all of the other states too. I did this, because I wanted to determine the degeneracy of each state. Now we know. You can also verify that this information on the symmetry agrees with the prior discussion based on the irreducible representation table on page 4. In block 8, 2S=3 we find the 4 S state, in blocks 2, 3 and 5, 2S=1, we find the 2 P states, while in blocks 4, 6, and 7, 2S=1 we have easy access to the 2 D states. Two more states are found in block 1, 2S=1. Now I can target these states specifically. Let us run the calculations specified in methods_2_d.inp: ***,n! title basis=cc-pvdz $methods=[mrci,aqcc,acpf] {rhf;! use the half-open shell state {casscf;! do casscf calculation OCC,2,1,1,0,1,0,0,0;! specify occupied space FROZEN,1,0,0,0,0,0,0,0;! specify Frozen core orbitals WF,7,4,1;! define wavefunction symmetry! Calculate the doublet D state in symmetry block 4 do i=1,#methods $method=$methods(i) {$method; OCC,2,1,1,0,1,0,0,0; CLOSED,1,0,0,0,0,0,0,0; CORE,1,0,0,0,0,0,0,0; WF,7,4,1; E(i)=energy(1) E_Q(i)=energd0(1)! specify occupied space! specify closed-shell (inactive) orbitals! specify frozen core orbitals Enddo! tabulate results for various methods {table, methods, E, E_Q head, method, E, E+Q save,method_2_d.tab title, total energies for N atom Doublet D state 11

12 12 I optimize the orbitals specifically for this state: WFN, 7, 4, 1, and then run MRCI, MRCI+Q, MRACPF and MRAQCC calculations (using the loop over methods). Here are the results collected in Table method_2_d.tab total energies for N atom Doublet D state METHOD E E+Q MRCI AQCC ACPF We can run a similar calculation for the 2 P (method_2_p.inp). The calculations thus far use a fairly small basis set. You can increase the basis set, for example to cc-pvqz. Then the excitation energies can be compared to experimental results. The experiments include effects due to spin-orbit coupling, which are not included in the present calculations. I took the results from the NIST web site on atomic energy levels (see also ACES2 labs). Low lying atomic energy levels for Nitrogen atom (in cm-1). 2s 2 2p 3 4 S 3 / 2 0 2s 2 2p 3 2 D 5 / / s 2 2p 3 2 P 1 / / You can compare the results of your calculations to experiment (convert energy differences from Hartree to cm -1 ). 3. Specifying geometries for molecules in molpro. There are a number of ways to specify geometries in Molpro. A method that is particularly convenient is to import a geometry file with Cartesian coordinates obtained from another program (e.g. Gaussian or a database). Below is provided the input for a calculation on the ground state of benzene. In the Molpro/benzene directory you can find the file benzene.inp. You should see this: 12

13 13 ***,benzene! title geometry=benzene.xyz rhf casscf mrci This file may seem like it should have more information. It appears that the orbital occupancy and the closed shell orbitals have not been specified. The Hartree-Fock calculation generates these directives for the CASSCF and MRCI calculation. The geometry is specified as another file located in this directory. In the input file you are telling Molpro it is in the file benzene.xyz, which contains the information below: 12 benzene.xyz C C C C C C H H H H H H The number at the top of the document specifies the number of atoms. Below this you will find the file name and four columns. The first column tells Molpro what atom is being specified and the next three columns specify the x, y, and z coordinates in Ångstrom. This is one way to specify geometries. Read the online Molpro manual if you wish to know more about this beautiful program! 13

CASSCF and NEVPT2 calculations: Ground and excited states of multireference systems. A case study of Ni(CO)4 and the magnetic system NArO

CASSCF and NEVPT2 calculations: Ground and excited states of multireference systems. A case study of Ni(CO)4 and the magnetic system NArO CASSCF and NEVPT2 calculations: Ground and excited states of multireference systems. A case study of Ni(CO)4 and the magnetic system NArO The ground states of many molecules are often well described by

More information

Let me go through the basic steps of an MREOM calculation in ORCA. On chem440a/b the calculations can be found under ~nooijen/orca_examples_2017/mreom

Let me go through the basic steps of an MREOM calculation in ORCA. On chem440a/b the calculations can be found under ~nooijen/orca_examples_2017/mreom MREOM calculations in ORCA. The procedure to run MREOM calculations in ORCA is similar to running MREOM calculations in ACES. There are essentially three steps. 1. Determine a good set of CASSCF reference

More information

Practical Advice for Quantum Chemistry Computations. C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology

Practical Advice for Quantum Chemistry Computations. C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Practical Advice for Quantum Chemistry Computations C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Choice of Basis Set STO-3G is too small 6-31G* or 6-31G** 6 probably

More information

Theoretical UV/VIS Spectroscopy

Theoretical UV/VIS Spectroscopy Theoretical UV/VIS Spectroscopy Why is a Ruby Red When Chromium Oxide is Green? How Does a Ruby Laser Work? Goals of this Exercise: - Calculation of the energy of electronically excited states - Understanding

More information

Building a wavefunction within the Complete-Active. Cluster with Singles and Doubles formalism: straightforward description of quasidegeneracy

Building a wavefunction within the Complete-Active. Cluster with Singles and Doubles formalism: straightforward description of quasidegeneracy Building a wavefunction within the Complete-Active Active-Space Coupled-Cluster Cluster with Singles and Doubles formalism: straightforward description of quasidegeneracy Dmitry I. Lyakh (Karazin Kharkiv

More information

MO Calculation for a Diatomic Molecule. /4 0 ) i=1 j>i (1/r ij )

MO Calculation for a Diatomic Molecule. /4 0 ) i=1 j>i (1/r ij ) MO Calculation for a Diatomic Molecule Introduction The properties of any molecular system can in principle be found by looking at the solutions to the corresponding time independent Schrodinger equation

More information

Introduction to computational chemistry Exercise I: Structure and electronic energy of a small molecule. Vesa Hänninen

Introduction to computational chemistry Exercise I: Structure and electronic energy of a small molecule. Vesa Hänninen Introduction to computational chemistry Exercise I: Structure and electronic energy of a small molecule Vesa Hänninen 1 Introduction In this exercise the equilibrium structure and the electronic energy

More information

Exercise 1: Structure and dipole moment of a small molecule

Exercise 1: Structure and dipole moment of a small molecule Introduction to computational chemistry Exercise 1: Structure and dipole moment of a small molecule Vesa Hänninen 1 Introduction In this exercise the equilibrium structure and the dipole moment of a small

More information

Electron Correlation Methods

Electron Correlation Methods Electron Correlation Methods HF method: electron-electron interaction is replaced by an average interaction E HF c = E 0 E HF E 0 exact ground state energy E HF HF energy for a given basis set HF E c

More information

Figure 1: Transition State, Saddle Point, Reaction Pathway

Figure 1: Transition State, Saddle Point, Reaction Pathway Computational Chemistry Workshops West Ridge Research Building-UAF Campus 9:00am-4:00pm, Room 009 Electronic Structure - July 19-21, 2016 Molecular Dynamics - July 26-28, 2016 Potential Energy Surfaces

More information

QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C

QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C Chemistry 460 Fall 2017 Dr. Jean M. Standard November 6, 2017 QUANTUM CHEMISTRY PROJECT 3: PARTS B AND C PART B: POTENTIAL CURVE, SPECTROSCOPIC CONSTANTS, AND DISSOCIATION ENERGY OF DIATOMIC HYDROGEN (20

More information

Introduction to Hartree-Fock calculations in Spartan

Introduction to Hartree-Fock calculations in Spartan EE5 in 2008 Hannes Jónsson Introduction to Hartree-Fock calculations in Spartan In this exercise, you will get to use state of the art software for carrying out calculations of wavefunctions for molecues,

More information

Introduction to Computational Chemistry

Introduction to Computational Chemistry Introduction to Computational Chemistry Vesa Hänninen Laboratory of Physical Chemistry Chemicum 4th floor vesa.hanninen@helsinki.fi September 10, 2013 Lecture 3. Electron correlation methods September

More information

This is called a singlet or spin singlet, because the so called multiplicity, or number of possible orientations of the total spin, which is

This is called a singlet or spin singlet, because the so called multiplicity, or number of possible orientations of the total spin, which is 9. Open shell systems The derivation of Hartree-Fock equations (Chapter 7) was done for a special case of a closed shell systems. Closed shell means that each MO is occupied by two electrons with the opposite

More information

Advanced usage of MOLCAS. Ex. 1. Usage of Symmetry in Molcas

Advanced usage of MOLCAS. Ex. 1. Usage of Symmetry in Molcas Advanced usage of MOLCAS Ex 1. Symmetry in Molcas (20 min). Ex 2. Transition state optimization (30 min). Ex 3. Ways to run RASSCF program (30 min). Ex 4. Optional. Using EXPBAS module (20 min) Ex 5. Optional.

More information

IFM Chemistry Computational Chemistry 2010, 7.5 hp LAB2. Computer laboratory exercise 1 (LAB2): Quantum chemical calculations

IFM Chemistry Computational Chemistry 2010, 7.5 hp LAB2. Computer laboratory exercise 1 (LAB2): Quantum chemical calculations Computer laboratory exercise 1 (LAB2): Quantum chemical calculations Introduction: The objective of the second computer laboratory exercise is to get acquainted with a program for performing quantum chemical

More information

Hints on Using the Orca Program

Hints on Using the Orca Program Computational Chemistry Workshops West Ridge Research Building-UAF Campus 9:00am-4:00pm, Room 009 Electronic Structure - July 19-21, 2016 Molecular Dynamics - July 26-28, 2016 Hints on Using the Orca Program

More information

Chemistry 4560/5560 Molecular Modeling Fall 2014

Chemistry 4560/5560 Molecular Modeling Fall 2014 Final Exam Name:. User s guide: 1. Read questions carefully and make sure you understand them before answering (if not, ask). 2. Answer only the question that is asked, not a different question. 3. Unless

More information

Calculating Bond Enthalpies of the Hydrides

Calculating Bond Enthalpies of the Hydrides Proposed Exercise for the General Chemistry Section of the Teaching with Cache Workbook: Calculating Bond Enthalpies of the Hydrides Contributed by James Foresman, Rachel Fogle, and Jeremy Beck, York College

More information

Chem 673, Problem Set 5 Due Thursday, December 1, 2005

Chem 673, Problem Set 5 Due Thursday, December 1, 2005 otton, Problem 9.3 (assume D 4h symmetry) Additional Problems: hem 673, Problem Set 5 Due Thursday, December 1, 2005 (1) Infrared and Raman spectra of Benzene (a) Determine the symmetries (irreducible

More information

Lecture 4: methods and terminology, part II

Lecture 4: methods and terminology, part II So theory guys have got it made in rooms free of pollution. Instead of problems with the reflux, they have only solutions... In other words, experimentalists will likely die of cancer From working hard,

More information

Accurate multireference configuration interaction calculations on the lowest 1 and 3 electronic states of C 2,CN, BN, and BO

Accurate multireference configuration interaction calculations on the lowest 1 and 3 electronic states of C 2,CN, BN, and BO Accurate multireference configuration interaction calculations on the lowest 1 and 3 electronic states of C 2,CN, BN, and BO Kirk A. Peterson a) Department of Chemistry, Washington State University and

More information

ACES2 Labs. Part B: Calculating electronically excited, ionized, and electro-attached states using equation of motion coupled cluster calculations.

ACES2 Labs. Part B: Calculating electronically excited, ionized, and electro-attached states using equation of motion coupled cluster calculations. ACES2 Labs. Part B: Calculating electronically excited, ionized, and electro-attached states using equation of motion coupled cluster calculations. I. Electronically excited states. Purpose: - Calculation

More information

Computational Material Science Part II. Ito Chao ( ) Institute of Chemistry Academia Sinica

Computational Material Science Part II. Ito Chao ( ) Institute of Chemistry Academia Sinica Computational Material Science Part II Ito Chao ( ) Institute of Chemistry Academia Sinica Ab Initio Implementations of Hartree-Fock Molecular Orbital Theory Fundamental assumption of HF theory: each electron

More information

计算物理作业二. Excercise 1: Illustration of the convergence of the dissociation energy for H 2 toward HF limit.

计算物理作业二. Excercise 1: Illustration of the convergence of the dissociation energy for H 2 toward HF limit. 计算物理作业二 Excercise 1: Illustration of the convergence of the dissociation energy for H 2 toward HF limit. In this exercise, basis indicates one of the following basis sets: STO-3G, cc-pvdz, cc-pvtz, cc-pvqz

More information

Chemistry 883 Computational Quantum Chemistry

Chemistry 883 Computational Quantum Chemistry Chemistry 883 Computational Quantum Chemistry Instructor Contact Information Professor Benjamin G. Levine levine@chemistry.msu.edu 215 Chemistry Building 517-353-1113 Office Hours Tuesday 9:00-11:00 am

More information

QUANTUM CHEMISTRY PROJECT 3: ATOMIC AND MOLECULAR STRUCTURE

QUANTUM CHEMISTRY PROJECT 3: ATOMIC AND MOLECULAR STRUCTURE Chemistry 460 Fall 2017 Dr. Jean M. Standard November 1, 2017 QUANTUM CHEMISTRY PROJECT 3: ATOMIC AND MOLECULAR STRUCTURE OUTLINE In this project, you will carry out quantum mechanical calculations of

More information

AN INTRODUCTION TO QUANTUM CHEMISTRY. Mark S. Gordon Iowa State University

AN INTRODUCTION TO QUANTUM CHEMISTRY. Mark S. Gordon Iowa State University AN INTRODUCTION TO QUANTUM CHEMISTRY Mark S. Gordon Iowa State University 1 OUTLINE Theoretical Background in Quantum Chemistry Overview of GAMESS Program Applications 2 QUANTUM CHEMISTRY In principle,

More information

Practical Issues on the Use of the CASPT2/CASSCF Method in Modeling Photochemistry: the Selection and Protection of an Active Space

Practical Issues on the Use of the CASPT2/CASSCF Method in Modeling Photochemistry: the Selection and Protection of an Active Space Practical Issues on the Use of the CASPT2/CASSCF Method in Modeling Photochemistry: the Selection and Protection of an Active Space Roland Lindh Dept. of Chemistry Ångström The Theoretical Chemistry Programme

More information

Beyond the Hartree-Fock Approximation: Configuration Interaction

Beyond the Hartree-Fock Approximation: Configuration Interaction Beyond the Hartree-Fock Approximation: Configuration Interaction The Hartree-Fock (HF) method uses a single determinant (single electronic configuration) description of the electronic wavefunction. For

More information

LUMO + 1 LUMO. Tómas Arnar Guðmundsson Report 2 Reikniefnafræði G

LUMO + 1 LUMO. Tómas Arnar Guðmundsson Report 2 Reikniefnafræði G Q1: Display all the MOs for N2 in your report and classify each one of them as bonding, antibonding or non-bonding, and say whether the symmetry of the orbital is σ or π. Sketch a molecular orbital diagram

More information

Performance of Hartree-Fock and Correlated Methods

Performance of Hartree-Fock and Correlated Methods Chemistry 460 Fall 2017 Dr. Jean M. Standard December 4, 2017 Performance of Hartree-Fock and Correlated Methods Hartree-Fock Methods Hartree-Fock methods generally yield optimized geomtries and molecular

More information

Chemistry 334 Part 2: Computational Quantum Chemistry

Chemistry 334 Part 2: Computational Quantum Chemistry Chemistry 334 Part 2: Computational Quantum Chemistry 1. Definition Louis Scudiero, Ben Shepler and Kirk Peterson Washington State University January 2006 Computational chemistry is an area of theoretical

More information

The MCSCF Method *, Molecular Orbitals, Reference Spaces and COLUMBUS Input

The MCSCF Method *, Molecular Orbitals, Reference Spaces and COLUMBUS Input The MCSCF Method *, Molecular Orbitals, Reference Spaces and COLUMBUS Input Hans Lischka University of Vienna *Excerpt of a course presented by R. Shepard, Argonne National Laboratory, at the Workshop

More information

Rethinking Hybridization

Rethinking Hybridization Rethinking Hybridization For more than 60 years, one of the most used concepts to come out of the valence bond model developed by Pauling was that of hybrid orbitals. The ideas of hybridization seemed

More information

The heart of group theory

The heart of group theory The heart of group theory. We can represent a molecule in a mathematical way e.g. with the coordinates of its atoms. This mathematical description of the molecule forms a basis for symmetry operation.

More information

NMR and IR spectra & vibrational analysis

NMR and IR spectra & vibrational analysis Lab 5: NMR and IR spectra & vibrational analysis A brief theoretical background 1 Some of the available chemical quantum methods for calculating NMR chemical shifts are based on the Hartree-Fock self-consistent

More information

Transition states and reaction paths

Transition states and reaction paths Transition states and reaction paths Lab 4 Theoretical background Transition state A transition structure is the molecular configuration that separates reactants and products. In a system with a single

More information

A Computer Study of Molecular Electronic Structure

A Computer Study of Molecular Electronic Structure A Computer Study of Molecular Electronic Structure The following exercises are designed to give you a brief introduction to some of the types of information that are now readily accessible from electronic

More information

Molecular Orbitals for Ozone

Molecular Orbitals for Ozone Molecular Orbitals for Ozone Purpose: In this exercise you will do semi-empirical molecular orbital calculations on ozone with the goal of understanding the molecular orbital print out provided by Spartan

More information

Investigation of Spectroscopic Properties and Spin-Orbit Splitting in the X 2 Π and A 2 Π Electronic States of the SO + Cation

Investigation of Spectroscopic Properties and Spin-Orbit Splitting in the X 2 Π and A 2 Π Electronic States of the SO + Cation Int. J. Mol. Sci. 2012, 13, 8189-8209; doi:10.3390/ijms13078189 Article OPEN ACCESS International Journal of Molecular Sciences ISSN 1422-0067 www.mdpi.com/journal/ijms Investigation of Spectroscopic Properties

More information

Ab initio calculations for potential energy surfaces. D. Talbi GRAAL- Montpellier

Ab initio calculations for potential energy surfaces. D. Talbi GRAAL- Montpellier Ab initio calculations for potential energy surfaces D. Talbi GRAAL- Montpellier A theoretical study of a reaction is a two step process I-Electronic calculations : techniques of quantum chemistry potential

More information

Ethene. Introduction. The ethene molecule is planar (i.e. all the six atoms lie in the same plane) and has a high degree of symmetry:

Ethene. Introduction. The ethene molecule is planar (i.e. all the six atoms lie in the same plane) and has a high degree of symmetry: FY1006 Innføring i kvantefysikk og TFY4215 Kjemisk fysikk og kvantemekanikk Spring 2012 Chemical Physics Exercise 1 To be delivered by Friday 27.04.12 Introduction Ethene. Ethylene, C 2 H 4, or ethene,

More information

Computational chemistry with GAMESS: a very brief overview with examples

Computational chemistry with GAMESS: a very brief overview with examples Computational chemistry with GAMESS: a very brief overview with examples PHY-6120 Molecular Physics (Spring 2015), UConn Phys. Dept. Feb 17 th 2015 H = ħ2 2μ i Intro: V(R) for diatomic molecules + k Z

More information

NWChem: Coupled Cluster Method (Tensor Contraction Engine)

NWChem: Coupled Cluster Method (Tensor Contraction Engine) NWChem: Coupled Cluster Method (Tensor Contraction Engine) Why CC is important?! Correlation effects are important!! CC is size-extensive theory: can be used to describe dissociation processes.! Higher-order

More information

Chem 673, Problem Set 5 Due Thursday, November 29, 2007

Chem 673, Problem Set 5 Due Thursday, November 29, 2007 Chem 673, Problem Set 5 Due Thursday, November 29, 2007 (1) Trigonal prismatic coordination is fairly common in solid-state inorganic chemistry. In most cases the geometry of the trigonal prism is such

More information

Jack Simons, Henry Eyring Scientist and Professor Chemistry Department University of Utah

Jack Simons, Henry Eyring Scientist and Professor Chemistry Department University of Utah 1. Born-Oppenheimer approx.- energy surfaces 2. Mean-field (Hartree-Fock) theory- orbitals 3. Pros and cons of HF- RHF, UHF 4. Beyond HF- why? 5. First, one usually does HF-how? 6. Basis sets and notations

More information

5.4. Electronic structure of water

5.4. Electronic structure of water 5.4. Electronic structure of water Water belongs to C 2v point group, we have discussed the corresponding character table. Here it is again: C 2v E C 2 σ v (yz) σ v (xz) A 1 1 1 1 1 A 2 1 1-1 -1 B 1 1-1

More information

Relativistic and correlated calculations on the ground, excited, and ionized states of iodine

Relativistic and correlated calculations on the ground, excited, and ionized states of iodine Relativistic and correlated calculations on the ground, excited, and ionized states of iodine W. A. de Jong, L. Visscher, a) and W. C. Nieuwpoort Laboratory for Chemical Physics and Materials Science Centre,

More information

NWChem: Coupled Cluster Method (Tensor Contraction Engine)

NWChem: Coupled Cluster Method (Tensor Contraction Engine) NWChem: Coupled Cluster Method (ensor Contraction Engine) What we want to solve H Ψ = E Ψ Many Particle Systems Molecular/Atomic Physics, Quantum Chemistry (electronic Schrödinger equations) Solid State

More information

3: Many electrons. Orbital symmetries. l =2 1. m l

3: Many electrons. Orbital symmetries. l =2 1. m l 3: Many electrons Orbital symmetries Atomic orbitals are labelled according to the principal quantum number, n, and the orbital angular momentum quantum number, l. Electrons in a diatomic molecule experience

More information

Using Web-Based Computations in Organic Chemistry

Using Web-Based Computations in Organic Chemistry 10/30/2017 1 Using Web-Based Computations in Organic Chemistry John Keller UAF Department of Chemistry & Biochemistry The UAF WebMO site Practical aspects of computational chemistry theory and nomenclature

More information

Example: H 2 O (the car file)

Example: H 2 O (the car file) Example: H 2 O (the car file) As a practical example of DFT methods we calculate the energy and electronic properties of the water molecule. In order to carry out the DFT calculation you will need a set

More information

On the Development of a New Computational Chemistry Software

On the Development of a New Computational Chemistry Software On the Development of a New Computational Chemistry Software Han Ung Lee, Hayan Lee and Wilfredo Credo Chung* Department of Chemistry, De La Salle University Manila, 2401 Taft Avenue, Manila, 1004 Philippines

More information

Calculating NMR Chemical Shifts for beta-ionone O

Calculating NMR Chemical Shifts for beta-ionone O Calculating NMR Chemical Shifts for beta-ionone O Molecular orbital calculations can be used to get good estimates for chemical shifts. In this exercise we will calculate the chemical shifts for beta-ionone.

More information

Conformational energy analysis

Conformational energy analysis Lab 3 Conformational energy analysis Objective This computational project deals with molecular conformations the spatial arrangement of atoms of molecules. Conformations are determined by energy, so the

More information

The successful wavefunction can be written as a determinant: # 1 (2) # 2 (2) Electrons. This can be generalized to our 2N-electron wavefunction:

The successful wavefunction can be written as a determinant: # 1 (2) # 2 (2) Electrons. This can be generalized to our 2N-electron wavefunction: T2. CNDO to AM1: The Semiempirical Molecular Orbital Models The discussion in sections T2.1 T2.3 applies also to ab initio molecular orbital calculations. T2.1 Slater Determinants Consider the general

More information

Lec20 Fri 3mar17

Lec20 Fri 3mar17 564-17 Lec20 Fri 3mar17 [PDF]GAUSSIAN 09W TUTORIAL www.molcalx.com.cn/wp-content/uploads/2015/01/gaussian09w_tutorial.pdf by A Tomberg - Cited by 8 - Related articles GAUSSIAN 09W TUTORIAL. AN INTRODUCTION

More information

Chemistry 5021/8021 Computational Chemistry 3/4 Credits Spring Semester 2000 ( Due 4 / 3 / 00 )

Chemistry 5021/8021 Computational Chemistry 3/4 Credits Spring Semester 2000 ( Due 4 / 3 / 00 ) Chemistry 5021/8021 Computational Chemistry 3/4 Credits Spring Semester 2000 ( Due 4 / 3 / 00 ) This problem set will take longer than the last one in the sense that you may need to submit some jobs, leave,

More information

Accurate description of potential energy surfaces by ab initio methods : a review and application to ozone

Accurate description of potential energy surfaces by ab initio methods : a review and application to ozone Accurate description of potential energy surfaces by ab initio methods : a review and application to ozone Péter G. Szalay Laboratory of Theoretical Chemistry Institute of Chemistry Eötvös Loránd University,

More information

The Potential Energy Surface

The Potential Energy Surface The Potential Energy Surface In this section we will explore the information that can be obtained by solving the Schrödinger equation for a molecule, or series of molecules. Of course, the accuracy of

More information

Chapter 5 Equations for Wave Function

Chapter 5 Equations for Wave Function Chapter 5 Equations for Wave Function In very simple cases, the explicit expressions for the SALCs could be deduced by inspection, but not for complicated system. It would be useful for cases like these

More information

Atom-molecule molecule collisions in spin-polarized polarized alkalis: potential energy surfaces and quantum dynamics

Atom-molecule molecule collisions in spin-polarized polarized alkalis: potential energy surfaces and quantum dynamics Atom-molecule molecule collisions in spin-polarized polarized alkalis: potential energy surfaces and quantum dynamics Pavel Soldán, Marko T. Cvitaš and Jeremy M. Hutson University of Durham with Jean-Michel

More information

Using Symmetry to Generate Molecular Orbital Diagrams

Using Symmetry to Generate Molecular Orbital Diagrams Using Symmetry to Generate Molecular Orbital Diagrams review a few MO concepts generate MO for XH 2, H 2 O, SF 6 Formation of a bond occurs when electron density collects between the two bonded nuclei

More information

Project 3: Molecular Orbital Calculations of Diatomic Molecules. This project is worth 30 points and is due on Wednesday, May 2, 2018.

Project 3: Molecular Orbital Calculations of Diatomic Molecules. This project is worth 30 points and is due on Wednesday, May 2, 2018. Chemistry 362 Spring 2018 Dr. Jean M. Standard April 20, 2018 Project 3: Molecular Orbital Calculations of Diatomic Molecules In this project, you will investigate the molecular orbitals and molecular

More information

An Accurate Calculation of Potential Energy Curves and Transition Dipole Moment for Low-Lying Electronic States of CO

An Accurate Calculation of Potential Energy Curves and Transition Dipole Moment for Low-Lying Electronic States of CO Commun. Theor. Phys. 59 (2013) 193 198 Vol. 59, No. 2, February 15, 2013 An Accurate Calculation of Potential Energy Curves and Transition Dipole Moment for Low-Lying Electronic States of CO LU Peng-Fei

More information

Gaussian Basis Sets for Solid-State Calculations

Gaussian Basis Sets for Solid-State Calculations Gaussian Basis Sets for Solid-State Calculations K. Doll Molpro Quantum Chemistry Software Institute of Theoretical Chemistry, D-70569 Stuttgart, Germany MW-MSSC 2017, Minneapolis, July 10, 2017 Introduction

More information

Intermission: Let s review the essentials of the Helium Atom

Intermission: Let s review the essentials of the Helium Atom PHYS3022 Applied Quantum Mechanics Problem Set 4 Due Date: 6 March 2018 (Tuesday) T+2 = 8 March 2018 All problem sets should be handed in not later than 5pm on the due date. Drop your assignments in the

More information

XYZ file format Protein Data Bank (pdb) file format Z - matrix

XYZ file format Protein Data Bank (pdb) file format Z - matrix Chemistry block (exercise 1) In this exercise, students will be introduced how to preform simple quantum chemical calculations. Input files for Gaussian09. Output file structure. Geometry optimization,

More information

Lec20 Wed 1mar17 update 3mar 10am

Lec20 Wed 1mar17 update 3mar 10am 564-17 Lec20 Wed 1mar17 update 3mar 10am Figure 15.2 Shows that increasing the diversity of the basis set lowers The HF-SCF energy considerably, but comes nowhere near the exact experimental energy, regardless

More information

QUANTUM CHEMISTRY FOR TRANSITION METALS

QUANTUM CHEMISTRY FOR TRANSITION METALS QUANTUM CHEMISTRY FOR TRANSITION METALS Outline I Introduction II Correlation Static correlation effects MC methods DFT III Relativity Generalities From 4 to 1 components Effective core potential Outline

More information

Introduction to Ab Initio Quantum Chemical Computation

Introduction to Ab Initio Quantum Chemical Computation c:\374-17\computation\computation17.doc for 9mar17 Prof. Patrik Callis 8mar17 Introduction to Ab Initio Quantum Chemical Computation Purpose: 1. To become acquainted with basic concepts of ab initio quantum

More information

Ch120 - Study Guide 10

Ch120 - Study Guide 10 Ch120 - Study Guide 10 Adam Griffith October 17, 2005 In this guide: Symmetry; Diatomic Term Symbols; Molecular Term Symbols Last updated October 27, 2005. 1 The Origin of m l States and Symmetry We are

More information

Handbook of Computational Quantum Chemistry. DAVID B. COOK The Department of Chemistry, University of Sheffield

Handbook of Computational Quantum Chemistry. DAVID B. COOK The Department of Chemistry, University of Sheffield Handbook of Computational Quantum Chemistry DAVID B. COOK The Department of Chemistry, University of Sheffield Oxford New York Tokyo OXFORD UNIVERSITY PRESS 1998 CONTENTS 1 Mechanics and molecules 1 1.1

More information

Introduction to numerical projects

Introduction to numerical projects Introduction to numerical projects Here follows a brief recipe and recommendation on how to write a report for each project. Give a short description of the nature of the problem and the eventual numerical

More information

4 Post-Hartree Fock Methods: MPn and Configuration Interaction

4 Post-Hartree Fock Methods: MPn and Configuration Interaction 4 Post-Hartree Fock Methods: MPn and Configuration Interaction In the limit of a complete basis, the Hartree-Fock (HF) energy in the complete basis set limit (ECBS HF ) yields an upper boundary to the

More information

2~:J~ -ryej- r- 2 Jr. A - f3. sr(djk nv~tor rn~ +~ rvjs (::-CJ) ::;-1-.'--~ -. rhd. ('-.Ji.L.~ )- r'-d)c, -r/~ JJr - 2~d ~2-Jr fn'6.

2~:J~ -ryej- r- 2 Jr. A - f3. sr(djk nv~tor rn~ +~ rvjs (::-CJ) ::;-1-.'--~ -. rhd. ('-.Ji.L.~ )- r'-d)c, -r/~ JJr - 2~d ~2-Jr fn'6. .~, ~ I, sr(djk nv~tor rn~ +~ rvjs (::-CJ) ::;-1-.'--~ -. rhd. ('-.Ji.L.~ )- r'-d)c, -r/~ JJr - 2~d ~2-Jr fn'6.)1e'" 21t-ol Je C'...-------- lj-vi, J? Jr Jr \Ji 2~:J~ -ryej- r- 2 Jr A - f3 c _,~,= ~,.,w._..._.

More information

Basic introduction of NWChem software

Basic introduction of NWChem software Basic introduction of NWChem software Background NWChem is part of the Molecular Science Software Suite Designed and developed to be a highly efficient and portable Massively Parallel computational chemistry

More information

CHEM3023: Spins, Atoms and Molecules

CHEM3023: Spins, Atoms and Molecules CHEM3023: Spins, Atoms and Molecules Lecture 5 The Hartree-Fock method C.-K. Skylaris Learning outcomes Be able to use the variational principle in quantum calculations Be able to construct Fock operators

More information

Gaussian: Basic Tutorial

Gaussian: Basic Tutorial Input file: # hf sto-g pop=full Water - Single Point Energy 0 H.0 H.0 H 04.5 Route Section Start with # Contains the keywords Gaussian: Basic Tutorial Route Section Title Section Charge-Multiplicity Molecule

More information

Quantum Theory of Angular Momentum and Atomic Structure

Quantum Theory of Angular Momentum and Atomic Structure Quantum Theory of Angular Momentum and Atomic Structure VBS/MRC Angular Momentum 0 Motivation...the questions Whence the periodic table? Concepts in Materials Science I VBS/MRC Angular Momentum 1 Motivation...the

More information

Chem 4502 Introduction to Quantum Mechanics and Spectroscopy 3 Credits Fall Semester 2014 Laura Gagliardi. Lecture 21, November 12, 2014

Chem 4502 Introduction to Quantum Mechanics and Spectroscopy 3 Credits Fall Semester 2014 Laura Gagliardi. Lecture 21, November 12, 2014 Chem 4502 Introduction to Quantum Mechanics and Spectroscopy 3 Credits Fall Semester 204 Laura Gagliardi Lecture 2, November 2, 204 (Some material in this lecture has been adapted from Cramer, C. J. Essentials

More information

Electronic structure theory: Fundamentals to frontiers. 1. Hartree-Fock theory

Electronic structure theory: Fundamentals to frontiers. 1. Hartree-Fock theory Electronic structure theory: Fundamentals to frontiers. 1. Hartree-Fock theory MARTIN HEAD-GORDON, Department of Chemistry, University of California, and Chemical Sciences Division, Lawrence Berkeley National

More information

Chem 673, Problem Set 5 Due Tuesday, December 2, 2008

Chem 673, Problem Set 5 Due Tuesday, December 2, 2008 Chem 673, Problem Set 5 Due Tuesday, December 2, 2008 (1) (a) Trigonal bipyramidal (tbp) coordination is fairly common. Calculate the group overlaps of the appropriate SALCs for a tbp with the 5 d-orbitals

More information

Dipole Moment and Electronic Structure Calculations of the Electronic States of the molecular ion SiN +

Dipole Moment and Electronic Structure Calculations of the Electronic States of the molecular ion SiN + Applied Physics Research; Vol. 8, No. 4; 2016 ISSN 1916-9639 E-ISSN 1916-9647 Published by Canadian Center of Science and Education Dipole Moment and Electronic Structure Calculations of the Electronic

More information

only two orbitals, and therefore only two combinations to worry about, but things get

only two orbitals, and therefore only two combinations to worry about, but things get 131 Lecture 1 It is fairly easy to write down an antisymmetric wavefunction for helium since there are only two orbitals, and therefore only two combinations to worry about, but things get complicated

More information

Computational Chemistry I

Computational Chemistry I Computational Chemistry I Text book Cramer: Essentials of Quantum Chemistry, Wiley (2 ed.) Chapter 3. Post Hartree-Fock methods (Cramer: chapter 7) There are many ways to improve the HF method. Most of

More information

Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom.

Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom. Chemistry 356 017: Problem set No. 6; Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom. The H atom involves spherical coordinates and angular momentum, which leads to the shapes

More information

Literature values: ΔH f, gas = % error Source: ΔH f, solid = % error. For comparison, your experimental value was ΔH f = phase:

Literature values: ΔH f, gas = % error Source: ΔH f, solid = % error. For comparison, your experimental value was ΔH f = phase: 1 Molecular Calculations Lab: Some guideline given at the bottom of page 3. 1. Use the semi-empirical AM1 method to calculate ΔH f for the compound you used in the heat of combustion experiment. Be sure

More information

A One-Slide Summary of Quantum Mechanics

A One-Slide Summary of Quantum Mechanics A One-Slide Summary of Quantum Mechanics Fundamental Postulate: O! = a! What is!?! is an oracle! operator wave function (scalar) observable Where does! come from?! is refined Variational Process H! = E!

More information

NPA/NBO-Analysis. Examples POP =

NPA/NBO-Analysis. Examples POP = NPA/NBO-Analysis Examples POP = NBO Requests a full Natural Bond Orbital analysis, using NBO version 3 NPA Requests just the Natural Population Analysis phase of NBO. NBORead Requests a full NBO analysis,

More information

Chemistry 3502 Physical Chemistry II (Quantum Mechanics) 3 Credits Fall Semester 2003 Christopher J. Cramer. Lecture 25, November 5, 2003

Chemistry 3502 Physical Chemistry II (Quantum Mechanics) 3 Credits Fall Semester 2003 Christopher J. Cramer. Lecture 25, November 5, 2003 Chemistry 3502 Physical Chemistry II (Quantum Mechanics) 3 Credits Fall Semester 2003 Christopher J. Cramer Lecture 25, November 5, 2003 (Some material in this lecture has been adapted from Cramer, C.

More information

Lecture 9 Electronic Spectroscopy

Lecture 9 Electronic Spectroscopy Lecture 9 Electronic Spectroscopy Molecular Orbital Theory: A Review - LCAO approximaton & AO overlap - Variation Principle & Secular Determinant - Homonuclear Diatomic MOs - Energy Levels, Bond Order

More information

Potential energy curves for neutral and multiply charged carbon monoxide

Potential energy curves for neutral and multiply charged carbon monoxide PRAMANA c Indian Academy of Sciences Vol. 74, No. 1 journal of January 2010 physics pp. 49 55 Potential energy curves for neutral and multiply charged carbon monoxide PRADEEP KUMAR 1 and N SATHYAMURTHY

More information

Answers Quantum Chemistry NWI-MOL406 G. C. Groenenboom and G. A. de Wijs, HG00.307, 8:30-11:30, 21 jan 2014

Answers Quantum Chemistry NWI-MOL406 G. C. Groenenboom and G. A. de Wijs, HG00.307, 8:30-11:30, 21 jan 2014 Answers Quantum Chemistry NWI-MOL406 G. C. Groenenboom and G. A. de Wijs, HG00.307, 8:30-11:30, 21 jan 2014 Question 1: Basis sets Consider the split valence SV3-21G one electron basis set for formaldehyde

More information

The general solution of Schrödinger equation in three dimensions (if V does not depend on time) are solutions of time-independent Schrödinger equation

The general solution of Schrödinger equation in three dimensions (if V does not depend on time) are solutions of time-independent Schrödinger equation Lecture 17 Page 1 Lecture 17 L17.P1 Review Schrödinger equation The general solution of Schrödinger equation in three dimensions (if V does not depend on time) is where functions are solutions of time-independent

More information

Conformational Analysis of n-butane

Conformational Analysis of n-butane Conformational Analysis of n-butane In this exercise you will calculate the Molecular Mechanics (MM) single point energy of butane in various conformations with respect to internal rotation around the

More information

MODELING MATTER AT NANOSCALES

MODELING MATTER AT NANOSCALES MODELING MATTER AT NANOSCALES 6. The theory of molecular orbitals for the description of nanosystems (part II) 6.0. Ab initio methods. Basis functions. Luis A. Monte ro Firmado digitalmente por Luis A.

More information

This is a very succinct primer intended as supplementary material for an undergraduate course in physical chemistry.

This is a very succinct primer intended as supplementary material for an undergraduate course in physical chemistry. 1 Computational Chemistry (Quantum Chemistry) Primer This is a very succinct primer intended as supplementary material for an undergraduate course in physical chemistry. TABLE OF CONTENTS Methods...1 Basis

More information

Molecular Simulation I

Molecular Simulation I Molecular Simulation I Quantum Chemistry Classical Mechanics E = Ψ H Ψ ΨΨ U = E bond +E angle +E torsion +E non-bond Jeffry D. Madura Department of Chemistry & Biochemistry Center for Computational Sciences

More information