Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 1. An introduction to Molpro 2000 by Patrick S. Vogt

Size: px
Start display at page:

Download "Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 1. An introduction to Molpro 2000 by Patrick S. Vogt 21.08."

Transcription

1 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 1 An introduction to Molpro 2000 by Patrick S. Vogt

2 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 2 Why use Molpro? Molpro is faster than Gaussian. To demonstrate this some calculation with a basis set of cc-pvdz are shown: method CPU time / s Molpro 2000 Gaussian 98 HF MP CCSD CCSD (dimer) The MP2 calculation itself takes 0.02 seconds, the SCF calculation 0.03 seconds and the integral calculation 0.45 seconds

3 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 3 Getting Help The Molpro package includes a complete manual. The manual exists in two formats: PDF $MOLPRO_HOME/doc/manual.pdf HMTL $MOLPRO_HOME/doc/manual/index.html (To find your local $MOLPRO_HOME type which molpro on our UNIX prompt.) Some Molpro locations: xino: Huber Net: $MOLPRO_HOME=/soft/molpro $MOLPRO_HOME=/usr/local/src/molpro2000.1

4 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 4 On-line informations The Molpro Home-page resides at the University of Birmingham: Some topics covered: The current version of the Molpro User s manual. Some Patches correcting bugs of Molpro. The Basis library is a graphical user interface to query the basis sets available for Molpro.

5 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 5 The Input File The following code shows a simple Molpro input file, doing a Hartree-Fock geometry optimisation of water: ***, Water geometry optimisation geometry={!define the geometry O H1 O rh1o H2 O rh2o H1 ah2oh1 } rh1o=0.96 Ang!Bohr is default rh2o=0.96 Ang ah2oh1=104 basis=cc-pvtz!set the basis set hf!do SCF calclation mp2!needed for mp2 optg!optimise geometry ---

6 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 6 Structure of the Input File ***, title marks the beginning of the input file and sets the title. --- marks the end of the input file. var = value Sets a variable. Basisset and geometry are treated as variables. prog Calls a program, methods and optimisations are treated as programs. ; A semicolon marks the end of a statement and is equivalent to a newline., A comma is equivalent to a space.! Everything after a exclamation mark is a comment.

7 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 7 Specification of the Molecular Geometry The geometry variable is used to specify the molecular geometry. It has the following format: geometry={pointgroup options z-matrix or XYZ-format} pointgroup Consist of one or more X, Y or Z which specify the axes that change sign. See Molpro manual section 8.1. If z-matrix input is used Molpro determines the symmetry itself. options See Molpro manual section 8.2. nosym turns of automatic symmetry detection. Alternatively the geometry can be read from a file using GEOMETRY=file.

8 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 8 Setting the basis set There are several ways to specify the basis set: basis=cc-pvdz loads the cc-pvdz basis for all atoms. basis={def=cc-pvdz, H=cc-pvtz} loads the cc-pvtz basis for the hydrogen atoms and the cc-pvdz basis for all other atoms. The existing basis sets can be queried and downloaded at molpro_basis.

9 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 9 Non-existing Atoms Sometimes it is necessary or convenient to define atoms that do not exist. Dummy centers in z-matrices are called Q or X and show up as normal atoms in z-matrices. They are used as a center reference in z-matrices, needed to define linear chains or rings. Dummy centers to hold basis functions for bond orbitals or counterpoise calculations. You can mark an existing atom as a dummy center by writing: dummy atom-label

10 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 10 Implemented Methods Molpro implements the following methods: HF DFT MCSF CI MP2 CCSD SCF Hartree-Fock (see slide 11 or Molpro manual section 12) Density Functional Theory, using the functionals LDA, DIRAC, B88, LYP88,B-LYP, B3LYP (Molpro manual section 13) MCSCF or CASSCF calculations (Molpro manual section 15) Configuration interaction (Molpro manual section 16) Møller-Plesset correlation calculations (see slide 12 or Molpro manual section 18) Coupled-cluster correlation calculations (see slide 13 or Molpro manual section 19)

11 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 11 SCF calculations A Hartree-Fock SCF calculation is started by one of the following keywords: HF or RHF UHF for the restricted version for the unrestricted version In addition, the number of electrons, the symmetry and the spin can be specified by wf elec,sym,spin

12 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 12 Møller-Plesset perturbation theory Molpro implements the following Møller-Plesset methods: MP2, MP3 and MP4 Unlike other packages (e.g. Gaussian) Molpro does not perform a SCF calculation prior to a electron correlation calculation. Therefore the SCF program has to be called explicitly, e.g.: hf; mp2

