NATIONAL UNIVERSITY OF SINGAPORE. MCH5003 Modeling and Simulation. E2: Simulation of PID Control System

Size: px
Start display at page:

Download "NATIONAL UNIVERSITY OF SINGAPORE. MCH5003 Modeling and Simulation. E2: Simulation of PID Control System"

Transcription

1 NATIONAL UNIVERSITY OF SINGAPORE MCH5003 Modeling and Simulation E2: Simulation of PID Control System 1. Object The aim of this experiment is to develop a digital PID controller, and simulate its performance in a simple control loop. This experiment is also designed to provide experience in using a modern spreadsheet tool for simulation : Microsoft EXCEL. 2. Introduction Proportional + Integral + Derivative controllers are widely used in industry, due to their relative simplicity, and ability to control a wide range of processes reasonably well. This experiment investigates the main features of these controllers by analysing the component responses through simulation on a commonly available spreadsheet software : Microsoft EXCEL. In order to illustrate the main concepts of this type of controller, the development proceeds in stages, generating first a simple first order plus delay process model, and then a P, PI and finally the full PID controller. 3. Preparation Work Q1. We desire to balance a rolling ball on a tilting beam as shown in the Figure. Assume the beam may be balanced near the horizontal (α 0); therefore we have a small deviation of α mgsinα Ball Beam mg x(t) α(t)

2 MCH5003 : Modeling and Simulation/Page 2 (a) Obtain the differential equation relating x to α. (b) Obtain the state-space description from (a) (c) Obtain transfer function from (a) and the frequency response (d) Obtain impulse response h(t) from (c) Q2 A system is described by its transfer function: Y ( s) U ( s) = G( s) = 1 ( s + 1)( s + 2) To simulate this system using a computer, it is necessary to convert G(s) to a difference equation. Noting that s in the Laplace domain is equivalent to a d/dt in the time domain, and further a dy/dt in continuous time is approximately equivalent to {y(t)-y(t-h)}/h= (1-q -1 )y/h, where h is the sampling interval. This is called the backward difference approximation. In short, it means replacing s by (1-q -1 )/h. Convert the above transfer function description into a difference equation relating samples of y and u. You may assume h=1. Obtain also the z-domain transfer function.

3 MCH5003 : Modeling and Simulation/Page 3 Q3. In the simulation of continuous-time system, amplitude and time scaling in the original variables are sometimes necessary. Amplitude Scaling Large system variables (e.g. when simulating planetary movements x max ~ m) cannot be simulated. On the other hand, small system variables (e.g. when simulating crystal structures x max =10-10 m) yield large errors. Therefore, amplitude scaling is necessary in these cases. The pre-requisite is to know the maximum values of the physical variables. Example 1 Consider the system described by x = ax bx Assume x x ; x x ; x x max max max Obtain a differential equation in terms of the scaled variables. Time Scaling Motivation for time scaling is analogous to amplitude scaling. Physical time scales may be too fast or too slow. Simulation on socio-economical processes or chemical and thermal processes typically needs speeding up. Simulation of electrical system typically needs to be slowed down Involves a linear relationship between real time,t and computer time τ

4 MCH5003 : Modeling and Simulation/Page 4 τ = λ t dx dx dτ dx =. = λ dt dτ dt d τ 2 2 d x 2 d x 2 = λ 2 dt dτ For λ<1, the computer simulation is faster than the real process and vice versa. Consider the system 2 d x a dx bx = 0, dt dt Obtain the differential equation in terms of the scaled time variable. 4. Theory The process model used in this experiment is the standard first order lag plus delay model used in many process control applications : sl e Y ( s) = A U ( s) (1) 1+ st where u (t) is the input to the process, and y (t) is the corresponding process output. T is the time constant, A is the gain and L is the time delay of the process. u v y 1/(1+sT) Aexp(-sL) *Provide any non-parametric method where simple estimates of T, L and A can be obtained.

