ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW

Size: px
Start display at page:

Download "ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW"

Transcription

1 ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW Objectives: The goal of this exercise is to introduce the Laboratory Virtual Instrument Engineering Workbench, or LabVIEW software. LabVIEW is the primary software package that we will be using to acquire and analyze measurement data in ME365. This week's experiment will familiarize you with many of the LabVIEW fundamentals that we will rely on throughout the semester. After completing this lab, you should be able to: Construct a simple virtual instrument (VI). Navigate and use pre-made LabVIEW VIs. Know how to adjust sample rate and number of samples in order to capture a signal properly. Procedure: An Overview of LabVIEW: LabVIEW is a program development application or environment similar to the development systems you have used to write C or FORTRAN programs in some of your other courses. It is a general-purpose programming system which includes libraries of functions and development tools specifically tailored to data acquisition and instrument control. As you will see when you develop your own programs (called virtual instruments or VIs), LabVIEW is a graphic based programming language rather than text based like other languages you may have used. Another difference you will see as you develop VIs is that the program execution is data driven. That is, the program execution order is determined by the flow of data within the program. This is in contrast to other languages which are instruction driven. Log onto your computer and launch LabVIEW by going to Start Programs National Instrument LabVIEW When LabVIEW opens you will see the Getting Started window. In this dialog window, select Blank VI under the New heading. This will open two windows cascaded on top of each other. The top window is called the front panel of the VI. It acts as the user interface of the virtual instrument. It is called a front panel because it simulates the front panel of a physical instrument and includes such items as knobs, switches, buttons, gages, graphs, and other controls and indicators. The second window, partially obscured by the front panel, shows the wiring diagram for the VI. Inputs from the front panel are passed to control terminals located in the diagram window. Similarly, results from the VI are sent from indicator terminals in the diagram window to the corresponding front panel indicators. The diagram window contains a pictorial representation of the instrument's program, and describes how the instrument is to process data. 1

2 Front Panel Controls: If you haven't already done so, launch LabVIEW and select the front panel of a new VI. To create a new VI, click New and choose Blank VI and hit the OK button. A VI is either in edit mode, in which you can create or change a VI, or in run mode, in which you can execute a VI. You cannot edit a VI in run mode. Use the pull down menu titled Operate. At this time, make sure you are in edit mode. Across the top of the panel window are pull down menus labeled File, Edit, View, Operate, Project, Windows, and Help. Most of these pull down menus are very similar to those found in other applications. The arrow icon starts the execution of the VI even if the system is in edit mode. When you click on this icon while in edit mode, the VI is compiled, switched to run mode, run, and then switched back to edit mode when the VI is finished. The remaining editing icons are made available by pressing the shift key and the right mouse button simultaneously. This can also be called up by selecting the Tools Palette under the View dropdown menu Figure 1: The Tools Palette Figure 1 shows the Tools palette. The editing tools are used to perform specific tasks. The hand may be selected to operate front panel controls. This tool is also available in run mode. The top control, shaped like a wrench and screwdriver, enables or disables automatic tool selection. Manual tool selection can be done simply by clicking on the appropriate tool. The positioning tool looks like a normal mouse cursor, and may be used to select, move, and resize objects. The labeling tool has an upper case A on the icon, and is used to create and edit text labels. The icon shaped like a spool of wire is the wiring tool used to wire objects together on the block diagram; this tool also assigns controls and indicators on the front panel to terminals on the VI icon connector. The paint brush tool may be used to add color to objects and backgrounds. Adding Numeric Controls/Indicators to the Front Panel: Open the Numeric Controls and Indicators by clicking the right mouse button. A palette of controls and indicators should appear. Make a selection by using the mouse to 2

3 highlight the desired control, then clicking the left mouse button. Position the control to the desired location on the front panel and click the left mouse button. Practice placing a knob on the front panel. Move the knob around by using the positioning tool and dragging it with the left mouse button. Notice that when you move the positioning tool cursor near the corners of the knob a "frame corner" appears. This is a resizing handle. Clicking and dragging on a handle allows you to resize an object. Use the Labeling tool to change the first and last values of the numbers around the outside of the knob. In LabVIEW parlance, to pop-up means to right-click on an object. Pop-up on the knob you have placed on the front panel and look though the types of settings and properties you can set for this object. You can change the precision, number base, etc. of the knob. You can also change the knob from a control to an indicator or hide/reveal a label that is bound to the knob. Bound labels are always connected to an object and move along with the object if it is relocated. Bound labels also identify component terminals in the wiring diagram window. Adding Boolean Controls/Indicators to the Front Panel: Boolean (true/false) controls and indicators are available from the Boolean palette of the Controls palette. Boolean controls simulate push-buttons or toggle/slide switches and come in a variety of shapes. Boolean indicators include different shapes of LEDs or light bulbs. Popping up a menu on a Boolean object allows you to customize their behavior to some degree. Practice adding some Boolean controls or indicators to your front panel. It is also a good idea to begin getting in the habit of affixing bound labels to your front panel elements. Adding Graphs to the Front Panel: LabVIEW supports several types of graph and chart indicators. A graph indicator is a two-dimensional display of one or more plots. A graph indicator acquires and plots data all at once, as opposed to a chart which also displays one or more plots, but acquires the data and updates the display point by point. Graphs and charts are available from the Graph palette of the Controls palette. Graph or chart pop-up menus allow you to customize such items as X and Y axis scaling, linear or logarithmic spacing, and legends. Try adding a graph or chart to your front panel before proceeding. The Wiring Diagram Panel: Now select Show Diagram from the Windows menu. This will place you in the wiring diagram window of the VI. It is in this window that you will connect your front panel controls and indicators with arithmetic operators, functions, and other structures. Notice that any front panel elements that you may have added appear here along with their bound labels. Pop-up anywhere in the diagram window to examine the Functions palette. Many of the function palettes used in the lab can be found under the palette labeled Programming. For example, to find the Structures palette, right-click in any blank section of the block diagram window, go to the Programming palette and then go to the first palette at the top labeled Structures. This sub palette contains common programming 3