13 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 13 Coupled-cluster calculations Molpro implements the following coupled-cluster methods, remember to call the SCF program first: CCSD and CCSD(T) perform closed-shell coupled-cluster calculations. CISD performs quadratic configuration interaction calculations. BCCD performs Brückner coupled-cluster calculations. QCI performs a closed-shell configuration interactions calculations.

14 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 14 Linear Scaling Methods The packages local and direct must be installed in order to perform linear scaling calculations. Linear scaling methods have a big over head and will therefore only be useful for big molecules. Linear scaling is achieved by: 1. Reducing disk I/O with the gdirect mode. (Two electron integrals will recomputed when used.) See Chapter 7 of the Molpro Manual. 2. Local correlation treatment with multp. See slide 15 and chapter 21 of the Molpro Manual.

15 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 15 Local Correlation Treatment (LCT) LCT is switched on by the keyword local or multp, the latter turns on some additional approximations that depend on the distance of their orbitals. Since LCT builds up molecular domains the geometry options nosym;noorient must be used. LCT is not a black box method, you should check the molecular domains and the other parameters, and therefore it is highly recommended to read chapter 21 of the Molpro manual. At the moment only local MP2 is available.

16 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 16 Geometry optimisation An automatic geometry optimisation, on the level of the last single point calculation, is started by the command: optg By default all variables are active in respect to the optimisation. The command inactive,variable can be used to exclude a variable from the optimisation. Alternatively, only listed variables can be set active in a calculation by the command active,variable.

17 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 17 The Molpro files Molpro uses the following files to store its information: file name purpose 1 Main file: contains basis set, geometry, one and two electron integrals. 2 Dump file: used to store wavefunction information 3 Auxiliary file: can be used for restarting purposes.

18 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 18 Handling files Molpro provides the following command to handle files: file, file-number, filename, [status ] The file-number refers to the numbers listed in slide 17. The filename is used by the operating system. The optional parameter status is discussed in section 5.1 of the Molpro manual. Creating permanent files for our example on slide 5 could look like: file,1,h2o.int; file,2,h2o.wf;

19 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 19 Restart a Molpro calculation Files of a former Molpro job can be used in a new calculation. The files have to be defined using the file command as shown in slide 18. Once defined, these files can be loaded by the following command: restart [list ] Where list can be empty to load all known files, or list the file-numbers to be loaded.

20 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 20 Allocation of memory Molpro uses the following syntax to allocate memory: memory,n [,scale ] Where n is the number of words and scale is a scaling factor, that can be K for 10 3 or M for Molpro allocates memory in units of words. A word indicates the number of binary digits the processor can handle in parallel. processor word-size / byte DEC Alpha 64 Cray T3e 64 NEC SX/4 64 Intel i Sun E HP N

21 Patrick S. Vogt, Institut für physikalische Chemie der Universität Basel 21 Molpro as Scripting Language Molpro knows some basic programing constructs: Do loops: do variable =start, end [, increment ] [, unit ]... enddo If statments: if (...) then... [else...] endif Procedures: proc name... endproc

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

Basis Sets in Quantum Chemistry C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology

Basis Sets in Quantum Chemistry C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Basis Sets in Quantum Chemistry C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Basis Sets Generically, a basis set is a collection of vectors which spans (defines)

More information

Q-Chem: Quantum Chemistry Software for Large Systems. Peter M.W. Gill. Q-Chem, Inc. Four Triangle Drive Export, PA 15632, USA. and

Q-Chem: Quantum Chemistry Software for Large Systems. Peter M.W. Gill. Q-Chem, Inc. Four Triangle Drive Export, PA 15632, USA. and Q-Chem: Quantum Chemistry Software for Large Systems Peter M.W. Gill Q-Chem, Inc. Four Triangle Drive Export, PA 15632, USA and Department of Chemistry University of Cambridge Cambridge, CB2 1EW, England

More information

Lecture 2: standard software and visualization tools

Lecture 2: standard software and visualization tools The underlying physical laws necessary for the mathematical theory of a large part of physics and the whole of chemistry are thus completely known, and the difficulty is only that the exact application

More information

Summary. Load and Open GaussView to start example

Summary. Load and Open GaussView to start example Summary This document describes in great detail how to navigate the Linux Red Hat Terminal to bring up GaussView, use GaussView to create a simple atomic or molecular simulation input file, and then use

More information

Lesson 3. Chemical Bonding. Molecular Orbital Theory