5 MCH5003 : Modeling and Simulation/Page 5 This is a time-continuous model. In order to simulate it on a computer, the model must first be discretized using numerical methods. The time delay (e -sl ) can be represented by integer samples of delay: i.e. y k = v k-n (2) where y k is the process output at sample time k, and v k-n is the output from the lag model at sample time k-n. A time delay is L will correspond to L/h number of samples (h is sampling interval) The first order lag (with time constant T) will be simulated using the difference equation (this is easily obtained via a backward difference approximation: replace s by (1-q -1 )/h : h v k = v k-1 + (u k - v k-1 ) h + T (3) where h is the time interval between subsequent samples k and k-1. *Show how this equation is obtained. The PID controller transfer function is given, in the time and frequency domains, as : u(t) = G x + 1 t T i dx x dt + T d dt (4) 0 U(s) = G(1 + 1 st + st i d )X(s) (5) where x is the error between process value and setpoint (i.e. w-y), and u is the controller output. w + x u y PID Process - (5) (1) This controller may be implemented as the sum of the three separate components; proportional component is: P k = G * x k (6)

6 MCH5003 : Modeling and Simulation/Page 6 The integral component may be implemented in discrete time, as an accumulator : h I k = I k-1 + P k Ti (7) and the derivative component may be implemented in difference form: D k = (P k - P k-1 ) Td h (8) *Show how (7) and (8) are obtained. These three components are then added to give the controller output, u. 5. Apparatus The equipment required for this experiment is a PC with at least 16M of RAM, connected to a printer. The software required is Microsoft EXCEL running under Windows 95 or higher.

7 MCH5003 : Modeling and Simulation/Page 7 6. Procedure 6.1 Preparation From Window Explorers window, find and select the directory mch5003, and open this directory by double-clicking its icon. Then double click the file labeled lab5003.xls, which will open Microsoft EXCEL with this spreadsheet active. 6.2 Experiment Time(Column A) In Column A (labeled Time), you must generate a time axis for your simulation, which runs from time 0 to time 400 in 0.5 second increments. To do this, select spreadsheet cell A10 and enter the value 0. Press the down arrow to enter this data and select the next cell (A11), where you must enter 0.5. Select the two cells, then position the mouse to point at the handle in the lower-right corner of selected range. The pointer will change to a cross. Drag the cross to the end of range(a810) to fill with the sequence of time and release the mouse button. You should now have a column of 800 time samples running from 0 to 400 seconds Setpoint(Column B) The next step is to generate a setpoint profile for the PID control system. In Column B (labeled setpoint) is the setpoint signal of the control system (w). This will go from 0 at time 0, to 60 at time 0.5 till time 200, and then down to 40 at time till time 400. Do this by using the same method as described in Error(Column E) To generate an error signal (x = w-y) you must now enter an equation in the error column(column E), rather than just raw data. The error signal is generated by subtracting the Setpoint (Column B) from the process output, which will be generated in the Process_Delay (Column D), for each time sample. Generate the first sample by selecting cell E11 and enter the formula: =B11-D11 When you press the return key, you will notice that the cell now contains the numerical difference between the values in the two preceding columns (Since

8 MCH5003 : Modeling and Simulation/Page 8 Column D contains no data at this time, it defaults to 0, resulting in an error which equals the setpoint.) Select cell E12 and enter the formula in the same way as before. Select the two cells, then position the mouse to point at the handle in the lower-right corner of selected range. Again, the pointer changes to a cross. Drag the cross to the end of range(e810) to fill with the sequence of error and release the mouse button. You should now have 800 error signals in Column E System output after process_delay (Column D) Formulae in spreadsheet cells can reference any other cells, and you will use the Process_Delay (Column D) to illustrate how this feature can be used to reference values from previous time samples. The Process_Delay Column will give a 2.5 second (5 sample) delay, and also simulate a process gain, A = 2 (equation (2)). Select column D10 and enter the formula: 2 * C5 where Column C is the v k in equation (2). Copy this formula into block D10 to D810. Since there is no data from C1 to C9 it defaults to 0. Test that this delay works by entering any data into cells C10 to C20. You should see the result (delayed by 2.5 seconds and including the 2x gain) in Column D Lag1 Select cell C11 and enter a formula corresponding to the difference equation (3) given in theory section. The input to your lag should be the PID output (u k )(in Column G) for that time sample i.e. cell G11. Set the lag time constant (F10..F810 in Column F) to 20 seconds, and generate some test data in Column J, by setting G11 to G210 to 100. Select Column A and Column C with the mouse+ctrl, and then select Chart... from the Insert item in File menu. This will result in a pop-up dialogue box where you can choose the type of your chart. Select the XY(scatter) type, which is a smooth line without points, then click on the Next button. You can also configure the chart option and the chart position in the next two steps until you press Finish button.then you should have the graph of lag output (exponentials) against time.

9 MCH5003 : Modeling and Simulation/Page 9 Change the time constant of system by setting Column (F10..F810) to 100. It is noted that the graph has changed to reflect the change in the time constant. You may choose to edit some of the graph attributes to improve your test documentation. Highlight the graph you wanted, select Print form the File menu, and save the print for your report Proportional (Column H) The next step is to generate a proportional controller, with a gain determined by the value in the Gain (Column H). Enter the following formula in cell G11 =I11 Column I has already been configured to give the sum P+I+D (sum of proportional term in Column J, integral term in Column L and derivative term in Column N ). First only P control is used. Now generate the proportional term in Column J, to give the formula of equation (6), where the controller gain is given as 10 in Column H. The Columns L and N contain no data now and they default to 0. When this column has been completed, the control loop will be closed, with proportional only control and a gain of 10 times. Select system output Column D and setpoint Column B with the mouse+ctrl, and the select Chart... from the Insert item in File menu. This will result in a pop-up dialogue box where you can choose the type of your chart. Here the first one in Line type, which is a smooth line without points, is selected. Click the button in Category(x) axis Labels, the pop-up dialogue will appear in upper right corner of screen, then select column A(time), and highlight the pop-up dialogue. You can also choose chart option and chart position in next two steps until you press Finish button. Then you should have the graph of system closed-loop response to setpoint steps from against time. Highlight this graph and print it. Comment on the resulting control error magnitude in your report.

10 MCH5003 : Modeling and Simulation/Page Integral(Column L) Add integral action to the controller by inserting the formula given in equation (7) in Column L. Note that a value of Ti = 30 seconds has already been entered in Column K. View the result in Graph2 and print this result. Create a new graph (Graph3), displaying the Process output (y k in Column D), Controller output (u k in Column G) and the Integral output (I k in Column L) against time, and print this graph. Explain the new control performance, and the values of the error signal x k, I k and u k when the control loop has stabilised at each setpoint value Derivative(Column N) From equation (8) generate the formula for calculating the derivative term, and enter this in cell N11, setting Td equal to the value given in Column M. Copy this formula to the remainder of Column N, and view the resulting response, noting the overshoot and the initial derivative kick when the setpoint changes. In this case, the response to setpoint steps is worsened by the addition of derivative action - by analysing the action of the derivative term Tuning The process is moderately well tuned in the above experiments. Experiment by varying the Gain, Ti, and Td values, to try and achieve improved performance in terms of faster response and small overshoot. Describe any improvements measured. Ziegler -Nichols tuning rules can be used to obtain good PID parameters based on the model (1). This is one application of model to design controllers. Using, according to the rules G=1.2T/(AL) Ti=2L Td=0.5L tune your PID controller accordingly again.

11 MCH5003 : Modeling and Simulation/Page Report The results of each stage of the experiment should be logged, including the spreadsheet entry required to achieve these results. Discuss all the points mentioned in the above notes and answer all the questions. 8. Reference Astrom, K.J. & Wittenmark, B., Computer-Controlled Systems, 2nd Edition, Prentice Hall, 1990

Excel tutorial Introduction

Excel tutorial Introduction Office button Excel tutorial Introduction Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform mathematical calculations

More information

San Francisco State University

San Francisco State University San Francisco State University Michael Bar Instructions for Excel 1. Plotting analytical function. 2 Suppose that you need to plot the graph of a function f ( x) = x on the interval [ 5,5]. Step 1: make

More information

Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001

Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001 Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001 Goal: The goal of Lab 1 is to introduce you to Microsoft Excel, to show you how to graph data and functions, and to practice solving problems with

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

Three-Dimensional (Surface) Plots

Three-Dimensional (Surface) Plots Three-Dimensional (Surface) Plots Creating a Data Array 3-Dimensional plots (surface plots) are often useful for visualizing the behavior of functions and identifying important mathematical/physical features

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

Statistics with a Hemacytometer

Statistics with a Hemacytometer Statistics with a Hemacytometer Overview This exercise incorporates several different statistical analyses. Data gathered from cell counts with a hemacytometer is used to explore frequency distributions

More information

Physics 251 Laboratory Introduction to Spreadsheets

Physics 251 Laboratory Introduction to Spreadsheets Physics 251 Laboratory Introduction to Spreadsheets Pre-Lab: Please do the lab-prep exercises on the web. Introduction Spreadsheets have a wide variety of uses in both the business and academic worlds.

More information

Math 2524: Activity 1 (Using Excel) Fall 2002

Math 2524: Activity 1 (Using Excel) Fall 2002 Math 2524: Activity 1 (Using Excel) Fall 22 Often in a problem situation you will be presented with discrete data rather than a function that gives you the resultant data. You will use Microsoft Excel

More information

Pre-Lab Excel Problem

Pre-Lab Excel Problem Pre-Lab Excel Problem Read and follow the instructions carefully! Below you are given a problem which you are to solve using Excel. If you have not used the Excel spreadsheet a limited tutorial is given

More information

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data

Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data Chapter 3: Rate Laws Excel Tutorial on Fitting logarithmic data The following table shows the raw data which you need to fit to an appropriate equation k (s -1 ) T (K) 0.00043 312.5 0.00103 318.47 0.0018

More information

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

Appendix A OPENING AN EXCEL SPREADSHEET: To start working with a blank Excel spreadsheet, you should: 1. Log on to your station s computer.

Appendix A OPENING AN EXCEL SPREADSHEET: To start working with a blank Excel spreadsheet, you should: 1. Log on to your station s computer. Appendix A INTRODUCTION: Microsoft Excel is a popular software package that combines spreadsheet accounting, graphing, and database functions into one program. One can enter data, modify it, and then the

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Excel R Tips. is used for multiplication. + is used for addition. is used for subtraction. / is used for division

Excel R Tips. is used for multiplication. + is used for addition. is used for subtraction. / is used for division Excel R Tips EXCEL TIP 1: INPUTTING FORMULAS To input a formula in Excel, click on the cell you want to place your formula in, and begin your formula with an equals sign (=). There are several functions

More information

Numerical Solutions of Differential Equations (1)

Numerical Solutions of Differential Equations (1) Numerical Solutions of Differential Equations (1) Euler method Sources of error Truncation Round-off error Error balance in numerical integration Euler Method Many differential equations don't have an

More information

Microsoft Word for Report-Writing (2016 Version)

Microsoft Word for Report-Writing (2016 Version) Microsoft Word for Report-Writing (2016 Version) Microsoft Word is a versatile, widely-used tool for producing presentation-quality documents. Most students are well-acquainted with the program for generating

More information

Dealing with Data in Excel 2013/2016

Dealing with Data in Excel 2013/2016 Dealing with Data in Excel 2013/2016 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for

More information

In this section I m going to explain how to construct a formula, and give you some guidelines to ensure that your formulas work correctly.

In this section I m going to explain how to construct a formula, and give you some guidelines to ensure that your formulas work correctly. Formulas In this section I m going to explain how to construct a formula, and give you some guidelines to ensure that your formulas work correctly. Creating a formula Rule number one: a formula always

More information

Scientific Graphing in Excel 2007

Scientific Graphing in Excel 2007 Scientific Graphing in Excel 2007 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

RIVA / Athena Pro-Series ECU

RIVA / Athena Pro-Series ECU RIVA / Athena Pro-Series ECU USING SOFTWARE (MAYA) Running Maya for First Time Once installed, Maya is available in the Start menu under Programs -> Maya, or from a desktop short cut, if created. The first

More information

Charts in Excel 2003

Charts in Excel 2003 Charts in Excel 2003 Contents Introduction Charts in Excel 2003...1 Part 1: Generating a Basic Chart...1 Part 2: Adding Another Data Series...3 Part 3: Other Handy Options...5 Introduction Charts in Excel

More information

MS Office for Engineers

MS Office for Engineers MS Office for Engineers Lesson 4 Excel 2 Pre-reqs/Technical Skills Basic knowledge of Excel Completion of Excel 1 tutorial Basic computer use Expectations Read lesson material Implement steps in software

More information

MOVING FROM CELL TO CELL

MOVING FROM CELL TO CELL VCAE: EXCEL Lesson 1 Please send comments to Author: Zahra Siddiqui at zed_ess@hotmail.com Concepts Covered: Cell Address; Cell Pointer; Moving across Cells Constants: Entering, Editing, Formatting Using

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

Microsoft Excel Using Excel in the Science Classroom

Microsoft Excel Using Excel in the Science Classroom Microsoft Excel Using Excel in the Science Classroom OBJECTIVE Students will take data and use an Excel spreadsheet to manipulate the information. This will include creating graphs, manipulating data,

More information

Using Excel 2011 at Kennesaw State University

Using Excel 2011 at Kennesaw State University Using Excel 2011 at Kennesaw State University Getting Started Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 - Information Technology Services Kennesaw State

More information

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout, MS Excel 2010 offers a large set of graphs and plots for data visualization. For those who are familiar with older version of Excel, the layout is completely different. The following exercises demonstrate

More information

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs In this technology assignment, you will find a quadratic function that passes through three of the points on each of the scatter plots you created in an earlier technology assignment. You will need the

More information

KIN 147 Lab Practical Mid-term: Tibial Acceleration Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs)

