Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert

Size: px
Start display at page:

Download "Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert"

Transcription

1 Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert This set of notes describes how to prepare a Bode plot using Mathcad. Follow these instructions to draw Bode plot for any transfer function. In these notes we will draw the Bode plots of a second order transfer function. However, after you have created the sample program, you can easily modify it to plot any transfer function. Therefore, this is the last Bode plot you need to draw from scratch! Another alternative is that you can use these notes to prepare Bode plots of any function merely by using that function, adjusting the scale factors for frequency and the coefficient in the Margin Response. The transfer function you will plot is: () G s = 0.2 ( 10s + 1)( 0.02s + 1) These notes will use an array of values of frequency to generate arrays of values of amplitude ratio, magnitude ratio and, phase shift. In order to produce a curve that appears smooth, you will use a large number of values of frequency in the arrays. You will then use Mathcad s plotting feature to draw graphs. You will make log-log plots and log plots that are the customary forms of Bode plots. Begin by Opening Mathcad 1. Open Mathcad in the usual fashion. Create a Range Variable 2. You will now create a Mathcad "range variable". A range variable is a variable containing integer values ranging from a low value to an upper value, such as the integers 0, 1, 2, 3, 50. In you Bode plot, the range variable will be used to create arrays and access the values in individual elements in those arrays as you create the plots. Name your range variable i. Type i about a half an inch below the top of your work page. The next step is to create the arithmetic assignment sign, (the ":= symbol). Do this in one of two ways: either: 1. Select "View/Toolbars/Calculator" from the menu. A toolbar will appear. Click on the button. Alternatively, you can 2. Type ":". A small black, rectangle should appear to the right of the := symbol as shown in figure 1. This rectangle is a placeholder and indicates that Mathcad is waiting for more information.

2 Figure 1 2. Next, indicate the range of the integers. Do this by first typing the lower limit of the range, in this case 0. Next, create the range symbol by doing one of the following: 1. Select "View/Toolbars/Matrix". A toolbar will appear. Click on the button. Alternatively you can 2. Type ";" Finally, finish the range variable by typing the upper limit, in this case 100. Should look like figure 2 Figure 2 You have now defined a range variable called "i" that contains all the integers from zero to 100.

3 Create an Array of Frequencies 3. You will now enter the equation that defines the range of frequencies to be used in the Bode plot. Frequency is generally represented by the Greek letter ω. Move the cursor somewhere below the range variable that you have already created. You can do this by moving the mouse cursor just below the range variable and clicking your left mouse button. You can create Greek letters by selecting "View/Toolbars/Greek" from the menu. A toolbar with Greek letters appears. Type the Greek letter that you wish, in this case ω. 4. The value ω will represent an array of numbers. Each number will be represented by a subscript, the value of the first subscript in the array will be zero, the value of the next subscript will be one and, the value of the last (the hundred and first) will be 100. Now create a subscript in one of two ways: 1. Click the button from the Matrix toolbar 2. Type [ in either case, your screen should now resemble Figure 3 Figure 3 5. The black rectangle is a placeholder a little lower than the Greek letter ω and slightly to the right. Type the letter i and then enter of the := symbol as you did in step 1 of these notes. The horizontal axis of a bode plot is generally a logarithmic scale. In order to have values of frequency regularly spaced a logarithmic axis, use the following formula: Where min = the smallest power of 10 on the Bode plot span = the range of the powers of ten. In this sample program, the smallest value of ω will be 10-5 and the largest value will be Type the number 10. Remember to use the ^ symbol to create a superscript. In this case we will use a minimum value of -5 and a span of 10. Enter those numbers in the formula in place of the names so that your finished formula should look like Figure 4

4 Figure 4 Change the values of the minimum and the span if you wish to change the values of the horizontal axis. 6. You will now enter the transfer function given on the first page of these notes. Mathcad allows functions that written in the form of function_name(variable1, varaible2,. variablen) = mathematical expression Therefore it should be easy to enter the transfer function. () G s = 0.2 ( 10s + 1)( 0.02s + 1) Move the mouse cursor just below the formula for frequency. Begin typing the equation. Start with the left side, create the := symbol and type 0.2. Use the / key to create the division. Remember to use an * to indicate every multiplication (between the 10 and the s, the 0.02 and the s and between )(. The finished equation is shown in Figure 5. Figure 5 7. Bode plots are generated from the transfer function by replacing the s terms with iω. You will not compute the complex values of the transfer function for each frequency, placing them in an array that you will name g. This entire action is done with one equation that define each element in the array g. Use the mouse cursor to move to an area just below the transfer function. Click on the left mouse button and type g. Then create a subscript using either the button or the [ key. Type i. Next, create the := symbol using either the button or the : key. Finally, type the formula; type G(. You will find the square root symbol all on the calculator toolbar that you can make visible using the "View/Toolbars/Calculator" menu option. Type -1 under the square root sign.

5 Your formula should look like figure 6a. The frequency symbol must appear outside the square root sign and multiplies the square root of minus one. Tap right arrow key twice to move the inverted L cursor from under the square root symbol. The inverted L. cursor embraces the entire square root symbol as shown in figure 6b. Next hit the Asterix. Then hit the ω button on the toolbar. Create a subscript and type i. Finish with a ). The final equation is shown in figure 6c Figure 6a After typing -1 Figure 6b Tap Right Arrow Key Twice to Move the Cursor OUT OF the Square Root Figure 6c Finished! Make sure that the frequency is outside of the square root symbol. If you make a mistake, erase the equation and start over. 8. The amplitude response of a transfer function is simply the magnitude of the complex value of transfer function. The array g contains the complex values of the transfer function of evaluated at the wavelengths. We will now use Mathcad's functions to obtain both the magnitude and the angle of the phaser given by g i. Mathcad uses the absolute value symbol to return the magnitude of a complex number. Therefore, finding the amplitude response is simple. Underneath the formula for g create an array named AR to contain the amplitude response for the values of frequency given in the ω array. Press the absolute value button after creating the := symbol. The button is found on both the Calculator and Matrix toolbars. Move the inverted L. inside the absolute value symbol and type the rest of the letter g. and the subscript i. The finished equation is shown in figure 7 Figure 7

6 9. The Margin Response is the Amplitude Response divided by the process gain which is merely the coefficient of the transfer function when it is written with the constant terms will polynomial factors set to one, as illustrated by the sample transfer function. The process gain in this example is 0.2 so the margin response is obtained by dividing the amplitude response by 0.2. This equation is shown in figure 8. Figure The equation for phase shift shown in figure 9 uses several Mathcad functions. The functions Re(x) and Im(x) return the real and imaginary components of a complex number, respectively. The atan2(x, y) function returns the angle from the x-axis to a line containing the origin and the point (x,y). Results are in radians between π and π, excluding π. Multiply the values returned by atan2 by 180/π to convert to degrees. Enter this equation just below the Margin Response. Figure 9 Draw the Graph 11. Press Enter to leave the last equation. Move the Red Cross cursor to a spot below your last equation. From the menu bar choose "View/Toolbars/Graph. The graph toolbar shown in figure 10 will appear. Figure 10 The Graph Toolbar 12. The two-dimensional graph is created by clicking the button in the upper left-hand corner of the toolbar. The button looks like a 2-D graph,. Click that button and a graph object will replace the Red Cross cursor. The object is shown in figure 11. The black rectangles on the outer border are "handles" you can "grab" by pressing and holding them with the mouse cursor to change the size and shape of the graph.. The inner, large, empty rectangle shows the size of the graph itself. The solid rectangles that are not attached to any shape our placeholders for the horizontal and vertical axes. The inverted L cursor appears at the horizontal axis.

7 Figure 11 The Graph Object Plot area Vertical axis Handle to change the size of the graph. Horizontal axis 13. You will make the elements of the array, ω, the values for the horizontal axis. If the inverted L cursor is not on the horizontal axis placeholder, move the mouse cursor over that placeholder and click the left mouse button. Type ω i to enter the horizontal axis. Be sure to use the real subscript (the button or the [ key). Next, click on the vertical axis placeholder to move the inverted all cursor over it. Mathcad allows you to plot either arrays that have been calculated already or values that are calculated "in place". The vertical axes will disoplay the arrays AR and MR. On the vertical axis type AR i, when you are finished, Mathcad will display a line using the 101 values from AR array and pair them with the appropriate values of ω i to plot a line. Your graph object should now resemble figure 12. Figure 12 After Entering the Horizontal and Vertical Axes 14. Mathcad only allows one set of values on the horizontal axis. You can plot as many arrays on the vertical axis as you wish. If the inverted L. cursor is not at the end of the variable AR, move the mouse cursor over the AR, click the left mouse button and, press the right arrow key until the cursor looks like the one shown in Figure 12. When the inverted L cursor is at the end of the AR i line, type, to create a new placeholder just below it. Your screen should look like figure

8 13. Then enter the second variable MR i and press Enter. The graph should resemble figure 13b Figure 13a The Vertical Axis Figure 13b The Finished Graph Modify the Graph 13. You will now make the plot look like a Bode plot by changing the axes from Cartesian axis to logarithmic axes. Move the mouse cursor over the graph and click on it once. The border with the handles should appear. Grab the handle in the lower right hand corner with the mouse and drag it down into the right to make the graph larger. Then double-click on the graph with the mouse cursor to call up the graph dialog box that a shown me in figure 14. When the box appears, the "grid lines" and Log Scale options are not checked. Check them now as shown in the figure.

9 Figure 14 X-Y Traces on the Graph Dialog Box 14. Click the "Traces" tab. This tab allows you to specify the appearance of the lines drawn on the screen. Move the mouse cursor over the line labeled "traced two" and click. The default setting for this line is a role dots. Move the mouse cursor to the pull down tab labeled line and click on "solid. Your screen should appear like figure 15 before you click on solid".

10 Figure 15 The Traces Tab 15. Click OK to close the dialog. The completed graphic shown in figure 16 Figure 16 Completed Bode Plot

11 16. Now plot the phase angle below your first plot by modifying the steps you used to plot the Margin Response and the Amplitude Response as outlined below: 1. Only plot φi on the vertical axis 2. In step 14, on the Y-Axis list of check boxes. leave the Log Axis box UNCHECKED The phase angle plot is shown in Figure 15 Figure 15 Phase Plot Modifying Your Bode Plots for New Functions SAVE THIS FILE! You can modify your file to give you Bode plots of any transfer function. Here are the things you must do to modify this file. 17. Change the function G(s). Click on this formula and enter your new formula. Click on this function. Move the mouse cursor over the equation near the lower right hand side. Press and hold the left mouse button as you drag the cursor to the left until the entire right hand side of the equation up to the := sign is shown in reverse video, as shown in Figure 16. Press delete to remove the old transfer function. Enter the transfer function you want to plot. If you mess up, just erase the old equation reenter your equation/ Figure Change the gain in the Margin Response equation to the process gain of your transfer function. Click on the equation and use the arrow keys to move the inverted L cursor to the gain. Use the backspace key to remove the old gain. Then type the new gain.

12 19. Change the range of wavelengths. Recall the formula used to calculated is Edit this function by clicking on it and using the arrow keys to move the cursor to the parts of the equation you want to change. 19, The atan2 function returns values between π and π. A plot of G(s) = 0.2 exp(-2s) is shown in figure 16. The breaks in this function are artifacts of the atan2 function. The actual function continues down without any breaks. You can either leave the program as it is and just remember that any breaks in phase angles are artifacts or you can use Mathcad s programming feature to write your own function. The programming feature is described in other notes elsewhere. Some of my Bode plots use code to correctly plot phase angle. Figure 16

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes.

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes. Chapter 940 Introduction This section describes the options that are available for the appearance of a scatter plot. A set of all these options can be stored as a template file which can be retrieved later.

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

MATHEMATICAL FUNCTIONS AND GRAPHS

MATHEMATICAL FUNCTIONS AND GRAPHS 1 MATHEMATICAL FUNCTIONS AND GRAPHS Objectives Learn how to enter formulae and create and edit graphs. Familiarize yourself with three classes of functions: linear, exponential, and power. Explore effects

More information

Page 21 GRAPHING OBJECTIVES:

Page 21 GRAPHING OBJECTIVES: Page 21 GRAPHING OBJECTIVES: 1. To learn how to present data in graphical form manually (paper-and-pencil) and using computer software. 2. To learn how to interpret graphical data by, a. determining the

More information

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide 1 NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 253 Fundamental Physics Mechanic, September 9, 2010 Lab #2 Plotting with Excel: The Air Slide Lab Write-up Due: Thurs., September 16, 2010 Place

More information

Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION

Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION Appendix B: Autocad Booklet YR 9 REFERENCE BOOKLET ORTHOGRAPHIC PROJECTION To load Autocad: AUTOCAD 2000 S DRAWING SCREEN Click the start button Click on Programs Click on technology Click Autocad 2000

More information

PASS Sample Size Software

PASS Sample Size Software Chapter 945 Introduction This section describes the options that are available for the appearance of a histogram. A set of all these options can be stored as a template file which can be retrieved later.

More information

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch

Getting Started. Right click on Lateral Workplane. Left Click on New Sketch Getting Started 1. Open up PTC Pro/Desktop by either double clicking the icon or through the Start button and in Programs. 2. Once Pro/Desktop is open select File > New > Design 3. Close the Pallet window

More information

How to Create Website Banners

How to Create Website Banners How to Create Website Banners In the following instructions you will be creating banners in Adobe Photoshop Elements 6.0, using different images and fonts. The instructions will consist of finding images,

More information

Volume of Revolution Investigation

Volume of Revolution Investigation Student Investigation S2 Volume of Revolution Investigation Student Worksheet Name: Setting up your Page In order to take full advantage of Autograph s unique 3D world, we first need to set up our page

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 147 Introduction A mosaic plot is a graphical display of the cell frequencies of a contingency table in which the area of boxes of the plot are proportional to the cell frequencies of the contingency

More information

with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation

with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation WWW.SCHROFF.COM Lesson 1 Geometric Construction Basics AutoCAD LT 2002 Tutorial 1-1 1-2 AutoCAD LT 2002 Tutorial

More information

Name: Date Completed: Basic Inventor Skills I

Name: Date Completed: Basic Inventor Skills I Name: Date Completed: Basic Inventor Skills I 1. Sketch, dimension and extrude a basic shape i. Select New tab from toolbar. ii. Select Standard.ipt from dialogue box by double clicking on the icon. iii.

More information

University Libraries ScanPro 3000 Microfilm Scanner

University Libraries ScanPro 3000 Microfilm Scanner University Libraries ScanPro 3000 Microfilm Scanner Help Guide Table of Contents Getting Started 3 Loading the Film 4-5 Viewing Your Film 6-7 Motorized Roll Film Control 6 Crop Box 7 Using the Toolbar

More information

1. Start with scatter plot: 2. Find corner points. 3. Capture image. 4. Corners

1. Start with scatter plot: 2. Find corner points. 3. Capture image. 4. Corners 1. Start with scatter plot: 2. Find corner points Easiest way to insert picture properly in GeoGebra is to have corner points. We see that: bottom corner is (2,10) top corner is (9,21) 3. Capture image

More information

EXPLORING POLAR COORDINATES WITH THE GEOMETER S SKETCHPAD

EXPLORING POLAR COORDINATES WITH THE GEOMETER S SKETCHPAD EXPLORING POLAR COORDINATES WITH THE GEOMETER S SKETCHPAD Barbara K. D Ambrosia Carl R. Spitznagel John Carroll University Department of Mathematics and Computer Science Cleveland, OH 44118 bdambrosia@jcu.edu

More information

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003 1 Objectives 6. Multivariate EDA ACE 492 SA - Spatial Analysis Fall 2003 c 2003 by Luc Anselin, All Rights Reserved This lab covers some basic approaches to carry out EDA with a focus on discovering multivariate

More information

Drawing a Plan of a Paper Airplane. Open a Plan of a Paper Airplane

Drawing a Plan of a Paper Airplane. Open a Plan of a Paper Airplane Inventor 2014 Paper Airplane Drawing a Plan of a Paper Airplane In this activity, you ll create a 2D layout of a paper airplane. Please follow these directions carefully. When you have a question, reread

More information

Module 1G: Creating a Circle-Based Cylindrical Sheet-metal Lateral Piece with an Overlaying Lateral Edge Seam And Dove-Tail Seams on the Top Edge

Module 1G: Creating a Circle-Based Cylindrical Sheet-metal Lateral Piece with an Overlaying Lateral Edge Seam And Dove-Tail Seams on the Top Edge Inventor (10) Module 1G: 1G- 1 Module 1G: Creating a Circle-Based Cylindrical Sheet-metal Lateral Piece with an Overlaying Lateral Edge Seam And Dove-Tail Seams on the Top Edge In Module 1A, we have explored

More information

Using Google SketchUp

Using Google SketchUp Using Google SketchUp Opening sketchup 1. From the program menu click on the SketchUp 8 folder and select 3. From the Template Selection select Architectural Design Millimeters. 2. The Welcome to SketchUp

More information

Module 1C: Adding Dovetail Seams to Curved Edges on A Flat Sheet-Metal Piece

Module 1C: Adding Dovetail Seams to Curved Edges on A Flat Sheet-Metal Piece 1 Module 1C: Adding Dovetail Seams to Curved Edges on A Flat Sheet-Metal Piece In this Module, we will explore the method of adding dovetail seams to curved edges such as the circumferential edge of a

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

CAD Orientation (Mechanical and Architectural CAD)

CAD Orientation (Mechanical and Architectural CAD) Design and Drafting Description This is an introductory computer aided design (CAD) activity designed to give students the foundational skills required to complete future lessons. Students will learn all

More information

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables AB Design Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables X axis for AB Design Enter X axis label

More information

Magnitude and Phase Measurements. Analog Discovery

Magnitude and Phase Measurements. Analog Discovery Magnitude and Phase Measurements Analog Discovery Set up the oscilloscope to measure the signal of the reference voltage (the input voltage from the arbitrary function generator, in this case) and the

More information

FlashChart. Symbols and Chart Settings. Main menu navigation. Data compression and time period of the chart. Chart types.

FlashChart. Symbols and Chart Settings. Main menu navigation. Data compression and time period of the chart. Chart types. FlashChart Symbols and Chart Settings With FlashChart you can display several symbols (for example indices, securities or currency pairs) in an interactive chart. You can also add indicators and draw on

More information

Honors Chemistry Summer Assignment

Honors Chemistry Summer Assignment Honors Chemistry Summer Assignment Page 1 Honors Chemistry Summer Assignment 2014-2015 Materials needed for class: Scientific or Graphing Calculator Mrs. Dorman ldorman@ringgold.org Notebook with folder

More information

Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and Bode phase plot:

Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and Bode phase plot: Bode plot From Wikipedia, the free encyclopedia A The Bode plot for a first-order (one-pole) lowpass filter Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and

More information

AutoCAD 2020 Fundamentals

AutoCAD 2020 Fundamentals Autodesk AutoCAD 2020 Fundamentals ELISE MOSS Autodesk Certified Instructor SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following

More information

After completing this lesson, you will be able to:

After completing this lesson, you will be able to: LEARNING OBJECTIVES After completing this lesson, you will be able to: 1. Create a Circle using 6 different methods. 2. Create a Rectangle with width, chamfers, fillets and rotation. 3. Set Grids and Increment

More information

Solving Equations and Graphing

Solving Equations and Graphing Solving Equations and Graphing Question 1: How do you solve a linear equation? Answer 1: 1. Remove any parentheses or other grouping symbols (if necessary). 2. If the equation contains a fraction, multiply

More information

AutoCAD Tutorial First Level. 2D Fundamentals. Randy H. Shih SDC. Better Textbooks. Lower Prices.

AutoCAD Tutorial First Level. 2D Fundamentals. Randy H. Shih SDC. Better Textbooks. Lower Prices. AutoCAD 2018 Tutorial First Level 2D Fundamentals Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites to

More information

Math Labs. Activity 1: Rectangles and Rectangular Prisms Using Coordinates. Procedure

Math Labs. Activity 1: Rectangles and Rectangular Prisms Using Coordinates. Procedure Math Labs Activity 1: Rectangles and Rectangular Prisms Using Coordinates Problem Statement Use the Cartesian coordinate system to draw rectangle ABCD. Use an x-y-z coordinate system to draw a rectangular

More information

INTRODUCTION TO AGILENT VEE

INTRODUCTION TO AGILENT VEE INTRODUCTION TO AGILENT VEE I. Introduction The Agilent Visual Engineering Environment (VEE) is a graphical data flow programming language from Agilent Technologies (Keysight) for automated test, measurement,

More information

The version 2.0 of Solve Elec allow you to study circuits in direct current.

The version 2.0 of Solve Elec allow you to study circuits in direct current. Introduction Fonctionalities With Solve Elec you can : - draw a circuit - modify the properties of circuit components - define quantities related to the circuit by theirs formulas - see the circuit solution

More information

New Sketch Editing/Adding

New Sketch Editing/Adding New Sketch Editing/Adding 1. 2. 3. 4. 5. 6. 1. This button will bring the entire sketch to view in the window, which is the Default display. This is used to return to a view of the entire sketch after

More information

Introduction to CATIA V5

Introduction to CATIA V5 Introduction to CATIA V5 Release 17 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower

More information

AutoCAD 2018 Fundamentals

AutoCAD 2018 Fundamentals Autodesk AutoCAD 2018 Fundamentals Elise Moss SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites to learn more about

More information

Drawing Layouts Paper space & Model Space

Drawing Layouts Paper space & Model Space Drawing Layouts Paper space & Model Space Users of Bricscad will have seen the tabs at the bottom left of the drawings area labelled: Model, Layout1, Layout2 but may not know how to use them or what they

More information

TeleTrader FlashChart

TeleTrader FlashChart TeleTrader FlashChart Symbols and Chart Settings With TeleTrader FlashChart you can display several symbols (for example indices, securities or currency pairs) in an interactive chart. You can also add

More information

A graph is an effective way to show a trend in data or relating two variables in an experiment.

A graph is an effective way to show a trend in data or relating two variables in an experiment. Chem 111-Packet GRAPHING A graph is an effective way to show a trend in data or relating two variables in an experiment. Consider the following data for exercises #1 and 2 given below. Temperature, ºC

More information

AutoCAD 2D I. Module 6. Drawing Lines Using Cartesian Coordinates. IAT Curriculum Unit PREPARED BY. February 2011

AutoCAD 2D I. Module 6. Drawing Lines Using Cartesian Coordinates. IAT Curriculum Unit PREPARED BY. February 2011 AutoCAD 2D I Module 6 Drawing Lines Using Cartesian Coordinates PREPARED BY IAT Curriculum Unit February 2011 Institute of Applied Technology, 2011 Module 6 Auto CAD Self-paced Learning Modules AutoCAD

More information

Plot cylinder pressure against crank angle

Plot cylinder pressure against crank angle Plot cylinder pressure against crank angle You can create a new diagram three ways: Select Diagram, New Diagram Press F5 Click the New Diagram icon on the toolbar This will open the Select Channels dialogue.

More information

7.0 - MAKING A PEN FIXTURE FOR ENGRAVING PENS

7.0 - MAKING A PEN FIXTURE FOR ENGRAVING PENS 7.0 - MAKING A PEN FIXTURE FOR ENGRAVING PENS Material required: Acrylic, 9 by 9 by ¼ Difficulty Level: Advanced Engraving wood (or painted metal) pens is a task particularly well suited for laser engraving.

More information

Generations Automatic Stand-Alone Lace By Bernie Griffith Generations Software

Generations Automatic Stand-Alone Lace By Bernie Griffith Generations Software We are going to create an open Italian lace. Generations software products provide advanced image processing features allowing for the creation of stand-alone lace with just a few simple techniques. A

More information

The Revolve Feature and Assembly Modeling

The Revolve Feature and Assembly Modeling The Revolve Feature and Assembly Modeling PTC Clock Page 52 PTC Contents Introduction... 54 The Revolve Feature... 55 Creating a revolved feature...57 Creating face details... 58 Using Text... 61 Assembling

More information

AutoCAD LT 2012 Tutorial. Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS. Schroff Development Corporation

AutoCAD LT 2012 Tutorial. Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS.   Schroff Development Corporation AutoCAD LT 2012 Tutorial Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation AutoCAD LT 2012 Tutorial 1-1 Lesson 1 Geometric Construction

More information

Laboratory Experiment #1 Introduction to Spectral Analysis

Laboratory Experiment #1 Introduction to Spectral Analysis J.B.Francis College of Engineering Mechanical Engineering Department 22-403 Laboratory Experiment #1 Introduction to Spectral Analysis Introduction The quantification of electrical energy can be accomplished

More information

Importing and processing gel images

Importing and processing gel images BioNumerics Tutorial: Importing and processing gel images 1 Aim Comprehensive tools for the processing of electrophoresis fingerprints, both from slab gels and capillary sequencers are incorporated into

More information

Chapter 6 Title Blocks

Chapter 6 Title Blocks Chapter 6 Title Blocks In previous exercises, every drawing started by creating a number of layers. This is time consuming and unnecessary. In this exercise, we will start a drawing by defining layers

More information

SDC. AutoCAD LT 2007 Tutorial. Randy H. Shih. Schroff Development Corporation Oregon Institute of Technology

SDC. AutoCAD LT 2007 Tutorial. Randy H. Shih. Schroff Development Corporation   Oregon Institute of Technology AutoCAD LT 2007 Tutorial Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com www.schroff-europe.com AutoCAD LT 2007 Tutorial 1-1 Lesson 1 Geometric

More information

Table of Contents. Lesson 1 Getting Started

Table of Contents. Lesson 1 Getting Started NX Lesson 1 Getting Started Pre-reqs/Technical Skills Basic computer use Expectations Read lesson material Implement steps in software while reading through lesson material Complete quiz on Blackboard

More information

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis All circuit simulation packages that use the Pspice engine allow users to do complex analysis that were once impossible to

More information

Create a Flowchart in Word

Create a Flowchart in Word Create a Flowchart in Word A flowchart is a diagram of steps, movements or actions involved in a system or activity. Flowcharts use conventional geometric symbols and arrows to define relationships and

More information

Tutorial 2: Setting up the Drawing Environment

Tutorial 2: Setting up the Drawing Environment Drawing size With AutoCAD all drawings are done to FULL SCALE. The drawing limits will depend on the size of the items being drawn. For example if our drawing is the plan of a floor 23.8m X 15m then we

More information

MAKING THE FAN HOUSING

MAKING THE FAN HOUSING Our goal is to make the following part: 39-245 RAPID PROTOTYPE DESIGN CARNEGIE MELLON UNIVERSITY SPRING 2007 MAKING THE FAN HOUSING This part is made up of two plates joined by a cylinder with holes in

More information

Introduction to Simulink Assignment Companion Document

Introduction to Simulink Assignment Companion Document Introduction to Simulink Assignment Companion Document Implementing a DSB-SC AM Modulator in Simulink The purpose of this exercise is to explore SIMULINK by implementing a DSB-SC AM modulator. DSB-SC AM

More information

SolidWorks Tutorial 1. Axis

SolidWorks Tutorial 1. Axis SolidWorks Tutorial 1 Axis Axis This first exercise provides an introduction to SolidWorks software. First, we will design and draw a simple part: an axis with different diameters. You will learn how to

More information

3.2 Measuring Frequency Response Of Low-Pass Filter :

3.2 Measuring Frequency Response Of Low-Pass Filter : 2.5 Filter Band-Width : In ideal Band-Pass Filters, the band-width is the frequency range in Hz where the magnitude response is at is maximum (or the attenuation is at its minimum) and constant and equal

More information

MEASUREMENT CAMERA USER GUIDE

MEASUREMENT CAMERA USER GUIDE How to use your Aven camera s imaging and measurement tools Part 1 of this guide identifies software icons for on-screen functions, camera settings and measurement tools. Part 2 provides step-by-step operating

More information

Apex v5 Assessor Introductory Tutorial

Apex v5 Assessor Introductory Tutorial Apex v5 Assessor Introductory Tutorial Apex v5 Assessor Apex v5 Assessor includes some minor User Interface updates from the v4 program but attempts have been made to simplify the UI for streamlined work

More information

Student Exploration: Standard Form of a Line

Student Exploration: Standard Form of a Line Name: Date: Student Exploration: Standard Form of a Line Vocabulary: slope, slope-intercept form, standard form, x-intercept, y-intercept Prior Knowledge Questions (Do these BEFORE using the Gizmo.) 1.

More information

Year 11 Graphing Notes

Year 11 Graphing Notes Year 11 Graphing Notes Terminology It is very important that students understand, and always use, the correct terms. Indeed, not understanding or using the correct terms is one of the main reasons students

More information

Assignment 12 CAD Mechanical Part 2

Assignment 12 CAD Mechanical Part 2 Assignment 12 CAD Mechanical Part 2 Objectives In this assignment you will learn to apply the hidden lines, isometric snap, and ellipses commands along with commands previously learned.. General Hidden

More information

Tiling. 1. Overlapping tiles with fixed number of tiles. Tutorial

Tiling. 1. Overlapping tiles with fixed number of tiles. Tutorial Tutorial Tiling Software version: Asanti 3.0 Document version: April 3, 2017 This tutorial demonstrates how to use tiling within Asanti. Download the Asanti Sample Files via the Asanti Client (Help > Asanti

More information

Laboratory 2: Graphing

Laboratory 2: Graphing Purpose It is often said that a picture is worth 1,000 words, or for scientists we might rephrase it to say that a graph is worth 1,000 words. Graphs are most often used to express data in a clear, concise

More information

AutoCAD LT 2009 Tutorial

AutoCAD LT 2009 Tutorial AutoCAD LT 2009 Tutorial Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower Prices. AutoCAD LT 2009 Tutorial 1-1 Lesson

More information

Quilt Pro 6 Lesson Quilt in a Quilt

Quilt Pro 6 Lesson Quilt in a Quilt Quilt Pro 6 Lesson Quilt in a Quilt Quilt in a Quilt The Inner Quilt This quilt is a very complex design. We will cover a unique technique not covered in the manual. While any one can master the techniques

More information

Use of the LTI Viewer and MUX Block in Simulink

Use of the LTI Viewer and MUX Block in Simulink Use of the LTI Viewer and MUX Block in Simulink INTRODUCTION The Input-Output ports in Simulink can be used in a model to access the LTI Viewer. This enables the user to display information about the magnitude

More information

Appendix 3 - Using A Spreadsheet for Data Analysis

Appendix 3 - Using A Spreadsheet for Data Analysis 105 Linear Regression - an Overview Appendix 3 - Using A Spreadsheet for Data Analysis Scientists often choose to seek linear relationships, because they are easiest to understand and to analyze. But,

More information

Autodesk AutoCAD 2012: Fundamentals. Elise Moss. autodesk authorized publisher SDC PUBLICATIONS

Autodesk AutoCAD 2012: Fundamentals. Elise Moss. autodesk authorized publisher SDC PUBLICATIONS Autodesk AutoCAD 2012: Fundamentals Elise Moss autodesk authorized publisher SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation Autodesk AutoCAD 2012: Fundamentals Lesson 3.0 Drawing

More information

10 GRAPHING LINEAR EQUATIONS

10 GRAPHING LINEAR EQUATIONS 0 GRAPHING LINEAR EQUATIONS We now expand our discussion of the single-variable equation to the linear equation in two variables, x and y. Some examples of linear equations are x+ y = 0, y = 3 x, x= 4,

More information

Experiment 8: An AC Circuit

Experiment 8: An AC Circuit Experiment 8: An AC Circuit PART ONE: AC Voltages. Set up this circuit. Use R = 500 Ω, L = 5.0 mh and C =.01 μf. A signal generator built into the interface provides the emf to run the circuit from Output

More information

Data Analysis Part 1: Excel, Log-log, & Semi-log plots

Data Analysis Part 1: Excel, Log-log, & Semi-log plots Data Analysis Part 1: Excel, Log-log, & Semi-log plots Why Excel is useful Excel is a powerful tool used across engineering fields. Organizing data Multiple types: date, text, numbers, currency, etc Sorting

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

How to Draw a New York Beauty Block

How to Draw a New York Beauty Block How to Draw a New York Beauty Block We start by opening the Block Wizard. Click Options, Screen settings. In the Grid tab, choose Circular for the Grid Type. Set the Size to be.50 Number of Rings: 15 Radials:

More information

Sketch-Up Project Gear by Mark Slagle

Sketch-Up Project Gear by Mark Slagle Sketch-Up Project Gear by Mark Slagle This lesson was donated by Mark Slagle and is to be used free for education. For this Lesson, we are going to produce a gear in Sketch-Up. The project is pretty easy

More information

Chapter 6: TVA MR and Cardiac Function

Chapter 6: TVA MR and Cardiac Function Chapter 6 Cardiac MR Introduction Chapter 6: TVA MR and Cardiac Function The Time-Volume Analysis (TVA) optional module calculates time-dependent behavior of volumes in multi-phase studies from MR. An

More information

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE Objective: To learn to use a circuit simulator package for plotting the response of a circuit in the time domain. Preliminary: Revise laboratory 8 to

More information

Tinker Tuesday Project - Fabric Engraving

Tinker Tuesday Project - Fabric Engraving Tinker Tuesday Project - Fabric Engraving 1. Open CorelDRAW and create a new document. On the toolbar on the left side of the screen, select the Basic Shapes tool icon. This will allow you to create simple

More information

Reference Manual SPECTRUM. Signal Processing for Experimental Chemistry Teaching and Research / University of Maryland

Reference Manual SPECTRUM. Signal Processing for Experimental Chemistry Teaching and Research / University of Maryland Reference Manual SPECTRUM Signal Processing for Experimental Chemistry Teaching and Research / University of Maryland Version 1.1, Dec, 1990. 1988, 1989 T. C. O Haver The File Menu New Generates synthetic

More information

NX 7.5. Table of Contents. Lesson 3 More Features

NX 7.5. Table of Contents. Lesson 3 More Features NX 7.5 Lesson 3 More Features Pre-reqs/Technical Skills Basic computer use Completion of NX 7.5 Lessons 1&2 Expectations Read lesson material Implement steps in software while reading through lesson material

More information

1. An Introduction to Transient Stability

1. An Introduction to Transient Stability University of Technology, Jamaica School of Engineering Electrical Power Systems 1. An Introduction to Transient Stability Aims To give an appreciation of the data required for transient stability studies

More information

Activity P52: LRC Circuit (Voltage Sensor)

Activity P52: LRC Circuit (Voltage Sensor) Activity P52: LRC Circuit (Voltage Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) AC circuits P52 LRC Circuit.DS (See end of activity) (See end of activity) Equipment Needed Qty

More information

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives

Chapter 2. Drawing Sketches for Solid Models. Learning Objectives Chapter 2 Drawing Sketches for Solid Models Learning Objectives After completing this chapter, you will be able to: Start a new template file to draw sketches. Set up the sketching environment. Use various

More information

Input of Precise Geometric Data

Input of Precise Geometric Data Chapter Seven Input of Precise Geometric Data INTRODUCTION PLAY VIDEO A very useful feature of MicroStation V8i for precise technical drawing is key-in of coordinate data. Whenever MicroStation V8i calls

More information

Key Terms. Where is it Located Start > All Programs > Adobe Design Premium CS5> Adobe Photoshop CS5. Description

Key Terms. Where is it Located Start > All Programs > Adobe Design Premium CS5> Adobe Photoshop CS5. Description Adobe Adobe Creative Suite (CS) is collection of video editing, graphic design, and web developing applications made by Adobe Systems. It includes Photoshop, InDesign, and Acrobat among other programs.

More information

Sante FFT Imaging Copyright 2018 Santesoft, all rights reserved

Sante FFT Imaging Copyright 2018 Santesoft, all rights reserved Sante FFT Imaging Copyright 2018 Santesoft, all rights reserved Table of Contents About the program... 2 System Requirements... 2 The Fourier transform... 3 The user interface... 5 Customize the toolbar...

More information

How To Graphically Analyze Production History Data

How To Graphically Analyze Production History Data How To Graphically Analyze Production History Data March 25, 2004 MICA can plot production history on a semi-log graph, analyze any section of the production history with a least squares regression and

More information

EQ7 Summer Drawing Series: Block 4

EQ7 Summer Drawing Series: Block 4 EQ7 Summer Drawing Series: Block 4 www.doyoueq.com/blog Welcome to the Block 4 post for the EQ7 Summer Drawing Series! It s the last block in this drawing+sewing series and I hope you ve learned a lot

More information

Guidance on Using Scanning Software: Part 5. Epson Scan

Guidance on Using Scanning Software: Part 5. Epson Scan Guidance on Using Scanning Software: Part 5. Epson Scan Version of 4/29/2012 Epson Scan comes with Epson scanners and has simple manual adjustments, but requires vigilance to control the default settings

More information

Computer Programming ECIV 2303 Chapter 5 Two-Dimensional Plots Instructor: Dr. Talal Skaik Islamic University of Gaza Faculty of Engineering

Computer Programming ECIV 2303 Chapter 5 Two-Dimensional Plots Instructor: Dr. Talal Skaik Islamic University of Gaza Faculty of Engineering Computer Programming ECIV 2303 Chapter 5 Two-Dimensional Plots Instructor: Dr. Talal Skaik Islamic University of Gaza Faculty of Engineering 1 Introduction Plots are a very useful tool for presenting information.

More information

Embroidery Gatherings

Embroidery Gatherings Planning Machine Embroidery Digitizing and Designs Floriani FTCU Digitizing Fill stitches with a hole Or Add a hole to a Filled stitch object Create a digitizing plan It may be helpful to print a photocopy

More information

Thermo ImageQuest Version 1.0.1

Thermo ImageQuest Version 1.0.1 Thermo ImageQuest Version 1.0.1 User Guide XCALI-97200 Revision B May 2009 2009 Thermo Fisher Scientific Inc. All rights reserved. Xcalibur is a registered trademark of Thermo Fisher Scientific Inc. in

More information

MicroLab 500-series Getting Started

MicroLab 500-series Getting Started MicroLab 500-series Getting Started 2 Contents CHAPTER 1: Getting Started Connecting the Hardware....6 Installing the USB driver......6 Installing the Software.....8 Starting a new Experiment...8 CHAPTER

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

Chapter 5 Sectional Views

Chapter 5 Sectional Views Chapter 5 Sectional Views There are a number of different types of sectional views that can be drawn. A few of the more common ones are: full sections, half sections, broken sections, rotated or revolved

More information

DeltaCad and Your Horizontal Altitude Sundial Carl Sabanski

DeltaCad and Your Horizontal Altitude Sundial Carl Sabanski 1 The Sundial Primer created by In the instruction set SONNE and Your Horizontal Altitude Sundial we went through the process of designing a horizontal altitude sundial with SONNE and saving it as a dxf

More information