Lesson 3. Chemical Bonding. Molecular Orbital Theory Lesson 3 Chemical Bonding Molecular Orbital Theory 1 Why Do Bonds Form? An energy diagram shows that a bond forms between two atoms if the overall energy of the system is lowered when the two atoms approach

More information

Potential Energy Surfaces C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology

Potential Energy Surfaces C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Potential Energy Surfaces C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology Potential Energy Surfaces A potential energy surface is a mathematical function that gives

More information

Implicit and Explicit Coverage of Multi-reference Effects by Density Functional Theory

Implicit and Explicit Coverage of Multi-reference Effects by Density Functional Theory Int. J. Mol. Sci. 2002, 3, 604-638 International Journal of Molecular Sciences ISSN 1422-0067 www.mdpi.org/ijms/ Implicit and Explicit Coverage of Multi-reference Effects by Density Functional Theory Dieter

More information

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2 Unix Shell Scripts Norman Matloff July 30, 2008 Contents 1 Introduction 1 2 Invoking Shell Scripts 2 2.1 Direct Interpretation....................................... 2 2.2 Indirect Interpretation......................................

More information

Robert J. Harrison, 2/16/99. High Performance Computational Chemistry

Robert J. Harrison, 2/16/99. High Performance Computational Chemistry This work is funded by a grand-challenge application project supported by the U.S. Department of Energy, the division of Mathematics, Information and Computational Sciences, Office of Computational and

More information

TURBOMOLE. Tutorial V6.4

TURBOMOLE. Tutorial V6.4 TURBOMOLE Tutorial V6.4 APRIL 2012 Table of Contents Turbomole Usage Philosophy...4 How to create the input...6 Coordinates...6 From the structure to the calculation...7 3. The TURBOMOLE modules...8 4.

More information

Electric Dipole moments as probes of physics beyond the Standard Model

Electric Dipole moments as probes of physics beyond the Standard Model Electric Dipole moments as probes of physics beyond the Standard Model K. V. P. Latha Non-Accelerator Particle Physics Group Indian Institute of Astrophysics Plan of the Talk Parity (P) and Time-reversal

More information

VMware Server 2.0 Essentials. Virtualization Deployment and Management

VMware Server 2.0 Essentials. Virtualization Deployment and Management VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.

More information

An Introduction to Hartree-Fock Molecular Orbital Theory

An Introduction to Hartree-Fock Molecular Orbital Theory An Introduction to Hartree-Fock Molecular Orbital Theory C. David Sherrill School of Chemistry and Biochemistry Georgia Institute of Technology June 2000 1 Introduction Hartree-Fock theory is fundamental

More information

This presentation explains how to monitor memory consumption of DataStage processes during run time.

This presentation explains how to monitor memory consumption of DataStage processes during run time. This presentation explains how to monitor memory consumption of DataStage processes during run time. Page 1 of 9 The objectives of this presentation are to explain why and when it is useful to monitor

More information

Parallel Computing. Parallel shared memory computing with OpenMP

Parallel Computing. Parallel shared memory computing with OpenMP Parallel Computing Parallel shared memory computing with OpenMP Thorsten Grahs, 14.07.2014 Table of contents Introduction Directives Scope of data Synchronization OpenMP vs. MPI OpenMP & MPI 14.07.2014

More information

Analysis, post-processing and visualization tools

Analysis, post-processing and visualization tools Analysis, post-processing and visualization tools Javier Junquera Andrei Postnikov Summary of different tools for post-processing and visualization DENCHAR PLRHO DOS, PDOS DOS and PDOS total Fe, d MACROAVE

More information

HP StorageWorks MSL2024, MSL4048, and MSL8096 Tape Libraries Ultrium 3280 Fibre Channel tape drive firmware release notes

HP StorageWorks MSL2024, MSL4048, and MSL8096 Tape Libraries Ultrium 3280 Fibre Channel tape drive firmware release notes nl HP StorageWorks MSL2024, MSL4048, and MSL8096 Tape Libraries Ultrium 3280 Fibre Channel tape drive firmware release notes Version I3BW Part Number: AK378-96036 First edition: October 21, 2010 Description

More information

Administração e Optimização de BDs

Administração e Optimização de BDs Departamento de Engenharia Informática 2010/2011 Administração e Optimização de BDs Aula de Laboratório 1 2º semestre In this lab class we will address the following topics: 1. General Workplan for the

More information

Heidi H. Falden, Kasper R. Falster-Hansen, Keld L. Bak, Sten Rettrup, and Stephan P. A. Sauer*,