KIN 147 Lab Practical Mid-term: Tibial Acceleration Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) KIN 147 Lab Practical Mid-term: Tibial Acceleration Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) Your goal is to correctly analyze accelerometer data Analyzing

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Opening a Data File in SPSS. Defining Variables in SPSS

Opening a Data File in SPSS. Defining Variables in SPSS Opening a Data File in SPSS To open an existing SPSS file: 1. Click File Open Data. Go to the appropriate directory and find the name of the appropriate file. SPSS defaults to opening SPSS data files with

More information

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998

EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Created on 09/02/98 11:58 PM 1 EXCEL 98 TUTORIAL Chemistry C2407 fall 1998 Andy Eng, Columbia University 1998 Note for Excel 97 users: All features of Excel 98 for Macintosh are available in Excel 97 for

More information

The Menu and Toolbar in Excel (see below) look much like the Word tools and most of the tools behave as you would expect.

The Menu and Toolbar in Excel (see below) look much like the Word tools and most of the tools behave as you would expect. Launch the Microsoft Excel Program Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are lettered and rows, and are numbered.

More information

Technology Assignment: Scatter Plots

Technology Assignment: Scatter Plots The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. You

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program.

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program. Using Excel 2007 This is only a brief overview that highlights some of the useful points in a spreadsheet program. 1. Input of data - Generally you should attempt to put the independent variable on the

