Summary. Load and Open GaussView to start example

Size: px
Start display at page:

Download "Summary. Load and Open GaussView to start example"

Transcription

1 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 Gaussian to solve the electronic structure of the atom or molecule. Load and Open GaussView to start example 1. Log on to the opteron.crc.nd.edu front end machine (type: ssh X opteron.crc.nd.edu) 2. cd into the folder you are using for this class. Once in that folder, create a folder for this session. 3. Modules a. The University of Notre Dame owns licenses to several pieces of software that we can all use. It stores these software in modules. b. To see the software currently loaded, type: module list c. To see the software that is available, type: module avail d. For this class we will be using Gaussian and GaussView a lot. Gaussian is the actual code that does the calculation while Gaussview is a graphical user interface used to create input files and view output files. In order to load this software, type: module load gaussview/5.08 and press enter. Loading GaussView also loads Gaussian automatically. e. To open GaussView, type gv & i. The & allows you to run programs in the background and still have a command prompt to work with Example: Optimizing NH 3 4. When you open GaussView, 3 windows appear: the Gaussview program, a New window, and a GaussView tips window. You can close the GaussView tips window. 5. Building a molecule a. From the GaussView 5.08 window, select View Builder to bring up the molecule builder b. In the builder window, click on the 6 C button, which allows you to add an element fragment to your molecule. A periodic table will appear. c. From the periodic table, select Nitrogen. d. At the bottom of the periodic table, it shows you what fragments are available for that particular atom. For nitrogen, the default fragment is nitrogen with 3 bonds e. To build this fragment, click anywhere in the New window. i. An NH 3 molecule should appear. GaussView automatically attaches hydrogens if the fragment you select has dangling bonds. This can sometimes be inconvenient. If you do not want hydrogens you should select the Atom fragment. ii. As long as the 6 C button (in Builder window) is selected, every click in the New Window produces whatever fragment is selected. This is great if you are creating a molecule but inconvenient if you simply want to modify an existing molecule. You must select a different option in the Builder window to avoid adding extraneous atoms. A good choice is the inquire button, which is the icon showing a question mark and a ruler. It is normally used to measure distances, etc. 6. Setting up a calculation a. We can now set up a Gaussian input file that will tell Gaussian how to optimize the electronic structure of NH3. To do this, in the GaussView window, select Calculate Last updated 2/9/2012 by Jason Bray 1

2 Gaussian Calculation Setup i. A box labeled Gaussian Calculation Setup and containing information on the calculation will appear. b. We want to optimize our structure, so in order to do this, go to the Job Type tab. c. Click on the drop down menu and select Optimization d. More options will appear i. We want to optimize to a minimum, so that box is ok 1. If we wanted to optimize to a transition state, we would change this drop down menu to TS(Berny) ii. We don t need to calculate force constants so the default is ok iii. If you wanted a tighter convergence criterion, you would click on that box, but for this example leave it unchecked e. Next, go the Method tab; in this tab, you define your basis set and other electronic structure parameters i. For all of the calculations you will be doing, you will want to perform a ground state calculation, so leave the default setting in this menu ii. In the second drop down menu, you select the specific method you want to use to calculate your molecule with 1. In this case, we will use the default HartreeFock 2. If you choose a different method, such as DFT, other options will appear iii. In the third drop down menu, we want to use the default Default Spin; this will be the case for the majority of your calculations iv. On the next line, we choose the basis set 1. For this example, choose 3-21G v. The next two drop down menus we will leave blank. The first is if we want to add diffuse functions. The second is used if we want to add polarizability. vi. Obviously the charge for this molecule is 0 so we leave the default vii. For this calculation set the Spin to be Singlet f. In the Title tab, give your job a name, such as NH3 Optimization g. The Link 0 tab, sets up some of the parameters of the computer you will run the job on i. Memory Limit Specify to be 100 MW ii. Chkpoint File Default name 1. For most of the calculations you will perform, the checkpoint file is not needed and since it is a huge file, it will just take up much needed space. 2. However, if you wish to look at the molecular orbitals or electrostatic potential maps, then it will be needed. iii. Readwrite File - Don t save iv. Linda Workers - Don t use v. Shared Processors Specifies how many processors you want to run your job on 1. For this example, specify 2 2. For larger systems, you may want to specify more processors. h. In the General tab, uncheck Write Connectivity and check Additional Print i. Selecting Additional Print prints more information in the output file, this will be useful for some of your homework assignments i. The rest of the tabs we will not use for this job but in some instances those might prove useful. Particularly useful is the additional keywords box. As useful as Gaussview is, it does not contain all of the possible commands/keywords used with the Gaussian program. Last updated 2/9/2012 by Jason Bray 2