Heidi H. Falden, Kasper R. Falster-Hansen, Keld L. Bak, Sten Rettrup, and Stephan P. A. Sauer*, J. Phys. Chem. A 2009, 113, 11995 12012 11995 Benchmarking Second Order Methods for the Calculation of Vertical Electronic Excitation Energies: Valence and Rydberg States in Polycyclic Aromatic Hydrocarbons

More information

LISTSERV LDAP Documentation

LISTSERV LDAP Documentation LISTSERV LDAP Documentation L Soft Sweden AB 2007 28 November 2007 Overview LISTSERV version 15.5 can interface to LDAP servers to authenticate user logins, to insert LDAP attributes in mail merge distributions

More information

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance.

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance. Agenda Enterprise Performance Factors Overall Enterprise Performance Factors Best Practice for generic Enterprise Best Practice for 3-tiers Enterprise Hardware Load Balancer Basic Unix Tuning Performance

More information

Tutorial on Using Gaussview and Gaussian 94

Tutorial on Using Gaussview and Gaussian 94 1 Tutorial on Using Gaussview and Gaussian 94 Written by Vijay Gupta, with editing by M.L. and S.A. Overview Gaussian 94 takes a text file with a.com extension as an input. In this input file, the molecular

More information

Applications of Quantum Chemistry HΨ = EΨ

Applications of Quantum Chemistry HΨ = EΨ Applications of Quantum Chemistry HΨ = EΨ Areas of Application Explaining observed phenomena (e.g., spectroscopy) Simulation and modeling: make predictions New techniques/devices use special quantum properties

More information

Load Testing Hyperion Applications Using Oracle Load Testing 9.1

Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM An Oracle White Paper May 2010 Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM

More information

Web development... the server side (of the force)

Web development... the server side (of the force) Web development... the server side (of the force) Fabien POULARD Document under license Creative Commons Attribution Share Alike 2.5 http://www.creativecommons.org/learnmore Web development... the server

More information

Creating a remote command shell using default windows command line tools

Creating a remote command shell using default windows command line tools Creating a remote command shell using default windows command line tools Kevin Bong July 2008 GIAC GSE, GCIH, GCIA, GCFW, GCFA, GAWN, GSEC 1 The Goal Provide the functionality of a remote command shell

More information

Chapter 11: Input/Output Organisation. Lesson 06: Programmed IO

Chapter 11: Input/Output Organisation. Lesson 06: Programmed IO Chapter 11: Input/Output Organisation Lesson 06: Programmed IO Objective Understand the programmed IO mode of data transfer Learn that the program waits for the ready status by repeatedly testing the status

More information

Molecular-Orbital Theory

Molecular-Orbital Theory Molecular-Orbital Theory 1 Introduction Orbitals in molecules are not necessarily localized on atoms or between atoms as suggested in the valence bond theory. Molecular orbitals can also be formed the

More information

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html

Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality

More information

CentOS Linux 5.2 and Apache 2.2 vs. Microsoft Windows Web Server 2008 and IIS 7.0 when Serving Static and PHP Content

CentOS Linux 5.2 and Apache 2.2 vs. Microsoft Windows Web Server 2008 and IIS 7.0 when Serving Static and PHP Content Advances in Networks, Computing and Communications 6 92 CentOS Linux 5.2 and Apache 2.2 vs. Microsoft Windows Web Server 2008 and IIS 7.0 when Serving Static and PHP Content Abstract D.J.Moore and P.S.Dowland

More information

PrimeRail Installation Notes Version A-2008.06 June 9, 2008 1

PrimeRail Installation Notes Version A-2008.06 June 9, 2008 1 PrimeRail Installation Notes Version A-2008.06 June 9, 2008 1 These installation notes present information about installing PrimeRail version A-2008.06 in the following sections: Media Availability and

More information

Using FireFly in education and research @ home

Using FireFly in education and research @ home v 1.05 Using FireFly in education and research @ home A short introduction in Computational Chemistry & an overview of strength possibilities of FireFly and how to make calculations more efficient Part

More information

Specifications of Paradox for Windows

Specifications of Paradox for Windows Specifications of Paradox for Windows Appendix A 1 Specifications of Paradox for Windows A IN THIS CHAPTER Borland Database Engine (BDE) 000 Paradox Standard Table Specifications 000 Paradox 5 Table Specifications

More information

Usage Analysis Tools in SharePoint Products and Technologies

Usage Analysis Tools in SharePoint Products and Technologies Usage Analysis Tools in SharePoint Products and Technologies Date published: June 9, 2004 Summary: Usage analysis allows you to track how websites on your server are being used. The Internet Information