More information

KINETICS CALCS AND GRAPHS INSTRUCTIONS

KINETICS CALCS AND GRAPHS INSTRUCTIONS KINETICS CALCS AND GRAPHS INSTRUCTIONS 1. Open a new Excel or Google Sheets document. I will be using Google Sheets for this tutorial, but Excel is nearly the same. 2. Enter headings across the top as

More information

RK4. Version 2.0 (updated 5/30/2005) 2001, 2005 Tomas Co. Michigan Technological University Houghton, MI 49931

RK4. Version 2.0 (updated 5/30/2005) 2001, 2005 Tomas Co. Michigan Technological University Houghton, MI 49931 RK4 Version 2.0 (updated 5/30/2005) 2001, 2005 Tomas Co Michigan Technological University Houghton, MI 49931 Table of Contents Description 3 Rationale 3 Special Features 3 Installing the RK4 Add-In 4 Activating/Deactivating

More information

Excel Spreadsheets and Graphs

Excel Spreadsheets and Graphs Excel Spreadsheets and Graphs Spreadsheets are useful for making tables and graphs and for doing repeated calculations on a set of data. A blank spreadsheet consists of a number of cells (just blank spaces

More information

KIN 147 Lab 02: Acceleration Data Analysis

KIN 147 Lab 02: Acceleration Data Analysis KIN 147 Lab 02: Acceleration Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) Your goal is to correctly analyze accelerometer data Analyzing the Acceleration Data