3 Here you can enter additional keywords separated by spaces for example, hfs gfprint pop=full. You will have to use some of these keywords for your homework. For other Gaussian keywords you can check i. hfs specifies the Hartree Fock Slater method ii. gfprint and pop=full print extra orbital information in the output file. 7. In order to save, click Edit at the bottom of the window a. A new window will pop up asking you if you want to save, click Save b. Save the file in the folder you made earlier for this lab session i. Save it as something that will help you know what it is such as: NH3 ii. Gaussian adds the extension.com to input files. 8. Once you save, a new window will appear, showing you the input file in the vi text editor. If you are fluent in vi you can edit using this window if needed. Otherwise, close this window. 9. Once you close the input file, a new window will appear asking if you would like to submit the input file. Click Cancel. If you click OK, Gausview will attempt to run the Gaussian program on the front end machine. We are not allowed to do that. 10. Open the newly created input file in your favorite editor (emacs, gedit, etc.) to verify that all is well and make any changes as needed. Submitting jobs to the CRC computers 11. Now that we have our input file setup, we want to submit it to the CRC computers. The CRC computers are public computers that anyone on campus (with a CRC account) can submit jobs to. 12. In order to submit to the CRC computers, we must first be logged into a CRC front end machine (you should already be logged in to opteron) 13. To submit your job to the CRC computers, you will need a submission script. I have already made a basic submission script. First, cd into the folder that contains the Gaussian input file you just created. To gain a copy of submission script, type the following in the command prompt: cp /afs/crc.nd.edu/user/w/wschnei1/cbe547/gaussian_lab/gaussian09script./yourjobname a. This will copy the file gaussian09script from the class directory to the file named yourjobname (submission script) located in the directory you are currently in. 14. Type ls and you will see that you now have the file yourjobname in your directory. 15. To view and edit the submission script, type emacs yourjobname & and press enter. An emacs window with the contents your submission script should have opened. 16. I now will go through what the file means a. #! /bin/csh i. tells us what type of shell we are using, in this case the Cshell ii. the shell allows an interface for users b. #$ -pe smp 2 i. smp specifies which parallel environment we will be submitting our jobs to. ii. 2 indicates the number of processors that we are requesting to use iii. usually one must ensure that the parallel environment you submit to, the number of processors you specify here, and the number of processors you specified in the input file are all consistent c. #$ -M yournetid@nd.edu i. first change the yournetid part to your netid ii. this specifies that the job scheduler will you Last updated 2/9/2012 by Jason Bray 3