4 structures. Numeric constants are similarly found in the palette labeled Numeric also under the All Functions palette. Look through the other sub palettes in the Functions palette to get an idea of what building blocks are available to you. Programming Structures: LabVIEW supports several program flow structures that are common to other languages that you may have used. FOR and WHILE loops are supported to control repetitive operations, as are CASE structures which can be used to make decisions. The icon for each structure is a resizable box with a distinctive border. Any objects placed inside the structure will be controlled by the structure. Place a For loop and a While loop somewhere in the diagram window now. Be sure to identify the parts of these structures as they are discussed here. A For loop executes its contents a number of times specified by the count terminal, N. The count terminal may be set explicitly by wiring a value from outside the loop to the upper left-hand corner of the count terminal. The other edges of the count terminal are exposed to the inside of the loop so that you can access the count internally. The iteration terminal, i, contains the current number of completed iterations. For loops can also iterate over the elements of an array. In this case, simply wiring an array into the for loop will create an auto-index tunnel and not require an explicit connection to the count terminal, N. The for loop will iterate over the entire array. If multiple arrays are tunneled into the for loop, the loop will iterate element by element until the smallest array is completed. A While loop executes its contents until a Boolean value you wire to the conditional terminal is FALSE. The conditional terminal looks like a rotational arrow. LabVIEW checks the conditional value at the end of each iteration, and continues if the value is TRUE, thus the loop always executes at least once. The default value of the conditional terminal is FALSE, so if it is left unwired, the loop iterates only once. The iteration terminal in a While loop behaves exactly like its For loop counterpart. LabVIEW creates terminals, or "tunnels," for passing data into or out of a structure automatically where wires connecting outside nodes and inside nodes cross the structure boundary. Tunnels always have one edge exposed to the inside of the structure and one edge exposed to the outside. A tunnel always resides on the border of the structure, but you can move it anywhere along that border by dragging it. Tunnels into for loops can behave as an indexer with the array data type. This causes the for loop to lookup the element specified by the iteration terminal i and to loop until the array has been fully parsed. If you wish to pass the entire array into a for loop, you can right click the tunnel and select Disable indexing. Building Your First VI - An Electronic Thermometer Begin by closing the current VI and opening a fresh one, or by deleting all objects in the wiring diagram and front panel windows. 4

5 Thermometer Control Panel: One of the first steps in creating any VI is to build a front panel that contains the necessary controls and indicators. Use the following procedure to create your front panel. 1. Position the cursor near the center of the front panel window. 2. Pop-up (by pressing the right mouse button) and select the thermometer icon. It is located under the Express Menu, then the Numeric Indicators Menu, and finally Thermometer. 3. The label appears above the thermometer's digital display as a gray rectangle with Thermometer written in it. Change it to read "Temperature". The label border expands to accommodate the size of the text as you type. To remind you to end an editing operation, an Enter button appears on the far left of the tools palette. If you do not enter text into the label before performing the next keyboard or mouse action, the label disappears. If this happens, pop-up on the thermometer and select Label from the Show option in the pop-up menu. 4. The default scale on the temperature indicator ranges from 0.0 to You can change the scale by highlighting the high and low scale markers with the operating or labeling tool and typing new values. Highlight 0.00 by double-clicking on it, type 70.0, and press the <ENTER> key on the numeric keypad. Similarly, change to LabVIEW automatically scales the intermediate increments. Thermometer Wiring Diagram: Next, we'll begin to wire the VI to perform a desired function. Select Show Block Diagram from the Windows menu. The untitled diagram is now the active window. It should already contain the terminal for the temperature indicator and the label you created. 1. Select the Positioning tool from the Edit Palette (Shift and right mouse button). Use the positioning tool to move the temperature indicator terminal to the right portion of the wiring diagram. Dragging the terminal also moves the label. Dragging the label moves only the label. 2. Find the Demo Voltage Read Function and place it to the left on the wiring diagram. To find the Demo Voltage Read function, right click on the wiring diagram to get the Functions pop-up menu. Then go to Select a VI and select the DemoVoltageRead VI from the ME365_support.llb library. 3. Pop-up between the Demo Voltage Read function and the Temperature terminal and choose the Multiply function. This is found in the Mathematics Menu followed by the Numeric Menu. 5

6 4. Pop-up below the Demo Voltage Read node and choose a Numeric Constant. This is found in the Programming Menu followed by the Numeric Menu. Edit the constant to have a value of With the Positioning tool, arrange the objects on the block diagram as shown in figure 2. Figure 2: Block Diagram 6. Select the Wiring tool. (When working in the block diagram, you can toggle between the Wiring tool and the Positioning tool by pressing the space bar.) 7. Position the Wiring tool over the Demo Voltage Read node titled Measured Voltage. The node flashes, indicating that you can wire to it. 8. Click and release the left mouse button, and move the mouse to the right. As you move the tool away from the node, the wire spools off horizontally. 9. Click the left mouse button. This tacks the wire so you can change direction. Move the Wiring tool over the top-left input terminal on the Multiply icon. It will flash, signaling that you can make a connection. Click the mouse button to complete the operation. A colored line indicates a good connection between the Demo Voltage Read and the Multiply node. A bad wire appears as a black dashed line, indicating a faulty connection. If you create a bad wire, select Remove Bad Wires from the Edit Menu and rewire the objects. Continue to wire the diagram as shown in figure 3. The order or direction in which you wire objects is unimportant. If, during the process of wiring the VI, you notice that the arrow on the Run button appears "broken," then there is an error in the diagram. Select Remove Bad Wires from the Edit menu to remove any small wire fragments that you may have left in the diagram. The Run button arrow should not appear broken when all bad wires are removed and the necessary connections are made. 6