More information

CS 3530 Operating Systems. L02 OS Intro Part 1 Dr. Ken Hoganson

CS 3530 Operating Systems. L02 OS Intro Part 1 Dr. Ken Hoganson CS 3530 Operating Systems L02 OS Intro Part 1 Dr. Ken Hoganson Chapter 1 Basic Concepts of Operating Systems Computer Systems A computer system consists of two basic types of components: Hardware components,

More information

sql server best practice

sql server best practice sql server best practice 1 MB file growth SQL Server comes with a standard configuration which autogrows data files in databases in 1 MB increments. By incrementing in such small chunks, you risk ending

More information

Percona Server features for OpenStack and Trove Ops

Percona Server features for OpenStack and Trove Ops Percona Server features for OpenStack and Trove Ops George O. Lorch III Software Developer Percona Vipul Sabhaya Lead Software Engineer - HP Overview Discuss Percona Server features that will help operators

More information

Reinhard Stadler Customer Support Consultant HP Services April 2003. Analyzing data and displaying results

Reinhard Stadler Customer Support Consultant HP Services April 2003. Analyzing data and displaying results Tru64 UNIX Performance Monitoring: collect 26. DECUS Symposium 2003 in Bonn Reinhard Stadler Customer Support Consultant HP Services April 2003 Agenda Overview Collecting performance data Analyzing data

More information

Image Verification. Finding Feature Information. Restrictions for Image Verification

Image Verification. Finding Feature Information. Restrictions for Image Verification The feature allows users to automatically verify the integrity of Cisco IOS images. Thus, users can be sure that the image is protected from accidental corruption, which can occur at any time during transit,

More information

Administering the Network Analysis Module. Cisco IOS Software. Logging In to the NAM with Cisco IOS Software CHAPTER

Administering the Network Analysis Module. Cisco IOS Software. Logging In to the NAM with Cisco IOS Software CHAPTER CHAPTER 4 How you administer the NAM on your Catalyst 6500 series switch or Cisco 7600 series router depends on whether you are using the Cisco IOS software or the Catalyst operating system software. Several

More information

Exceptions to the Rule: Essbase Design Principles That Don t Always Apply

Exceptions to the Rule: Essbase Design Principles That Don t Always Apply Exceptions to the Rule: Essbase Design Principles That Don t Always Apply Edward Roske, CEO Oracle ACE Director info@interrel.com BLOG: LookSmarter.blogspot.com WEBSITE: www.interrel.com TWITTER: Eroske

More information

File Transfers. Contents

File Transfers. Contents A File Transfers Contents Overview..................................................... A-2................................... A-2 General Switch Software Download Rules..................... A-3 Using

More information

ERserver. iseries. Work management

ERserver. iseries. Work management ERserver iseries Work management ERserver iseries Work management Copyright International Business Machines Corporation 1998, 2002. All rights reserved. US Government Users Restricted Rights Use, duplication

More information

Vibrations of Carbon Dioxide and Carbon Disulfide

Vibrations of Carbon Dioxide and Carbon Disulfide Vibrations of Carbon Dioxide and Carbon Disulfide Purpose Vibration frequencies of CO 2 and CS 2 will be measured by Raman and Infrared spectroscopy. The spectra show effects of normal mode symmetries

More information

Original brief explanation

Original brief explanation Original brief explanation I installed the Shoutcast server onto a desktop and made some minor configuration changes, such as setting the passwords and the maximum number of listeners. This was quite easy

More information

Colligo Engage for Mac. Release Notes

Colligo Engage for Mac. Release Notes for Mac Release Notes Technical Requirements Devices Supported Any Mac running OSX 10.8, 10.9, or 10.10 SharePoint Platforms Supported SharePoint 2010 SharePoint 2013 SharePoint Online (Office 365) Authentication

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Social Science Research Lab American University, Washington, D.C. Web. www.american.edu/provost/ctrl/pclabs.cfm Tel. x3862 Email. SSRL@American.edu Course Objective This course provides

More information

1 The water molecule and hydrogen bonds in water