4 d. #$ -m abe i. this specifies that the scheduler will you when the job either begins (b), is aborted (a), or ends (e). e. module load gaussian/09 i. this loads the gaussian program onto the CRC computer that will run your job f. g09 inputfile.com i. This command initiates Gaussian version 09 and tells it to look for the input file named inputfile.com 17. For each new job you want to run, it is useful to make a separate directory containing a new input file and a copy of this submission script, appropriately named of course. 18. Once you are done making the necessary changes, type Ctrlx Ctrls. This saves the file. 19. We are now ready to submit our job to the CRC computers. Exit emacs by typing Ctrlx Ctrlc. 20. Return to your terminal prompt, you should be in the folder that contains both your input file (NH3.com) and your submission script (yourjobname). It is important that both the input file and the job file are contained in the same folder, if they are not, your job will not run. At the terminal prompt type: qsub yourjobname and press enter. This submits your job using the script we just edited. To submit any job, you will always use the qsub command. 21. To see the status of your job, enter: qstat u netid a. qw means your job is in the queue but has not run yet b. t means your job is transmitting to the processors c. r means your job is currently running Viewing Output Files 22. The main output file of Gaussian is.log file 23. Since it will take a little bit before everyone s job finishes, we will look at my example output file. 24. To do this, in the terminal command line, type: cp /afs/crc.nd.edu/user/w/wschnei1/cbe547/dmccalma/nh3test/optimization/nh3opt.log./ 25. Open the example output file in emacs by typing emacs NH3opt.log & and pressing enter 26. The first part of the log file tells you about the Gaussian program and what you input into the program. Since we ran an optimization, it steps through the optimization of the molecule. 27. The easiest way to see the different optimization steps is, in emacs, type Ctrls This will search the upcoming sections of the document for whatever you type next (there is a corresponding command for searching previous sections of the document, Ctrlr) In the mini command line in emacs you will see: I-search: 28. Type: optimization Emacs will take you to the first instance of this word in the document. 29. If you type Ctrls again, it will take you to the next instance of optimization. Keep hitting Ctrls until you come to the instance where it says: Optimization completed. Stationary point found. Above this line, it will tell you if the molecule converged according to four different criteria. Make sure that each one says YES. There can be instances where it says that the optimization completed but one of the criteria will say NO. If this occurs, you will need to run the simulation from this starting point and try and optimize the structure again. 30. If the optimization did not complete, this line will instead say: Optimization failed. Again, if this occurs, you will want to run the optimization again starting from this last point. 31. Next, you will want to visualize the output. Even though the log file says that the optimization was completed, it is possible that the structure is not the one you would have predicted or you may get something undesirable or weird, so make sure that you always visualize the output. Last updated 2/9/2012 by Jason Bray 4

5 32. To visualize the output, in GaussView click File Open. Change the file type to Gaussian Output Files (*.out *.log) and open the NH3opt.log file. You would also use this file to generate a new input file in GaussView if you needed to continue your job from this point. 33. The optimized structure will pop up. Obviously for this simple molecule, it is what we expect. 34. To find the optimized energy of this structure, click on Results Summary. A summary box will pop up. The energy is listed in Hartrees. 35. You can see what the bond lengths are by clicking on the Inquire tool (in the Builder or at the top of the GaussView window) and selecting two of the atoms. When you do this the bond length will be shown in the message bar at the bottom of the window (make sure your mouse isn t hovering over any of the atoms). You can also see what the bond angles are by clicking on three atoms in sequence. The angle will be displayed instead of the bond length. 36. To view the occupancies of the orbitals click on Edit MOs. You can save this diagram by clicking on the Diagram tab followed by Export Picture. You can create images of molecular orbitals following the same procedure below for electrostatic potentials (with a couple small differences that you can figure out on your own). Creating Electrostatic Potential (ESP) Maps in GaussView: 37. Copy the example checkpoint file by typing cp /afs/crc.nd.edu/user/w/wschnei1/cbe547/dmccalma/nh3test/optimization/nh3opt.chk./ 38. Now open this file with Gaussview by selecting File Open, setting file type to Gaussian Checkpoint files (*.chk), and selecting the file you want to open 39. Select Results Surfaces. A Surfaces and Contours window should pop up. 40. Select the Cube Actions drop down menu. a. Select New Cube. b. In the Type box using the drop down menu select Total Density. c. Leave all options as the default. d. Select OK. e. A line of data will appear in the Cubes Available box. It should say Electron density from Total SCF Density. 41. Select the Surface Actions drop down menu. Select New Mapped Surface. a. In the window select the second radio button Generate values only at surface points b. From the drop down menu, select ESP. Leave other options the same and choose OK. c. A line of data will appear in the Surfaces Available box, and a colored isosurface should appear in the molecule window. The isosurface is represents a uniform charge density, and the electrostatic potential is mapped onto this isosurface with a colormap representation. d. You may have to edit the scale in the display window to make the colormap transition smoothly from red through yellow and green to blue. 42. To change the display a. Select View Display Format b. Click on the Surface tab. c. At the format drop down menu select either mesh, solid, or transparent. d. The Z-Clip slider (min to max) can also be adjusted to alter the way the surface is viewed. i. It may be used to remove the foremost portions of the image to allow views into the interior of the molecular display. 43. To save the image select File Save Image File a. Name it whatever you want Last updated 2/9/2012 by Jason Bray 5