7 Figure 3: Completed Wiring Diagram A VI can be run from either the diagram window or the front panel, but for this example select Show Panel from the Windows menu, and run the VI several times by clicking on the Run button. To run the VI repeatedly click on the Continuous Run button, which looks like two arrows going around in a circle. To stop the VI, click on the stop sign button. At this point, it would be a good idea to save your work. To save a VI that has been newly written: 1. Select Save from the File menu. You are presented with a save dialog box, similar to the ones you've used in Excel or Word. 2. Change the Save directory to your own computer account or flash drive. 3. Type therm.vi in the dialog box that appears and click OK. During the course of the semester, you will be called upon to modify existing VIs. In order to store your modifications, you should use the Save As command. This will allow you to make a copy of the modified VI. Thermometer Icon: It is possible to call one VI within a wiring diagram of another. This is similar to the notion of creating subroutines or subprograms in other computer languages. Since LabVIEW is graphically based, you must create an icon and connector for any VI you wish to make use of elsewhere. The icon is the graphical symbol for the VI, and the connector assigns controls and indicators to input and output VI terminals. 1. Switch to the Panel window if you are not already there and get in edit mode (found under the operate fly-out menu). 2. Pop-up on the blank icon in the top right corner of the panel window and select Edit Icon. 7

8 3. Clear the icon area by selecting Layers tab of the Icon Editor, highlighting the User Layer VI Icon and clicking the red X button. Figure 4 shows the Layers tab. Figure 4: Edit Icon Window The tools on the right side of this window are used to create the icon in the pixel editing area, which is the large square box. The normal-size image of the icon appears in lower left corner of the large icon editing region. 3. Use the fill tool, Glyphs, Icon Text tab to make an icon like the one shown in figure 5. When you are finished, click on the OK button of the Icon Editor window. Your icon replaces the blank icon. Figure 5: Completed Icon 8

9 Data is passed to and from a sub VI through the terminals of its connector pane. You define connections by choosing the number of terminals you want for the VI and by assigning a front panel control or indicator to each of those terminals. Only the controls (inputs) and indicators (outputs) you will use during programming need terminals on the connector pane. 4. Pop-up on the icon (with the right mouse button) you just created and select Show Connector. 5. Pop-up (with the right mouse button) on the connector pane and choose Patterns. Each of the rectangles on the connector represents a terminal area for input to or output from the VI. You can select other patterns if needed by selecting them here. Choose a pattern with one input and one output. 6. Now you must assign the terminal on the connector to the temperature indicator. Select the Wiring tool. 7. Click on the terminal in the connector with the Wiring tool. It turns black. Then click on the temperature indicator with the same wiring tool. LabVIEW highlights it. The assignment is now complete. 8. Pop-up on the connector and select Show Icon. 9. Close the VI by clicking on the close box of the panel window. When the dialog box asks you to save changes, click on the Yes button. Congratulations! You have just built your first VI! Now we will see how to use it as a "sub VI" in the next VI we build. Building the Second VI - A Temperature Monitoring Instrument: We will now build a new virtual instrument that will monitor the temperature using the Thermometer VI we just finished and will plot the data on a strip chart recorder. Control Panel: The VI needs a switch to start and stop the acquisition and a strip chart to display the temperature. Open a new VI by clicking on the New VI button in the dialog box. An empty panel and diagram window will come up on the screen of your computer. 1. Choose a toggle switch from the Boolean Palette of the Controls Menu. Label the switch "Power." 2. Choose the waveform chart from the Graph Palette of the Controls Menu. Label it "Temperature History." Change the range to accommodate temperature values. With the operating tool, double click on the lower limit and type Similarly change the upper limit of the strip chart to

10 3. Position the components as shown in figure 6. Figure 6: Front Panel with Labels Wiring Diagram: 1. Select Show Block Diagram from the Window Menu. 2. Move the two terminals to the top of the window. If necessary, pop-up on the terminals and select Show Labels. (You can select more than one object at a time by clicking on the first object to select it, then holding the shift key while clicking on all additional objects.) 3. Pop-up in a free area of the diagram and choose Select a VI from the functions menu. Locate and open the VI library you created and select the Thermometer VI program you just saved in the earlier portion of the laboratory. Move the Temp icon up to the top of the diagram and out of the way. 4. Add a While loop by popping-up in an open area of the diagram, the While Loop is under Execution Control. Resize the While loop placing it around all three objects. 10

11 5. Wire the diagram as shown in figure 7. Please check the Stop/Continue if True setting is the same as in figure 7 (in the right bottom corner). Figure 7: Initial Block Diagram of Temperature Monitor 6. Select the Wait Until Next ms Multiple Function. It is found by right clicking on an empty portion of the block diagram. Select the View All (the double arrow down), followed by the Programming Menu, followed by the Timing Menu, and finally the Wait Until Next ms Multiple Function (it looks like a metronome). 7. Select a Numeric Constant from the Numeric Palette. It appears highlighted on the block diagram. Type in a value of 1000 and wire the constant to the Wait Until Next ms Multiple Function. This block ensures that no iteration occurs before the specified number of milliseconds has elapsed. In this case, the loop will execute once per second. Your wiring diagram should look like the one shown in figure 8. 11