1 The water molecule and hydrogen bonds in water The Physics and Chemistry of Water 1 The water molecule and hydrogen bonds in water Stoichiometric composition H 2 O the average lifetime of a molecule is 1 ms due to proton exchange (catalysed by acids

More information

Computer Systems Structure Input/Output

Computer Systems Structure Input/Output Computer Systems Structure Input/Output Peripherals Computer Central Processing Unit Main Memory Computer Systems Interconnection Communication lines Input Output Ward 1 Ward 2 Examples of I/O Devices

More information

Where Is My Lone Pair?

Where Is My Lone Pair? Where Is My Lone Pair? Goal: In this tutorial we'll learn how to determine which orbital contains a lone pair. This is important for resonance, conjugation, and aromaticity. To master this subject you'll

More information

The programming language C. sws1 1

The programming language C. sws1 1 The programming language C sws1 1 The programming language C invented by Dennis Ritchie in early 1970s who used it to write the first Hello World program C was used to write UNIX Standardised as K&C (Kernighan

More information

Chapter 6, The Operating System Machine Level

Chapter 6, The Operating System Machine Level Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General

More information

Consolidated Packages and SubPackages Management

Consolidated Packages and SubPackages Management Consolidated Packages and SubPackages Management This document discusses how consolidated packages and software subpackages (individual and optional) are run and managed on the Cisco cbr Series Converged

More information

Django Assess Managed Nicely Documentation

Django Assess Managed Nicely Documentation Django Assess Managed Nicely Documentation Release 0.2.0 Curtis Maloney August 06, 2014 Contents 1 Settings 1 1.1 DAMN_PROCESSORS......................................... 1 1.2 DAMN_MODE_MAP..........................................

More information

CHM 579 Lab 1: Basic Monte Carlo Algorithm

CHM 579 Lab 1: Basic Monte Carlo Algorithm CHM 579 Lab 1: Basic Monte Carlo Algorithm Due 02/12/2014 The goal of this lab is to get familiar with a simple Monte Carlo program and to be able to compile and run it on a Linux server. Lab Procedure:

More information

Group Policy Startup/Shutdown script deployment Guide for Nuance PDF Converter Enterprise Patches

Group Policy Startup/Shutdown script deployment Guide for Nuance PDF Converter Enterprise Patches Group Policy Startup/Shutdown script deployment Guide for Nuance PDF Converter Enterprise Patches Product version: 8.11 Last update: December 12, 2012 Nuance Communications, Inc. All rights reserved. Subject

More information

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly

More information

This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8.

This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8. This presentation will discuss how to troubleshoot different types of project creation issues with Information Server DataStage version 8. Page 1 of 29 The objectives of this module are to list the causes

More information

64-Bit versus 32-Bit CPUs in Scientific Computing

64-Bit versus 32-Bit CPUs in Scientific Computing 64-Bit versus 32-Bit CPUs in Scientific Computing Axel Kohlmeyer Lehrstuhl für Theoretische Chemie Ruhr-Universität Bochum March 2004 1/25 Outline 64-Bit and 32-Bit CPU Examples

More information

Chapter 11 Search. www.ciaops.com 29 December 2014 Page 1. Terms

Chapter 11 Search. www.ciaops.com 29 December 2014 Page 1. Terms Terms This Windows SharePoint Services Operations Guide (WSSOPS) from the Computer Information Agency is provided as is. Every effort has been made by the author to ensure that information provided is

More information

Ckpdb and Rollforwarddb commands

Ckpdb and Rollforwarddb commands Ckpdb and Rollforwarddb commands Backup and Restoration of Ingres databases Created: November 2008 Category: Ingres Sandyxsystems.co.uk Copyright 2008 Page 1 of 5 Introduction All Ingres database administrators

More information

Chapter 10: Virtual Memory. Lesson 08: Demand Paging and Page Swapping

Chapter 10: Virtual Memory. Lesson 08: Demand Paging and Page Swapping Chapter 10: Virtual Memory Lesson 08: Demand Paging and Page Swapping Objective Learn demand paging, pages of data are only brought into the main memory when a program accesses them Learn swapping technique

More information

PCV Project: Excitons in Molecular Spectroscopy

PCV Project: Excitons in Molecular Spectroscopy PCV Project: Excitons in Molecular Spectroscopy Introduction The concept of excitons was first introduced by Frenkel (1) in 1931 as a general excitation delocalization mechanism to account for the ability

More information

Sage Grant Management System Requirements

Sage Grant Management System Requirements Sage Grant Management System Requirements You should meet or exceed the following system requirements: One Server - Database/Web Server The following system requirements are for Sage Grant Management to

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Installation Guide for Oracle Business Intelligence 11g Release 1 (11.1.1) E10539-04 April 2012 Explains how to install and deinstall Oracle Business Intelligence products (including

More information

Errata Sheet for HP OpenVMS Support of HP Integrity BL860c Server Blade

Errata Sheet for HP OpenVMS Support of HP Integrity BL860c Server Blade Errata Sheet for HP OpenVMS Support of HP Integrity BL860c Server Blade Required Patches and Installation Steps for HP OpenVMS Version 8.3 on the HP Integrity BL860c Server Blade Introduction This document

More information

Server & Workstation Installation of Client Profiles for Windows

Server & Workstation Installation of Client Profiles for Windows C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W General Notes to Prepare for Installing

More information

File Transfers. Contents

File Transfers. Contents A File Transfers Contents Overview..................................................... A-2................................... A-2 General Switch Software Download Rules..................... A-3 Using

More information

OPEN APPLICATION INTERFACE (OAI) INSTALLATION GUIDE NEC

OPEN APPLICATION INTERFACE (OAI) INSTALLATION GUIDE NEC CODE MASTER AN OPEN APPLICATION INTERFACE (OAI) INSTALLATION GUIDE NEC America, Inc. NDA-30013-006 Revision 6.0 April, 1999 Stock # 241713 LIABILITY DISCLAIMER NEC America reserves the right to change

More information

MRTG used for Basic Server Monitoring

MRTG used for Basic Server Monitoring MRTG used for Basic Server Monitoring SANS Institute Masters Presentation by T. Brian MRTG used for Basic Server Monitoring This presentation covers how-to instructions to establish basic server monitoring

More information

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode RMAN - What is Rman - Why use Rman - Understanding The Rman Architecture - Taking Backup in Non archive Backup Mode - Taking Backup in archive Mode - Enhancement in 10g For Rman - 9i Enhancement For Rman

More information

Tracking Network Changes Using Change Audit

Tracking Network Changes Using Change Audit CHAPTER 14 Change Audit tracks and reports changes made in the network. Change Audit allows other RME applications to log change information to a central repository. Device Configuration, Inventory, and

More information

24/08/2004. Introductory User Guide

24/08/2004. Introductory User Guide 24/08/2004 Introductory User Guide CSAR Introductory User Guide Introduction This material is designed to provide new users with all the information they need to access and use the SGI systems provided

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Installation Guide for Oracle Business Intelligence 11g Release 1 (11.1.1) E10539-05 February 2013 Explains how to install and deinstall Oracle Business Intelligence products (including

More information

SSL Tunnels. Introduction

SSL Tunnels. Introduction SSL Tunnels Introduction As you probably know, SSL protects data communications by encrypting all data exchanged between a client and a server using cryptographic algorithms. This makes it very difficult,

More information

Recovery BIOS Update Instructions for Intel Desktop Boards

Recovery BIOS Update Instructions for Intel Desktop Boards Recovery BIOS Update Instructions for Intel Desktop Boards All BIOS update files for Intel Desktop Boards are available on Intel's Download Center at http://downloadcenter.intel.com/. Important Notes:

More information

Release Bulletin EDI Products 5.2.1

Release Bulletin EDI Products 5.2.1 Release Bulletin EDI Products 5.2.1 Document ID: DC00191-01-0521-01 Last revised: June, 2010 Copyright 2010 by Sybase, Inc. All rights reserved. Sybase trademarks can be viewed at the Sybase trademarks

More information

Planning the Installation and Installing SQL Server

Planning the Installation and Installing SQL Server Chapter 2 Planning the Installation and Installing SQL Server In This Chapter c SQL Server Editions c Planning Phase c Installing SQL Server 22 Microsoft SQL Server 2012: A Beginner s Guide This chapter

More information

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions

More information

Name: Class: Date: 3) The bond angles marked a, b, and c in the molecule below are about,, and, respectively.

Name: Class: Date: 3) The bond angles marked a, b, and c in the molecule below are about,, and, respectively. Name: Class: Date: Unit 9 Practice Multiple Choice Identify the choice that best completes the statement or answers the question. 1) The basis of the VSEPR model of molecular bonding is. A) regions of