6 b. Choose your favorite image file format c. Select the button at the bottom that says White Background d. You may want to change the box with a 3 to a 1 or 2, so the pictures are not huge. e. Click OK Practice 44. If there is time remaining in the session begin homework 2. Last updated 2/9/2012 by Jason Bray 6

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

Installing S500 Power Monitor Software and LabVIEW Run-time Engine

Installing S500 Power Monitor Software and LabVIEW Run-time Engine EigenLight S500 Power Monitor Software Manual Software Installation... 1 Installing S500 Power Monitor Software and LabVIEW Run-time Engine... 1 Install Drivers for Windows XP... 4 Install VISA run-time...

More information

Mercy s Remote Access Instructions

Mercy s Remote Access Instructions Mercy s Remote Access Instructions ~~~~~~~~~~~~~~ Section A Windows 2000 / XP ~~~~~~~~~~~~~~ I. Install Meditech............................... A1 II. Install VPN Client............................. A3

More information

User s Manual CAREpoint EMS Workstation D-Scribe Reporting System

User s Manual CAREpoint EMS Workstation D-Scribe Reporting System 1838021B User s Manual CAREpoint EMS Workstation D-Scribe Reporting System EDITORS NOTE FORM BUILDER IS A PART OF D-SCRIBE S REPORTING SYSTEM (D-SCRIBE S FORM BUILDER). FORMS WHICH ARE CREATED AND/OR USED

More information

Visualization Plugin for ParaView

Visualization Plugin for ParaView Alexey I. Baranov Visualization Plugin for ParaView version 1.3 Springer Contents 1 Visualization with ParaView..................................... 1 1.1 ParaView plugin installation.................................

More information

New To Blackboard: Faculty Edition

New To Blackboard: Faculty Edition Bb Abbreviation for Blackboard /ilearn Edit Mode is in the upper-right corner of Bb and must be ON for you to modify your course content. Click the icon to turn edit on or off. The Action Link contains

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Customizing your Blackboard Course

Customizing your Blackboard Course Customizing your Blackboard Course Changing the visual appearance Menu Buttons Changing your course buttons can add a splash of color to your course and make it more visually appealing to your students.

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

ChamberMaster - QuickBooks Guide

ChamberMaster - QuickBooks Guide ChamberMaster - QuickBooks Guide CHAMBERMASTER ChamberMaster QuickBooks Guide ChamberMaster A Division of MicroNet, Inc. 14391 Edgewood Drive Baxter MN 56425 218.825.9200 800.825.9171 support@chambermaster.com

More information

Teacher References archived classes and resources

Teacher References archived classes and resources Archived Classes At the end of each school year, the past year s academic classes are archived, meaning they re still kept in finalsite, but are put in an inactive state and are not accessible by students.

More information

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES LESSON 13 Managing Devices OBJECTIVES After completing this lesson, you will be able to: 1. Open System Properties. 2. Use Device Manager. 3. Understand hardware profiles. 4. Set performance options. Estimated

More information

Lab 1 Beginning C Program

Lab 1 Beginning C Program Lab 1 Beginning C Program Overview This lab covers the basics of compiling a basic C application program from a command line. Basic functions including printf() and scanf() are used. Simple command line

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

Voltage Drop Calculator. User Guide Version 2

Voltage Drop Calculator. User Guide Version 2 Voltage Drop Calculator TABLE OF CONTENTS 1 DOWNLOAD AND INSTALLATION...3 1.1 Downloading...3 1.2 Installation...4 2 USING THE CALCULATOR....5 2.1 New Project...5 2.2 Open a Project...6 2.3 Check for Updates...8

More information

Version 4.1 USER S MANUAL Technical Support (800) 870-1101

Version 4.1 USER S MANUAL Technical Support (800) 870-1101 ESSENTIAL FORMS Version 4.1 USER S MANUAL Technical Support (800) 870-1101 401 Francisco St., San Francisco, CA 94133 (800) 286-0111 www.essentialpublishers.com (c) Copyright 2004 Essential Publishers,

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

First Bytes Programming Lab 2