12 Figure 8: Final Wiring Diagram of Temperature Monitor with Timing Run your VI using the run button, not the continuous run button. The VI has been wired so that turning off the power switch on the front panel will halt the program. Save your new VI. Printing VIs: Print your VI to turn in to your laboratory instructor at the end of the period. To do this, choose Print under the File menu. The printout of your VI will include the front panel, the wiring diagram, and a hierarchy of the sub VIs called by the top-level VI. This printout gives you a record of the source code of the instrument you have constructed. A General Waveform Measurement VI: Please close all VIs and load the Multichannel Scan.vi located in the ME365.llb library located in the ME365 folder on the Desktop. Look at the front panel of the instrument, as shown in figure 9. Along the left side of the front panel are several controllers used to set the channels that are scanned, the number of sample points in each channel, the sampling rate in samples per second, the input range of each channel, and whether the data will be saved to disk. Next to the controls is a waveform indicator. A title is displayed above the indicator. The default value is Multi Channel Scan, however it may be changed to a more descriptive title. To the right side of the plot area of the indicator is a legend in which 12

13 displays the channels selected. If the data is to be saved to a file, then the title is stored along with the date and time from the system clock. Legend labels are used to label the data columns in the spreadsheet file. Take a few minutes to examine the wiring diagram for this VI. Can you identify some of the components and structures we used earlier? Measurements with the VI: Figure 9: Front Panel of Multichannel Scan.vi In this section you will be asked to measure a 5 volt RMS 500 Hz sine wave with the VI and record the signal in an EXCEL spreadsheet file. You are to collect exactly 10 cycles of the waveform with 20 points in each cycle. Use these values to calculate the Sample Rate and Samples/channel that you will use in Multichannel Scan.vi. 1. Set the function generator to produce the required signal (REMEMBER High Z Setting). 2. Connect the signal to the channel 0 input on the data acquisition board interface box. 3. Set the VI to collect the signal and save it to a file. Since only one input channel is being used, the Samples per Channel is the total number of data points that you wish to collect. Options in the Channel Groups section allow the user to specify input ranges for individual channels. The default values are fine for this application. To save the data, click Save Data button and toggle the switch to its down position. After the data is collected you will be prompted for a file name. Save the data on your 13

14 account drive or external memory device as an EXCEL file with a.xls extension. 4. Switch to Windows and launch EXCEL. Load the file you just saved into EXCEL and view the data. Make a plot of the signal using Chart Wizard to be turned into your laboratory instructor. 14

Introduction to LabVIEW Exercise-1

Introduction to LabVIEW Exercise-1 Introduction to LabVIEW Exercise-1 Objective In this Laboratory, you will write simple VIs to incorporate basic programming structures in LabVIEW. This section will teach you fundamentals of LabVIEW front

More information

Lesson 4 Implementing a VI

Lesson 4 Implementing a VI Lesson 4 Implementing a VI A. Front Panel Design B. LabVIEW Data Types C. Documenting Code D. While Loops E. For Loops F. Timing a VI G. Iterative Data Transfer H. Plotting Data I. Case Structures A. Front

More information

Getting Started with LabVIEW Virtual Instruments

Getting Started with LabVIEW Virtual Instruments Getting Started with LabVIEW Virtual Instruments Approximate Time You can complete this exercise in approximately 30 minutes. Background LabVIEW programs are called virtual instruments, or VIs, because

More information