More information

EXCEL SPREADSHEET TUTORIAL

EXCEL SPREADSHEET TUTORIAL EXCEL SPREADSHEET TUTORIAL Note to all 200 level physics students: You will be expected to properly format data tables and graphs in all lab reports, as described in this tutorial. Therefore, you are responsible

More information

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12 BIOL 001 Excel Quick Reference Guide (Office 2010) For your lab report and some of your assignments, you will need to use Excel to analyze your data and/or generate graphs. This guide highlights specific

More information

Contents. Group 3 Excel Handouts 2010

Contents. Group 3 Excel Handouts 2010 Contents Function Library... 2 Function Operators... 2 Order of Multiple Operators... 2 Function Library... 3 Formula Auditing... 4 Name Cells... 7 Comments... 8 Show Ink... 9 Show Ink is a colorful way

More information

Scottish Improvement Skills

Scottish Improvement Skills Scottish Improvement Skills Creating a run chart on MS Excel 2007 Create and save a new Excel worksheet. Some of the details of steps given below may vary slightly depending on how Excel has been used

More information

How to use Excel Spreadsheets for Graphing

How to use Excel Spreadsheets for Graphing How to use Excel Spreadsheets for Graphing 1. Click on the Excel Program on the Desktop 2. You will notice that a screen similar to the above screen comes up. A spreadsheet is divided into Columns (A,

More information

1. What specialist uses information obtained from bones to help police solve crimes?

1. What specialist uses information obtained from bones to help police solve crimes? Mathematics: Modeling Our World Unit 4: PREDICTION HANDOUT VIDEO VIEWING GUIDE H4.1 1. What specialist uses information obtained from bones to help police solve crimes? 2.What are some things that can

More information

Lab1: Use of Word and Excel

Lab1: Use of Word and Excel Dr. Fritz Wilhelm; physics 230 Lab1: Use of Word and Excel Page 1 of 9 Lab partners: Download this page onto your computer. Also download the template file which you can use whenever you start your lab

More information

First of all, we need to know what it means for a parameterize curve to be differentiable. FACT:

First of all, we need to know what it means for a parameterize curve to be differentiable. FACT: CALCULUS WITH PARAMETERIZED CURVES In calculus I we learned how to differentiate and integrate functions. In the chapter covering the applications of the integral, we learned how to find the length of

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

More information

Practical 1P1 Computing Exercise

Practical 1P1 Computing Exercise Practical 1P1 Computing Exercise What you should learn from this exercise How to use the teaching lab computers and printers. How to use a spreadsheet for basic data analysis. How to embed Excel tables

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center June 6, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the row-column

More information

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

Excel 2010-Part. Two

Excel 2010-Part. Two Jefferson Parish Library Computer Training Team Excel 2010-Part Two August 2011 Symbols Used in Formulas Add Subtract Divide Multiply + - / * When working with formulas in Excel you will use basic keyboard

More information

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note:

Cell to Cell mouse arrow Type Tab Enter Scroll Bars Page Up Page Down Crtl + Home Crtl + End Value Label Formula Note: 1 of 1 NOTE: IT IS RECOMMENDED THAT YOU READ THE ACCOMPANYING DOCUMENT CALLED INTRO TO EXCEL LAYOUT 2007 TO FULLY GRASP THE BASICS OF EXCEL Introduction A spreadsheet application allows you to enter data

More information

QUERY USER MANUAL Chapter 7

QUERY USER MANUAL Chapter 7 QUERY USER MANUAL Chapter 7 The Spectrum System PeopleSoft Financials Version 7.5 1. INTRODUCTION... 3 1.1. QUERY TOOL... 3 2. OPENING THE QUERY TOOL... 4 3. THE QUERY TOOL PANEL... 5 3.1. COMPONENT VIEW

More information

Excel 2013 Charts and Graphs

Excel 2013 Charts and Graphs Excel 2013 Charts and Graphs Copyright 2016 Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this document may be reproduced

More information

Getting Started with. Office 2008

Getting Started with. Office 2008 Getting Started with Office 2008 Copyright 2010 - Information Technology Services Kennesaw State University This document may be downloaded, printed, or copied, for educational use, without further permission

More information

Intermediate Microsoft Excel

Intermediate Microsoft Excel Intermediate Microsoft Excel Class learning objectives By the end of class, students should be able to perform the following tasks in Microsoft Word: 1. Completing a Series 2. Review of Excel Basics Create

More information

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets.

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets. Agenda Unit 1 Assessment Review Progress Reports Intro to Excel Learn parts of an Excel spreadsheet How to Plan a spreadsheet Create a spreadsheet Analyze data Create an embedded chart in spreadsheet In

More information

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

Issues with Curve Detection Grouping (e.g., the Canny hysteresis thresholding procedure) Model tting They can be performed sequentially or simultaneou

Issues with Curve Detection Grouping (e.g., the Canny hysteresis thresholding procedure) Model tting They can be performed sequentially or simultaneou an edge image, nd line or curve segments present Given the image. in Line and Curves Detection 1 Issues with Curve Detection Grouping (e.g., the Canny hysteresis thresholding procedure) Model tting They

More information

To move cells, the pointer should be a north-south-eastwest facing arrow

To move cells, the pointer should be a north-south-eastwest facing arrow Appendix B Microsoft Excel Primer Oftentimes in physics, we collect lots of data and have to analyze it. Doing this analysis (which consists mostly of performing the same operations on lots of different

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

Math 5BI: Problem Set 2 The Chain Rule

Math 5BI: Problem Set 2 The Chain Rule Math 5BI: Problem Set 2 The Chain Rule April 5, 2010 A Functions of two variables Suppose that γ(t) = (x(t), y(t), z(t)) is a differentiable parametrized curve in R 3 which lies on the surface S defined

More information

Graphical Analysis of Data using Microsoft Excel [2016 Version]

Graphical Analysis of Data using Microsoft Excel [2016 Version] Graphical Analysis of Data using Microsoft Excel [2016 Version] Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters.

More information

The Function How Planners Lab handles it How Excel handles it Constructing Understandable Assumptions

The Function How Planners Lab handles it How Excel handles it Constructing Understandable Assumptions The Function How Planners Lab handles it How Excel handles it Constructing Understandable Assumptions A main advantage of the Planners Lab model is the ease with which the models can be constructed, understood,

More information

RK4. Version 3.0. (updated 12/1/2006) 2001, 2005, 2006 Tomas Co. Michigan Technological University Houghton, MI 49931

RK4. Version 3.0. (updated 12/1/2006) 2001, 2005, 2006 Tomas Co. Michigan Technological University Houghton, MI 49931 RK4 Version 3.0 (updated 12/1/2006) 2001, 2005, 2006 Tomas Co Michigan Technological University Houghton, MI 49931 Table of Contents Description 3 Rationale 3 Special Features 3 Installing the RK4 Add-In

More information

Data Analysis Guidelines

Data Analysis Guidelines Data Analysis Guidelines DESCRIPTIVE STATISTICS Standard Deviation Standard deviation is a calculated value that describes the variation (or spread) of values in a data set. It is calculated using a formula

More information

Chapter 1: Introduction to the Microsoft Excel Spreadsheet

Chapter 1: Introduction to the Microsoft Excel Spreadsheet Chapter 1: Introduction to the Microsoft Excel Spreadsheet Objectives This chapter introduces you to the Microsoft Excel spreadsheet. You should gain an understanding of the following topics: The range

More information

Total Number of Students in US (millions)

Total Number of Students in US (millions) The goal of this technology assignment is to graph a formula on your calculator and in Excel. This assignment assumes that you have a TI 84 or similar calculator and are using Excel 2007. The formula you

More information

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse.

To be able to modify a worksheet and use functions, you will: Select ranges of cells on a worksheet by using the mouse. L E S S O N 3 Modifying a workbook Suggested teaching time 60-70 minutes Lesson objectives To be able to modify a worksheet and use functions, you will: a b c Select ranges of cells on a worksheet by using

More information

Using the CRM Pivot Tables

Using the CRM Pivot Tables Using the CRM Pivot Tables Pivot tables have now been added to your CRM system: we hope that these will provide you with an easy way to produce charts and graphs straight from your CRM, using the most

More information

The toolbars at the top are the standard toolbar and the formatting toolbar.

The toolbars at the top are the standard toolbar and the formatting toolbar. Lecture 8 EXCEL Excel is a spreadsheet (all originally developed for bookkeeping and accounting). It is very useful for any mathematical or tabular operations. It allows you to make quick changes in input

More information

Spreadsheet View and Basic Statistics Concepts

Spreadsheet View and Basic Statistics Concepts Spreadsheet View and Basic Statistics Concepts GeoGebra 3.2 Workshop Handout 9 Judith and Markus Hohenwarter www.geogebra.org Table of Contents 1. Introduction to GeoGebra s Spreadsheet View 2 2. Record

More information

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning Review Ch. 15 Spreadsheet and Worksheet Basics 2010, 2006 South-Western, Cengage Learning Excel Worksheet Slide 2 Move Around a Worksheet Use the mouse and scroll bars Use and (or TAB) Use PAGE UP and

More information

2 Lab 2: LabVIEW and Control System Building Blocks

2 Lab 2: LabVIEW and Control System Building Blocks 2 Lab 2: LabVIEW and Control System Building Blocks 2.1 Introduction Controllers are built from mechanical or electrical building blocks. Most controllers are implemented in a program using sensors to

More information

Chapter 6 Some Applications of the Integral

Chapter 6 Some Applications of the Integral Chapter 6 Some Applications of the Integral More on Area More on Area Integrating the vertical separation gives Riemann Sums of the form More on Area Example Find the area A of the set shaded in Figure

More information

Introduction. A cell can contain any of the following:

Introduction. A cell can contain any of the following: Introduction A spreadsheet is a table consisting of Rows and Columns. Where a row and a column meet, the box is called a Cell. Each cell has an address consisting of the column name followed by the row

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Chapter-2 Digital Data Analysis

Chapter-2 Digital Data Analysis Chapter-2 Digital Data Analysis 1. Securing Spreadsheets How to Password Protect Excel Files Encrypting and password protecting Microsoft Word and Excel files is a simple matter. There are a couple of

More information

Contents 10. Graphs of Trigonometric Functions

Contents 10. Graphs of Trigonometric Functions Contents 10. Graphs of Trigonometric Functions 2 10.2 Sine and Cosine Curves: Horizontal and Vertical Displacement...... 2 Example 10.15............................... 2 10.3 Composite Sine and Cosine

More information

Working with Census Data Excel 2013

Working with Census Data Excel 2013 Working with Census Data Excel 2013 Preparing the File If you see a lot of little green triangles next to the numbers, there is an error or warning that Excel is trying to call to your attention. In my

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Chapter A spreadsheet is a computer program that turns the computer into a very powerful calculator. Headings and comments can be entered along with detailed formulas. The spreadsheet screen is divided

More information

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties

252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties 252 APPENDIX D EXPERIMENT 1 Introduction to Computer Tools and Uncertainties Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. You will learn

More information

Use of in-built functions and writing expressions

Use of in-built functions and writing expressions LECTURE SCHEDULE 9 Use of in-built functions and writing expressions In-built Functions A function is an in-built program, which is used to do a particular task. Functions take the input the input and

More information

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

Spreadsheet Microsoft Excel 2010

Spreadsheet Microsoft Excel 2010 Spreadsheet Microsoft Excel 2010 Prepared by: Teo Siew Copyright 2017 MAHSA UNIVERSITY Faculty of Business, Finance, and Hospitality Spreadsheet A type of application program which manipulates numerical

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data.

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data. SPREADSHEETS BASIC TERMINOLOGY A Spreadsheet is a grid of rows and columns containing numbers, text, and formulas. A workbook is the file Excel creates to store your data. A worksheet is an individual

More information

Years after US Student to Teacher Ratio

Years after US Student to Teacher Ratio The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. The

More information

Using Excel for Graphical Analysis of Data

Using Excel for Graphical Analysis of Data Using Excel for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable physical parameters. Graphs are

More information

Automatic PID tuning, a heuristic optimization approach

Automatic PID tuning, a heuristic optimization approach Congreso Anual 2 de la Asociación de México de Control Automático. Puerto Vallarta, Jalisco, México. Automatic PID tuning, a heuristic optimization approach Rodrigo Abrajan-Guerrero, Luis Alejandro Marquez-Martinez

More information

Excel Quick Reference Guide

Excel Quick Reference Guide Excel Quick Reference Guide CONTENTS Screen elements 3 Mouse shapes and actions 3 Cursor movement keys 4 Select a range using the keyboard 4 Edit cell contents 5 Select a range using the mouse 5 Sorting

More information

Chemistry Excel. Microsoft 2007

Chemistry Excel. Microsoft 2007 Chemistry Excel Microsoft 2007 This workshop is designed to show you several functionalities of Microsoft Excel 2007 and particularly how it applies to your chemistry course. In this workshop, you will

More information

Excel What is it Good For?

Excel What is it Good For? Excel What is it Good For? Professional Development Thursday 25 th February Tapping Primary School Presenter: Annette Italiano Changing Column Widths Useful Things to Know About Excel This will change

More information