First Bytes Programming Lab 2 First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed

More information

Visualization with OpenDX

Visualization with OpenDX Alexey I. Baranov Visualization with OpenDX User s Guide Springer Contents 1 Visualization with OpenDX..................................... 1 1.1 OpenDX module installation.................................

More information

Creating Acrobat Forms Acrobat 9 Professional

Creating Acrobat Forms Acrobat 9 Professional Creating Acrobat Forms Acrobat 9 Professional Acrobat forms typically have an origin from another program, like Word, Illustrator, Publisher etc. Doesn t matter. You design the form in another application

More information

VisIt Visualization Tool

VisIt Visualization Tool The Center for Astrophysical Thermonuclear Flashes VisIt Visualization Tool Randy Hudson hudson@mcs.anl.gov Argonne National Laboratory Flash Center, University of Chicago An Advanced Simulation and Computing

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013 Millennium FAST Finance Reporting Memorial University of Newfoundland September 2013 User Guide Version 4.0 FAST Finance User Guide Page i Contents Introducing FAST Finance Reporting 4.0... 2 What is FAST

More information

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7 5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows 7 Introduction Print and complete this lab. In this lab, you will use Windows built-in utilities to gather information about

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members ProjectWise Explorer V8i User Manual for Subconsultants & Team Members submitted to Michael Baker International Subconsultants & Team Members submitted by Michael Baker International ProjectWise Support

More information

NEIU D2L and Google Drive: File Sharing Guide

NEIU D2L and Google Drive: File Sharing Guide NEIU D2L and Google Drive: File Sharing Guide Contents: Store Files in Google Drive, Not in Desire2Learn Phase 1: Place Files in Google Drive Phase 2: Create Sharing Links for Google Drive Files Phase

More information

Lab 1: Introduction to the network lab

Lab 1: Introduction to the network lab CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,

More information

Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas

Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas ACF Supercomputer Access Instructions 1 Instructions for Accessing the Advanced Computing Facility Supercomputing Cluster at the University of Kansas ACF Supercomputer Access Instructions 2 Contents Instructions

More information

CreativeConferencing passionate about communication

CreativeConferencing passionate about communication simplicity personified CreativeGlance Managing a Glance Web Conference Creative s Glance Web Conference is a powerful yet simple data tool that allows you to show your computer screen and any application

More information

Quick Start Using DASYLab with your Measurement Computing USB device

Quick Start Using DASYLab with your Measurement Computing USB device Quick Start Using DASYLab with your Measurement Computing USB device Thank you for purchasing a USB data acquisition device from Measurement Computing Corporation (MCC). This Quick Start document contains

More information

CMS/ Custom Maintenance Software. Operating Manual

CMS/ Custom Maintenance Software. Operating Manual CMS/ Custom Maintenance Software Operating Manual 2 TABLE OF CONTENTS Logging on and Startup... Pg. 3 My CMS Pg. 3 Work Orders Creating Work Orders.. Pg. 5 Assigning Work Orders... Pg. 6 Assigning More

More information

REMOTE DESKTOP SETUP INSTRUCTIONS

REMOTE DESKTOP SETUP INSTRUCTIONS REMOTE DESKTOP SETUP INSTRUCTIONS 1. Setting up your work desktop to allow Remote Desktop connectivity Windows does not have this feature enabled by default, so we will go through the steps on how to enable

More information

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 Contents Contents INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 IMPORT UPDATES 12 CUSTOM TEXT FIELDS MAPPING 13

More information

Contents What is OneDrive?... 1 Accessing OneDrive... 1 Uploading a File... 1 Create a New Folder... 1 Download a Document... 2 Delete a Document...

Contents What is OneDrive?... 1 Accessing OneDrive... 1 Uploading a File... 1 Create a New Folder... 1 Download a Document... 2 Delete a Document... Microsoft OneDrive Contents What is OneDrive?... 1 Accessing OneDrive... 1 Uploading a File... 1 Create a New Folder... 1 Download a Document... 2 Delete a Document... 2 Move a Document to a Folder...

More information

Using Remote Desktop to access your Office Computer or Faculty Remote Desktop Server August, 2005 This document consists of two main parts and an