Small rectangles (and sometimes squares like this

Small rectangles (and sometimes squares like this Lab exercise 1: Introduction to LabView LabView is software for the real time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because it,

More information

Hands-on Lab 2: LabVIEW NI-DAQ Basics 2

Hands-on Lab 2: LabVIEW NI-DAQ Basics 2 Hands-on Lab 2: LabVIEW NI-DAQ Basics 2 Recall that the final objective is position regulation using computer-controlled state feedback. Computer control requires both software, like LabVIEW and hardware,

More information

OpenStax-CNX module: m Thermometer VI * National Instruments

OpenStax-CNX module: m Thermometer VI * National Instruments OpenStax-CNX module: m12209 1 Thermometer VI * National Instruments This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 1.0 Exercise 1 Complete the following

More information

Lab 1: Getting familiar with LabVIEW: Part I

Lab 1: Getting familiar with LabVIEW: Part I Lab 1: Getting familiar with LabVIEW: Part I The objective of this first lab is to provide an initial hands-on experience in building a VI. For detailed explanations of the LabVIEW features mentioned here,

More information

NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE INSTRIUCTIONS IN THE EXERCISES

NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE INSTRIUCTIONS IN THE EXERCISES NI LabView READ THIS DOCUMENT CAREFULLY AND FOLLOW THE Introduction INSTRIUCTIONS IN THE EXERCISES According to National Instruments description: LabVIEW is a graphical programming platform that helps

More information

Homework Assignment 9 LabVIEW tutorial

Homework Assignment 9 LabVIEW tutorial Homework Assignment 9 LabVIEW tutorial Due date: Wednesday, December 8 (midnight) For this homework assignment, you will complete a tutorial on the LabVIEW data acquistion software. This can be done on

More information

Linear Control Systems LABORATORY

Linear Control Systems LABORATORY Islamic University Of Gaza Faculty of Engineering Electrical Engineering Department Linear Control Systems LABORATORY Prepared By: Eng. Adham Maher Abu Shamla Under Supervision: Dr. Basil Hamed Experiments

More information

Exercise 0 - Open and Run a Virtual Instrument (Slide 12)

Exercise 0 - Open and Run a Virtual Instrument (Slide 12) Exercise 0 - Open and Run a Virtual Instrument (Slide 12) Examine the Signal Generation and Processing VI and run it. Change the frequencies and types of the input signals and notice how the display on

More information

Computer Interfacing Using LabView

Computer Interfacing Using LabView Computer Interfacing Using LabView Physics 258 Last revised September 25, 2005 by Ed Eyler Purpose: Note: To write a simple LabView program that digitizes data using an ADC on a data acquisition card,

More information

A. Front Panel Design Lesson 4 Implementing a VI

A. Front Panel Design Lesson 4 Implementing a VI A. Front Panel Design Lesson 4 Implementing a VI Inputs and outputs lead to front panel design Retrieve the inputs by the following methods: TOPICS A. B. C. D. E. F. Front Panel Design LabVIEW Data Types

More information

Lab 4 - Data Acquisition

Lab 4 - Data Acquisition Lab 4 - Data Acquisition 1/13 Lab 4 - Data Acquisition Report A short report is due at 8:00 AM on the Thursday of the next week of classes after you complete this lab. This short report does NOT need to

More information

Part 1. Creating an Array of Controls or Indicators

Part 1. Creating an Array of Controls or Indicators NAME EET 2259 Lab 9 Arrays OBJECTIVES -Write LabVIEW programs using arrays. Part 1. Creating an Array of Controls or Indicators Here are the steps you follow to create an array of indicators or controls

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

Basic Data Acquisition with LabVIEW

Basic Data Acquisition with LabVIEW Basic Data Acquisition with LabVIEW INTRODUCTION This tutorial introduces the creation of LabView Virtual Instruments (VI s), in several individual lessons. These lessons create a simple sine wave signal,

More information

ME 224: EXPERIMENTAL ENGINEERING. Lecture 2

ME 224: EXPERIMENTAL ENGINEERING. Lecture 2 ME 224: EXPERIMENTAL ENGINEERING Class: M 1:00-1:50 TECH: L170 Labs: T and Th 2:00-4:50 PM Ford Building : B100 Lecture 2 1 Introduction to Labview Labview (Laboratory Virtual Instruments Engineering Workbench)

More information

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform

Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform Step-by-Step Data Acquisition Part II Exercise 2: Generating an Analog Output Waveform In this exercise, you will use the DAQ Assistant to build a LabVIEW VI that generates and outputs an analog waveform.

More information

Introduction to LabVIEW

Introduction to LabVIEW Introduction to LabVIEW How to Succeed in EE 20 Lab Work as a group of 2 Read the lab guide thoroughly Use help function and help pages in LabVIEW Do the Pre-Lab before you come to the lab Don t do the

More information

Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011)

Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011) Experiment 1: Introduction to Labview 8.0 (tbc 1/7/2007, 1/13/2009,1/13/2011) Objective: To learn how to build virtual instrument panels in Labview 8.0 Tasks: 1. Build the Labview VI shown in the tutorial

More information

Introduction to LabVIEW

Introduction to LabVIEW Introduction to LabVIEW 1 Introduction 1.1 Aims The following material is a short introduction to LabVIEW and it aims for you to: familiarise with the LabVIEW programming environment including front panel

More information

Learn the three palettes. Learn how data is passed in LabVIEW. Create a subvi using two different methods.

Learn the three palettes. Learn how data is passed in LabVIEW. Create a subvi using two different methods. UNM The LabVIEW Programming Environment and Basic Operations Introduction In this hands-on, you will learn about the LabVIEW programming environment. You will also write a simple Virtual Instrument (VI)

More information

Introduction to National Instruments LabVIEW and Data Acquisition (DAQ)

Introduction to National Instruments LabVIEW and Data Acquisition (DAQ) Introduction to National Instruments LabVIEW and Data Acquisition (DAQ) Danial J. Neebel, Joseph R. Blandino, and David J. Lawrence, College of Integrated Science and Technology James Madison University

More information

Arrays are lists of elements of the same data type. They are analogous to arrays in traditional languages.

Arrays are lists of elements of the same data type. They are analogous to arrays in traditional languages. 0 1 Arrays are lists of elements of the same data type. They are analogous to arrays in traditional languages. Arrays can have one or more dimensions. Arrays can have up to (2^31)-1 elements per dimension.

More information

The LabVIEW Programming Environment and Basic Operations

The LabVIEW Programming Environment and Basic Operations Page 1 of 14 UNM The LabVIEW Programming Environment and Basic Operations Introduction In this hands-on, you will learn about the LabVIEW programming environment. You will also write a simple Virtual Instrument

More information

Read Temperature Data

Read Temperature Data Read Temperature Data Exercise 5 Completed front panel and block diagram In this exercise, you will create a program using SensorDAQ s Analog Express VI to collect temperature data and display it on a

More information

Section 1 Establishing an Instrument Connection

Section 1 Establishing an Instrument Connection Manual for Sweep VI Fall 2011 DO NOT FORGET TO SAVE YOUR DATA TO A NEW LOCATION, OTHER THAN THE TEMP FOLDER ON YOUR LAB STATION COMPUTER! FAILURE TO DO SO WILL RESULT IN LOST DATA WHEN YOU LOG OUT! 1.1.