More information

CS 464/564 Introduction to Database Management System Instructor: Abdullah Mueen

CS 464/564 Introduction to Database Management System Instructor: Abdullah Mueen CS 464/564 Introduction to Database Management System Instructor: Abdullah Mueen LECTURE 14: DATA STORAGE AND REPRESENTATION Data Storage Memory Hierarchy Disks Fields, Records, Blocks Variable-length

More information

SERVER SETUP GUIDE CREATED BY JOHN SHEATHER 25 AUGUST 2013. SambaPOS Server Setup Guide V2.0 1 of 25

SERVER SETUP GUIDE CREATED BY JOHN SHEATHER 25 AUGUST 2013. SambaPOS Server Setup Guide V2.0 1 of 25 SERVER SETUP GUIDE CREATED BY JOHN SHEATHER 25 AUGUST 2013 SambaPOS Server Setup Guide V2.0 1 of 25 Table of Contents SambaPOS Server Setup Guide... 3 Equipment used in this setup... 3 Software Used...

More information

Dr.Backup Release Notes - Version 11.2.4

Dr.Backup Release Notes - Version 11.2.4 Dr.Backup Release Notes - Version 11.2.4 This version introduces several new capabilities into the Dr.Backup remote backup client software (rbclient). The notes below provide the details about the new