Using Remote Desktop to access your Office Computer or Faculty Remote Desktop Server August, 2005 This document consists of two main parts and an Using Remote Desktop to access your Office Computer or Faculty Remote Desktop Server August, 2005 This document consists of two main parts and an addendum. The first part will be the steps required to

More information

(GXFDWLRQ Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007

(GXFDWLRQ Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007 Backpack Manual 2007 LearningStation. All rights reserved. 9/21/2007 LearningStation, Inc. 8008 Corporate Center Drive Suite 210 Charlotte, NC 28226 704-926-5400 888-679-7058 LSCsupport@learningstation.com

More information

Lab 0: Preparing your laptop for the course OS X

Lab 0: Preparing your laptop for the course OS X Lab 0: Preparing your laptop for the course OS X Four pieces of software are needed to complete this course: 1. VMD Views and analyses molecular models. 2. NAMD Performs molecular dynamics simulations.

More information

How to use SURA in three simple steps:

How to use SURA in three simple steps: How to use SURA in three simple steps: Most of SURA s functionality can be accessed through these three steps. 1) Download SURA to your computer Go to the SU Downloads page to obtain the SURA utility.

More information

4 Other useful features on the course web page. 5 Accessing SAS

4 Other useful features on the course web page. 5 Accessing SAS 1 Using SAS outside of ITCs Statistical Methods and Computing, 22S:30/105 Instructor: Cowles Lab 1 Jan 31, 2014 You can access SAS from off campus by using the ITC Virtual Desktop Go to https://virtualdesktopuiowaedu

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

Getting Started With Mortgage MarketSmart

Getting Started With Mortgage MarketSmart Getting Started With Mortgage MarketSmart We are excited that you are using Mortgage MarketSmart and hope that you will enjoy being one of its first users. This Getting Started guide is a work in progress,

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

USER MANUAL SlimComputer

USER MANUAL SlimComputer USER MANUAL SlimComputer 1 Contents Contents...2 What is SlimComputer?...2 Introduction...3 The Rating System...3 Buttons on the Main Interface...5 Running the Main Scan...8 Restore...11 Optimizer...14

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

AIM Dashboard-User Documentation

AIM Dashboard-User Documentation AIM Dashboard-User Documentation Accessing the Academic Insights Management (AIM) Dashboard Getting Started Navigating the AIM Dashboard Advanced Data Analysis Features Exporting Data Tables into Excel

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

How to Configure Windows 8.1 to run ereports on IE11

How to Configure Windows 8.1 to run ereports on IE11 How to Configure Windows 8.1 to run ereports on IE11 Description: Windows 8.1 ships with IE10, but can be updated to IE11. There is a special mode in IE11 called Enterprise Mode that can be used to emulate

More information

ICP Data Entry Module Training document. HHC Data Entry Module Training Document

ICP Data Entry Module Training document. HHC Data Entry Module Training Document HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC

More information

Installing and Using No Machine to connect to the Redhawk Cluster. Mac version

Installing and Using No Machine to connect to the Redhawk Cluster. Mac version Installing and Using No Machine to connect to the Redhawk Cluster Mac version No Machine (also called NX) is a tool that can be used to connect to Miami s Redhawk cluster when a graphical interface is

More information

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault

EVault for Data Protection Manager. Course 361 Protecting Linux and UNIX with EVault EVault for Data Protection Manager Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab...

More information

First Time On-Campus Remote Desktop Connection ipad Edition

First Time On-Campus Remote Desktop Connection ipad Edition First Time On-Campus Remote Desktop Connection ipad Edition General: This guide is a step-by-step guide for configuring and using an ipad to remotely connect to a work computer from on campus. This guide

More information

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions..

Table of Contents. 1. Overview... 3. 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3. 2. Installation Instructions.. Table of Contents 1. Overview..... 3 1.1 Materials Required. 3 1.2 System Requirements. 3 1.3 User Mode 3 2. Installation Instructions.. 4 2.1 Installing the On Call Diabetes Management Software. 4 2.2

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

Department of Information Technology. Microsoft Outlook 2013. Outlook 101 Basic Functions

Department of Information Technology. Microsoft Outlook 2013. Outlook 101 Basic Functions Department of Information Technology Microsoft Outlook 2013 Outlook 101 Basic Functions August 2013 Outlook 101_Basic Functions070713.doc Outlook 101: Basic Functions Page 2 Table of Contents Table of

More information

Converting an AutoCAD Drawing into PDF File

Converting an AutoCAD Drawing into PDF File Tutorial Created by Brijesh Bhatha, 2004. Updated 2006 by Corinne Stewart (corinnestewart@gmail.com) CP-208 Plan Preparation Studio - Prof. Elizabeth Macdonald 2 In this tutorial we will learn to create

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

Basic Introduction. GMFX MetaTrader 4.0. Basic Introduction

Basic Introduction. GMFX MetaTrader 4.0. Basic Introduction GMFX GMFX About Got Money FX Got Money FX is an Australian owned and operated foreign exchange brokerage firm. We pride ourselves in offering our clients an honest and ethical trading environment. Clients

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Instructions for Connecting to PACS outside of a Regional Facility

Instructions for Connecting to PACS outside of a Regional Facility Instructions for Connecting to PACS outside of a Regional Facility For support, please contact the ehealth Saskatchewan Helpdesk at 1-888-316-7446 Recommended options provide optimal performance 1 The

More information

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc. WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software

More information

Microsoft Outlook 2007 Calendar Features

Microsoft Outlook 2007 Calendar Features Microsoft Outlook 2007 Calendar Features Participant Guide HR Training and Development For technical assistance, please call 257-1300 Copyright 2007 Microsoft Outlook 2007 Calendar Objectives After completing

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

WinSearch Email Basics

WinSearch Email Basics WinSearch Email Basics Topics for Discussion In today s training we will cover the following topics: Overview of WinSearch Email Screen WinSearch Email Settings/Setting up your WinSearch Email Signature

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Win8 Networking FinishLynx with Meet Management Technical Support Guide

Win8 Networking FinishLynx with Meet Management Technical Support Guide FINISHLYNX NETWORKING WIN 8 LYNX SYSTEM DEVELOPERS, INC. Win8 Networking FinishLynx with Meet Management Technical Support Guide Sections 1 and 2 should be completed on both FinishLynx and Meet Management

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

INF-USB2 and SI-USB Quick Start Guide

INF-USB2 and SI-USB Quick Start Guide INF-USB2 and SI-USB Quick Start Guide Please follow these instructions carefully. DO NOT connect the INF-USB2 or SI-USB module to your computer before running the setup program. After running Setup and

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

Chapter 1: The Cochrane Library Search Tour

Chapter 1: The Cochrane Library Search Tour Chapter : The Cochrane Library Search Tour Chapter : The Cochrane Library Search Tour This chapter will provide an overview of The Cochrane Library Search: Learn how The Cochrane Library new search feature

More information

Hosting Users Guide 2011

Hosting Users Guide 2011 Hosting Users Guide 2011 eofficemgr technology support for small business Celebrating a decade of providing innovative cloud computing services to small business. Table of Contents Overview... 3 Configure

More information

SA-9600 Surface Area Software Manual

SA-9600 Surface Area Software Manual SA-9600 Surface Area Software Manual Version 4.0 Introduction The operation and data Presentation of the SA-9600 Surface Area analyzer is performed using a Microsoft Windows based software package. The

More information

Choose a topic from the left to get help for CmapTools.

Choose a topic from the left to get help for CmapTools. Using CmapTools Create a Cmap Add a Concept Create a Proposition from One Concept Create a Proposition from Existing Concepts Save a Cmap Open a Cmap Create a Folder Drag in Resources Import Resources

More information

Office of History. Using Code ZH Document Management System

Office of History. Using Code ZH Document Management System Office of History Document Management System Using Code ZH Document The ZH Document (ZH DMS) uses a set of integrated tools to satisfy the requirements for managing its archive of electronic documents.

More information

BankLink Books Clients

BankLink Books Clients BankLink Books Clients This document is for those practices installing BankLink Books. The BankLink Service Agreement permits licensed BankLink practices to install the software in as many locations as

More information

VoIP Quick Start Guide

VoIP Quick Start Guide VoIP Quick Start Guide VoIP is made up of three elements: The Phone The Software (optional) The Web Version of the software (optional) Your new voice mail can be accessed by calling (971-722) 8988. Or,

More information

Go to CGTech Help Library. Installing CGTech Products

Go to CGTech Help Library. Installing CGTech Products Go to CGTech Help Library Installing CGTech Products VERICUT Installation Introduction to Installing VERICUT Installing and configuring VERICUT is simple, typically requiring only a few minutes for most

More information

INPS Remote Vision MIQUEST Training Manual

INPS Remote Vision MIQUEST Training Manual INPS Remote Vision MIQUEST Training Manual DEVELOPED BY: DHARMESH PATEL DATE: SEPTEMBER 2008 Page 1 of 24 MIQUEST Miquest stands for Morbidity Query Information Export Syntax. It is a tool recommended

More information

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish.

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish. Backup. If your computer refuses to boot or load Windows or if you are trying to restore an image to a partition the Reflect cannot lock (See here), and then you will have to start your PC using a rescue

More information

You must have at least Editor access to your own mail database to run archiving.

You must have at least Editor access to your own mail database to run archiving. Archiving An archive is a copy of a database you can create to store information no longer in use. Like a replica, an archive contains all documents and design elements in the original database, but unlike

More information

Recruiter s Resource Guide

Recruiter s Resource Guide Recruiter s Resource Guide First Edition 1.29.2015 Contents Section One Recruiting... 3 Accessing Team Georgia Careers... 4 My Setup Preferences... 5 Creating a Requisition... 6 Approving a Requisition...

More information

Citrix Client Install Instructions

Citrix Client Install Instructions Citrix Client Install Instructions If you are using Citrix remotely, Information Technology Services recommends updating Citrix client to the newest version available online. You must be an administrator

More information

File Management and File Storage

File Management and File Storage File Management and File Storage http://training.usask.ca Information Technology Services Division Table of Contents File Management at the University of Saskatchewan...3 Introduction...3 Creating Files

More information

Lab 2-2: Exploring Threads

Lab 2-2: Exploring Threads Lab 2-2: Exploring Threads Objectives Prerequisites After completing this lab, you will be able to: Add profiling support to a Windows CE OS Design Locate files associated with Windows CE profiling Operate

More information

RuleBender 1.1.415 Tutorial

RuleBender 1.1.415 Tutorial RuleBender 1.1.415 Tutorial Installing and Launching RuleBender Requirements OSX Getting Started Linux Getting Started Windows Getting Started Using the Editor The Main Window Creating and Opening Files

More information

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting

More information

Hermes.Net IVR Designer Page 2 36

Hermes.Net IVR Designer Page 2 36 Hermes.Net IVR Designer Page 2 36 Summary 1. Introduction 4 1.1 IVR Features 4 2. The interface 5 2.1 Description of the Interface 6 2.1.1 Menus. Provides 6 2.1.2 Commands for IVR editions. 6 2.1.3 Commands

More information

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook QNS OSX instructions. CONTENTS 1 The Apple and Finder 2 The Dock 3 Navigating OS X 4 System Preferences 1 OS X tutorial: the apple The apple menu The apple menu is hidden under the apple at the top left

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

Microsoft Security Essentials Installation and Configuration Guide

Microsoft Security Essentials Installation and Configuration Guide Microsoft Security Essentials Installation and Configuration Guide This installation guide is for users who are intending to download the software from Microsoft s web site. If you are not intending on

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Hallpass Instructions for Connecting to Mac with a Mac

Hallpass Instructions for Connecting to Mac with a Mac Hallpass Instructions for Connecting to Mac with a Mac The following instructions explain how to enable screen sharing with your Macintosh computer using another Macintosh computer. Note: You must leave

More information

XF Extracellular Flux Analyzer. Installation and Troubleshooting Guide

XF Extracellular Flux Analyzer. Installation and Troubleshooting Guide Installation and Troubleshooting Guide February 24, 2014 2 TABLE OF CONTENTS XF Client System and File Requirements 4 Frequently Asked Questions. 4 Installation.. 5 Installing XF Software.. 5 Resolving

More information