More information

c01.qxd p /18/01 11:03 AM Page 1 Fundamentals

c01.qxd p /18/01 11:03 AM Page 1 Fundamentals c01.qxd p001-017 10/18/01 11:03 AM Page 1 Fundamentals c01.qxd p001-017 10/18/01 11:03 AM Page 2 OVERVIEW Welcome to the world of LabVIEW! This chapter gives you a basic explanation of LabVIEW and its

More information

INTRODUCTION TO LABVIEW

INTRODUCTION TO LABVIEW INTRODUCTION TO LABVIEW 2nd Year Microprocessors Laboratory 2012-2013 INTRODUCTION For the first afternoon in the lab you will learn to program using LabVIEW. This handout is designed to give you an introduction

More information

Introduction to Labview and Temperature Measurement

Introduction to Labview and Temperature Measurement Introduction to Labview and Temperature Measurement Objective This lab is intended to familiarize you with the LABVIEW software and the data acquisition board used in this class and with temperature measurements

More information

Shift Register: Exercise # 1: Shift Register Example VI. 1. Build the following front panel. Figure (8.1): Shift register exercise front panel

Shift Register: Exercise # 1: Shift Register Example VI. 1. Build the following front panel. Figure (8.1): Shift register exercise front panel Experiment # 8: Shift Register and arrays Shift Register: Use shift register on for loops and while loops to transfer values from one loop to the next, create a shift register by right clicking the left

More information

ECE 202 LAB 1 INTRODUCTION TO LABVIEW

ECE 202 LAB 1 INTRODUCTION TO LABVIEW Version 1.2 Page 1 of 16 BEFORE YOU BEGIN EXPECTED KNOWLEDGE ECE 202 LAB 1 INTRODUCTION TO LABVIEW You should be familiar with the basics of programming, as introduced by courses such as CS 161. PREREQUISITE

More information

ECE 463 Lab 1: Introduction to LabVIEW

ECE 463 Lab 1: Introduction to LabVIEW ECE 463 Lab 1: Introduction to LabVIEW 1. Introduction The purpose of the lab session of ECE463 is to apply/practice the digital communication theory on software-defined radios (USRPs). USRP is coupled

More information

University of Pennsylvania. Department of Electrical and Systems Engineering. ESE Undergraduate Laboratory. Introduction to LabView

University of Pennsylvania. Department of Electrical and Systems Engineering. ESE Undergraduate Laboratory. Introduction to LabView University of Pennsylvania Department of Electrical and Systems Engineering ESE Undergraduate Laboratory Introduction to LabView PURPOSE The purpose of this lab is to get you familiarized with LabView.

More information

Page 1 of 6. ME 3200 Mechatronics I Laboratory Lab 2: LabView Computer Systems. Introduction

Page 1 of 6. ME 3200 Mechatronics I Laboratory Lab 2: LabView Computer Systems. Introduction ME 3200 Mechatronics I Laboratory Lab 2: LabView Computer Systems Introduction The purpose of this lab is to introduce the basics of creating programs in LabView for data collection and analysis. LabView

More information

Lab Exercise 2: Data Acquisition with NI LabVIEW

Lab Exercise 2: Data Acquisition with NI LabVIEW Objective When you have completed this exercise, you will be able: To use the DAQ Assistant to acquire analog data measurements with NI LabVIEW To use Write to Measurement express VI to log real time data

More information

Visual Physics - Introductory Lab Lab 0

Visual Physics - Introductory Lab Lab 0 Your Introductory Lab will guide you through the steps necessary to utilize state-of-the-art technology to acquire and graph data of mechanics experiments. Throughout Visual Physics, you will be using

More information

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch User Guide for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch allows the user to quickly create, or sketch, features in ArcMap using easy-to-use

More information

Computer Essentials Session 1 Lesson Plan

Computer Essentials Session 1 Lesson Plan Note: Completing the Mouse Tutorial and Mousercise exercise which are available on the Class Resources webpage constitutes the first part of this lesson. ABOUT PROGRAMS AND OPERATING SYSTEMS Any time a

More information

PHYC 500: Introduction to LabView. Exercise 8 (v 1.3) M.P. Hasselbeck, University of New Mexico. Arrays, XY Graphs, Disk I/O

PHYC 500: Introduction to LabView. Exercise 8 (v 1.3) M.P. Hasselbeck, University of New Mexico. Arrays, XY Graphs, Disk I/O PHYC 500: Introduction to LabView M.P. Hasselbeck, University of New Mexico Exercise 8 (v 1.3) Arrays, XY Graphs, Disk I/O Place two numeric controls (label them Number of points and Offset ) on the Front

More information

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 This lab reviews LabVIEW concepts needed towards the course s final objective of position regulation using computer-controlled state feedback. Specific LabVIEW concepts

More information

Visual Physics Introductory Lab [Lab 0]

Visual Physics Introductory Lab [Lab 0] Your Introductory Lab will guide you through the steps necessary to utilize state-of-the-art technology to acquire and graph data of mechanics experiments. Throughout Visual Physics, you will be using

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

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

Certified LabVIEW Associate Developer Exam. Test Booklet

Certified LabVIEW Associate Developer Exam. Test Booklet Certified LabVIEW Associate Developer Exam Test Booklet Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not receive this exam in a sealed

More information

Table 1. Inputs and Outputs

Table 1. Inputs and Outputs Goal Description Use a While Loop and an iteration terminal and pass data through a tunnel. Create a VI that continuously generates random numbers between 0 and 1000 until it generates a number that matches

More information