More information

Quectel Cellular Engine

Quectel Cellular Engine Cellular Engine GSM FTP AT Commands GSM_FTP_ATC_V1.1 Document Title GSM FTP AT Commands Version 1.1 Date 2010-12-28 Status Document Control ID Release GSM_FTP_ATC_V1.1 General Notes offers this information

More information

OroTimesheet 7 Installation Guide

OroTimesheet 7 Installation Guide Installation Guide Copyright 1996-2011 OroLogic Inc. http://www.orologic.com Revision 7.00 Contents I Contents Installation Guide 2 Introduction 2 Installing OroTimesheet 2 Installing OroTimesheet in stand-alone

More information

Test on IX130 Performance

Test on IX130 Performance Test on IX130 Performance This document aims to report the performance of IX130. We design a few scenarios where uses IX130, including gateway and PBX and how well the performance of handling transcoding.

More information

Virtual machines and operating systems

Virtual machines and operating systems V i r t u a l m a c h i n e s a n d o p e r a t i n g s y s t e m s Virtual machines and operating systems Krzysztof Lichota lichota@mimuw.edu.pl A g e n d a Virtual machines and operating systems interactions

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

Virtual desktops made easy

Virtual desktops made easy Product test: DataCore Virtual Desktop Server 2.0 Virtual desktops made easy Dr. Götz Güttich The Virtual Desktop Server 2.0 allows administrators to launch and maintain virtual desktops with relatively

More information

HP Operations Manager Software for Windows Integration Guide

HP Operations Manager Software for Windows Integration Guide HP Operations Manager Software for Windows Integration Guide This guide documents the facilities to integrate EnterpriseSCHEDULE into HP Operations Manager Software for Windows (formerly known as HP OpenView

More information

Windows Server 2008 R2 Essentials

Windows Server 2008 R2 Essentials Windows Server 2008 R2 Essentials Installation, Deployment and Management 2 First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution

More information

Web Conferencing Version 8.3 Troubleshooting Guide

Web Conferencing Version 8.3 Troubleshooting Guide System Requirements General Requirements Web Conferencing Version 8.3 Troubleshooting Guide Listed below are the minimum requirements for participants accessing the web conferencing service. Systems which

More information

PARALLELS SERVER 4 BARE METAL README

PARALLELS SERVER 4 BARE METAL README PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels

More information

Scaling Graphite Installations

Scaling Graphite Installations Scaling Graphite Installations Graphite basics Graphite is a web based Graphing program for time series data series plots. Written in Python Consists of multiple separate daemons Has it's own storage backend

More information

WINDOWS PROCESSES AND SERVICES

WINDOWS PROCESSES AND SERVICES OBJECTIVES: Services o task manager o services.msc Process o task manager o process monitor Task Scheduler Event viewer Regedit Services: A Windows service is a computer program that operates in the background.

More information

System Requirements - CommNet Server

System Requirements - CommNet Server System Requirements - CommNet Page 1 of 11 System Requirements - CommNet The following requirements are for the CommNet : Operating System Processors Microsoft with Service Pack 4 Microsoft Advanced with

More information

CSE 120 Principles of Operating Systems. Modules, Interfaces, Structure

CSE 120 Principles of Operating Systems. Modules, Interfaces, Structure CSE 120 Principles of Operating Systems Fall 2000 Lecture 3: Operating System Modules, Interfaces, and Structure Geoffrey M. Voelker Modules, Interfaces, Structure We roughly defined an OS as the layer

More information

How to Install SQL Server 2008

How to Install SQL Server 2008 How to Install SQL Server 2008 A Step by Step guide to installing SQL Server 2008 simply and successfully with no prior knowledge Developers and system administrators will find this installation guide

More information

Uptime Infrastructure Monitor. Installation Guide

Uptime Infrastructure Monitor. Installation Guide Uptime Infrastructure Monitor Installation Guide This guide will walk through each step of installation for Uptime Infrastructure Monitor software on a Windows server. Uptime Infrastructure Monitor is

More information