LabView instrumentoinnissa, 55492, 3op Labview in instrumentation

LabView instrumentoinnissa, 55492, 3op Labview in instrumentation LabView instrumentoinnissa, 55492, 3op Labview in instrumentation Lecturer: Heikki Ojala, heikki.ojala@helsinki.fi, room C204a Physicum Teaching assistant: Hannu Koskenvaara, hannu.koskenvaara@helsinki.fi,

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Tutorial: Getting Started with the LabVIEW Simulation Module

Tutorial: Getting Started with the LabVIEW Simulation Module Tutorial: Getting Started with the LabVIEW Simulation Module - LabVIEW 8.5 Simulati... Page 1 of 10 Cart Help Search You are here: NI Home > Support > Product Reference > Manuals > LabVIEW 8.5 Simulation

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

More information

Using LabVIEW. with. BiPOM Boards. Quick Start Guide. Document Revision: Date: 18 September, 2009

Using LabVIEW. with. BiPOM Boards. Quick Start Guide. Document Revision: Date: 18 September, 2009 Using LabVIEW with BiPOM Boards Quick Start Guide Document Revision: 1.01 Date: 18 September, 2009 BiPOM Electronics, Inc. 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970. Fax:

More information

Introduction to Computer Engineering (E114)

Introduction to Computer Engineering (E114) Introduction to Computer Engineering (E114) Lab 1: Full Adder Introduction In this lab you will design a simple digital circuit called a full adder. You will then use logic gates to draw a schematic for

More information

Student Quick Reference Guide

Student Quick Reference Guide Student Quick Reference Guide How to use this guide The Chart Student Quick Reference Guide is a resource for PowerLab systems in the classroom laboratory. The topics in this guide are arranged to help

More information

PHY 351/651 LABORATORY 1 Introduction to LabVIEW

PHY 351/651 LABORATORY 1 Introduction to LabVIEW PHY 351/651 LABORATORY 1 Introduction to LabVIEW Introduction Generally speaking, modern data acquisition systems include four basic stages 1 : o o A sensor (or transducer) circuit that transforms a physical

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

PowerPoint for Art History Presentations

PowerPoint for Art History Presentations PowerPoint for Art History Presentations For PC computers running Microsoft Office 2007+ Adapted by The University of California, Berkeley from the Institute of Fine Arts document by Elizabeth S. Funk

More information

Excel Core Certification

Excel Core Certification Microsoft Office Specialist 2010 Microsoft Excel Core Certification 2010 Lesson 6: Working with Charts Lesson Objectives This lesson introduces you to working with charts. You will look at how to create

More information

LabVIEW Express VI Development Toolkit User Guide

LabVIEW Express VI Development Toolkit User Guide LabVIEW Express VI Development Toolkit User Guide Version 1.0 Contents The LabVIEW Express VI Development Toolkit allows you to create and edit Express VIs, which you can distribute to users for building

More information

ni.com Preparing for the CLAD Exam

ni.com Preparing for the CLAD Exam Preparing for the CLAD Exam Breaking Data Flow Situation: Run 2 Loops simultaneously with 1 Stop Button Wiring the Stop Button from one Loop to the other will NOT work. Solution: Use a Local Variable Drawbacks:

More information

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics Session 7 MS Word Graphics Inserting Clipart, and Graphics Modify graphics Position graphics Table of Contents Session 7 Working with Graphics... 1 The Toolbar... 1 Drawing Toolbar... 1 Picture Toolbar...

More information

Lab 2: Introduction to LabVIEW 8.5

Lab 2: Introduction to LabVIEW 8.5 Lab 2: Introduction to LabVIEW 8.5 INTRODUCTION: This lab is designed as an introduction to using LabVIEW. In this lab you will run through some tutorials to get a basic understanding of some of the LabVIEW

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

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHARTING WEB PARTS... 5 EXERCISE 2: PERFORMING ANALYSIS WITH EXCEL AND

More information

SystemVue 2011 Fundamentals (version ) LAB EXERCISE 1. SystemVue Basics

SystemVue 2011 Fundamentals (version ) LAB EXERCISE 1. SystemVue Basics SystemVue 2011 Fundamentals (version 1-2012) LAB EXERCISE 1 SystemVue Basics This lab exercise introduces the basic use model of SystemVue, including using the built-in templates, running analyses and

More information

BD CellQuest Pro Analysis Tutorial

BD CellQuest Pro Analysis Tutorial BD CellQuest Pro Analysis Tutorial Introduction This tutorial guides you through a CellQuest Pro Analysis run like the one demonstrated in the CellQuest Pro Analysis Movie on the BD FACStation Software

More information

Determination of Drag Coefficient

Determination of Drag Coefficient DEPARTMENT OF MECHANICAL, INDUSTRIAL AND MANUFACTURING ENGINEERING MIMU 505 - MEASUREMENT AND ANALYSIS Determination of Drag Coefficient You will need to bring a zip disk or USB storage device to the lab

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. Learn about LabView software and its different components

1. Learn about LabView software and its different components SfwrEng 4aa3/4ga3 Lab 1 Lab Sessions: Week starting Sept. 21, 2009. Pre-lab reports Due: Week Starting Sept. 21, 2009 at the start of lab sessions. Lab-Reports Due: Week Starting Oct. 5, 2009 at the start

More information

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico

PHYC 500: Introduction to LabView. Exercise 1 (v 1.3) M.P. Hasselbeck, University of New Mexico PHYC 500: Introduction to LabView M.P. Hasselbeck, University of New Mexico Exercise 1 (v 1.3) Setup The user interface of LabView is highly customizable. How this is done is a personal preference. For

More information

Virtual Instrumentation With LabVIEW

Virtual Instrumentation With LabVIEW Virtual Instrumentation With LabVIEW Course Goals Understand the components of a Virtual Instrument Introduce LabVIEW and common LabVIEW functions Build a simple data acquisition application Create a subroutine

More information

Table of Contents WINDOWS 95. What is Windows 95? Features LINC TWO

Table of Contents WINDOWS 95. What is Windows 95? Features LINC TWO Table of Contents What is Windows 95? Windows 95 is a computer-operating system that controls the basic operation of the computer and the programs (also known as applications or software tools) that run

More information

Navigator Software User s Manual. User Manual. Navigator Software. Monarch Instrument Rev 0.98 May Page 1 of 17

Navigator Software User s Manual. User Manual. Navigator Software. Monarch Instrument Rev 0.98 May Page 1 of 17 User Manual Navigator Software Monarch Instrument Rev 0.98 May 2006 Page 1 of 17 Contents 1. NAVIGATOR SOFTWARE 2. INSTALLATION 3. USING NAVIGATOR SOFTWARE 3.1 STARTING THE PROGRAM 3.2 SYSTEM SET UP 3.3

More information

Certified LabVIEW Associate Developer Examination

Certified LabVIEW Associate Developer Examination Certified LabVIEW Associate Developer Examination Examinee Date: Administrator Date: Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not

More information

Lesson 1 Introduction to LabVIEW. TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI

Lesson 1 Introduction to LabVIEW. TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI Lesson 1 Introduction to LabVIEW TOPICS LabVIEW Environment Front Panel Block Diagram Dataflow Programming LabVIEW Help and Manuals Debugging a VI 1 Virtual Instruments (VIs) Front Panel Controls = Inputs

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

AOE 3054 LabView Programming

AOE 3054 LabView Programming AOE 3054 LabView Programming Starting LabView Let s begin by opening LabView From the Start Menu, Locate and start LabView 8.2 If this is your first time running LabView you may get a Windows Security

More information

CLAD Sample Exam 03. C. A control that output a cluster of the controls / indicators on the tabs.

CLAD Sample Exam 03. C. A control that output a cluster of the controls / indicators on the tabs. Name: Date: CLAD Sample Exam 03 1. Where can a VI be documented so that the description appears in the Show Context Help popup window? A. In the VI Properties Documentation window B. Typing in the Show

More information

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t Tutorials Introductory Tutorials These tutorials are designed to give new users a basic understanding of how to use SIMetrix and SIMetrix/SIMPLIS. Tutorial 1: Getting Started Guides you through getting

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Slide Views MORE TASKS IN MICROSOFT POWERPOINT PAGE 05 Formatting

More information

Introduction to LabVIEW

Introduction to LabVIEW University College of Southeast Norway Introduction to LabVIEW Hans-Petter Halvorsen, 2016-09-07 http://home.hit.no/~hansha Preface This document explains the basic concepts of LabVIEW. You find additional

More information

Getting Started with DADiSP

Getting Started with DADiSP Section 1: Welcome to DADiSP Getting Started with DADiSP This guide is designed to introduce you to the DADiSP environment. It gives you the opportunity to build and manipulate your own sample Worksheets

More information

One possible window configuration preferences for debug cycles

One possible window configuration preferences for debug cycles NEW USER S TUTORIAL Welcome to ICAP/4, Intusoft s suite of analog and mixed-signal simulation products. There is also a New User s Tutorial 2 as follow-on to this tutorial for non-icap/4rx products. Let

More information

Setup Examples. RTPView Project Program

Setup Examples. RTPView Project Program Setup Examples RTPView Project Program RTPView Project Program Example 2005, 2007, 2008, 2009 RTP Corporation Not for reproduction in any printed or electronic media without express written consent from

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Certified LabVIEW Associate Developer Examination

Certified LabVIEW Associate Developer Examination Certified LabVIEW Associate Developer Examination Examinee Date: Administrator Date: Note: The use of the computer or any reference materials is NOT allowed during the exam. Instructions: If you did not

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

Faculty of Computing, Engineering and Technology. Real Time Systems 1 CE LabVIEW David D. Hodgkiss & Staffordshire University 1

Faculty of Computing, Engineering and Technology. Real Time Systems 1 CE LabVIEW David D. Hodgkiss & Staffordshire University 1 Faculty of Computing, Engineering and Technology Real Time Systems 1 CE00345-3 TM LabVIEW 8 2006 David D. Hodgkiss & Staffordshire University 1 Table of Contents Chapter 1 - Introduction. Introduction.

More information

Labview. Masood Ejaz

Labview. Masood Ejaz Labview A Tutorial By Masood Ejaz Note: This tutorial is a work in progress and written specially for CET 3464 Software Applications in Engineering Technology, a course offered as part of BSECET program

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

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

Logger Pro 3. Quick Reference

Logger Pro 3. Quick Reference Logger Pro 3 Quick Reference Getting Started Logger Pro Requirements To use Logger Pro, you must have the following equipment: Windows 98, 2000, ME, NT, or XP on a Pentium processor or equivalent, 133

More information

Microsoft Excel 2007 Lesson 7: Charts and Comments

Microsoft Excel 2007 Lesson 7: Charts and Comments Microsoft Excel 2007 Lesson 7: Charts and Comments Open Example.xlsx if it is not already open. Click on the Example 3 tab to see the worksheet for this lesson. This is essentially the same worksheet that

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information