Determination of Drag Coefficient

Size: px
Start display at page:

Download "Determination of Drag Coefficient"

Transcription

1 DEPARTMENT OF MECHANICAL, INDUSTRIAL AND MANUFACTURING ENGINEERING MIMU MEASUREMENT AND ANALYSIS Determination of Drag Coefficient You will need to bring a zip disk or USB storage device to the lab to store your VI and measurement files. OBJECTIVES The objectives of this experiment are to 1) create a LabVIEW VI to record and analyze data from a force gauge and pressure transducer, 2) estimate the total drag coefficient from measured data, 3) modify the physical design of an object to reduce drag forces. BEFORE GETTING TO THE LAB In this lab, you are responsible for determining the sensitivities of the transducers you are using. Do this by creating a calibration curve for each of the transducers. Use the slope of the curve to determine the sensitivities. Make sure you are using units that are compatible with the VI you will create in the lab. Complete this step before coming to the lab, and have the sensitivities ready to input to the VI. The plots will be included in your write up. SETTING UP THE MEASUREMENT SYSTEM Your work station has a National Instruments Model SC-2345 signal conditioning chassis attached to the data acquisition board in the computer. For this lab, the SC-2345 is equipped with several modules to support measurement of resistance, strain, temperature and raw voltage. We will be using the raw voltage inputs, and converting these data to pressure and force. To begin creating the LabVIEW Virtual Instrument (VI) to be used in this experiment, power on the computer and log onto it. The login account is lab, and the password is lab. Double click National Instruments shortcut on the desktop. Click Cancel on the registration form, then click OK, then click Continue. You are building a new VI, so click New, then, Blank, and then OK. A new Front Panel will then be displayed. Move to the Block Diagram window, right click in its field, and click the Inputs palette. Once there, drag a DAQ Express VI onto the block diagram. Double-click the DAQ Express SubVI to configure it. It will launch a wizard that helps set up the data acquisition hardware. Once in the Wizard, select Analog Input, then Voltage. The My Physical Channels window will then appear on the lower right of the screen. This window maps the SC-2345 signal conditioning chassis to the DAQ board in the computer, channel by channel. Dev1 (PCI-6036E) is the PCI Data Acquisition Board in the PC. Listed below it should appear (as a minimum): SCC1ModX (SCC-FT01) SCC1ModY (SCC-FT01)

2 Both of these are voltage input modules, with the X and Y representing the location of the module in thesc-2345 chassis. Click the + in front of the first one, then click ai0 below it, then click Finish.. This will open the Analog Input Voltage Task window, which allows you to set up the parameters of the voltage recording. Under Channel List in the upper left corner, right click the voltage channel there, and select Rename from the menu. The SC-2345 is set up with the pressure transducer connected to the first of the two voltage input channels, so name this first channel Pressure Sensor Voltage. Next, click the + icon under Channel List, then select the second SCC_FT01 by clicking the + and then ai0 and Finish. Rename this second channel Force Gauge Voltage. This creates two active channels, as we will be recording the pressure and force simultaneously. The next step is to enter and/or modify each channel s parameters using the dialog box that appears under the Settings window. Click the Pressure Sensor Voltage channel in the upper left of the display, and configure the following inputs: Under Input Range Max = 5 (Volts) Min = -0.1 (Volts) Terminal Configuration = NRSE (single-ended input) Custom Scaling = <no scale> In the Task Timing window, click Acquire Continuously. Under Samples to Read input 500, and under Rate (Hz), input 100. This causes the DAQ to collect 500 samples at a rate of 100 samples per second, for a total of five seconds, continuously. Now click the Force Gauge Voltage channel in the upper left of the display, and configure the following inputs: Under Input Range Max = 0.5 (Volts) Min = -1.0 (Volts) Terminal Configuration = NRSE (single-ended input) Custom Scaling = <no scale> In the Task Timing window, click Acquire Continuously. Under Samples to Read input 500, and under Rate (Hz), input 100. This causes the pressure and force signals to be sampled under the same conditions. Test the DAQ now, then click OK to complete the VI. To write your data to a file, use the Express Write LVM VI located on the Windows>>Functions»Output palette. Double click into this. Leave the path statement blank. Under Action, select: Save to One File, Ask User to Choose File, and Ask Each Iteration. Under If a File Already Exists, select Rename Existing File. Under Segment Headers, select: One Header Only. Under X Value Columns, select:

3 One Column Only. And under Delimiter, select: Tab. Click OK and then wire this Sub VI to the output of the DAQ Sub VI. The format of this file is read normally by the Notepad application, but if you first start Excel then open the file from inside the application, and follow the steps indicated, you can reconfigure the file as an Excel file. Notice that there is only one output to the Express Write LVM VI, but there are two data channels. To unbundle the signals, it is necessary to use the Split Signals function. This function is accessed under Functions>>Signal Manip>>Split Signals. Drag the icon onto the Block Diagram, and place it near the output of the Express Write LVM VI. Wire it to the output from the LVM, and you will notice that it configures itself with two outputs. These correspond to the two signals it receives from the DAQ, in the order that they are input to the DAQ the top one is pressure and the bottom one force. Also, the force gauge sign convention causes tensile loads to appear as negative voltages. To correct for this, multiply the force voltage by -1. This is accomplished by selecting the Multiply function from the Functions>>Arith/Compare>>Numeric palette. Drag the icon near the output of the Split Signals icon, and wire the force (lower) terminal of that ion to one of the inputs to the Multiply icon. Right click the other terminal and add a constant. Set the constant value equal to -1. Next, Create two Statistics VIs from the Functions>>Analysis>>Statistics palette. Configure these to determine the mean and standard deviation, then place them near the Split Signals icon, and wire them to it. Create four Numeric Indicators on the front panel, label the first two Pressure Voltage Mean and Pressure Voltage STD, and wire them to the appropriate terminals on the Pressure signal Statistics VI. Repeat this for the remaining two indicators, naming them Force Voltage Mean and Force Voltage STD, and wire them to the output of the Multiply icon for the force signal. Create two waveform graph indicators on the Block Diagram. Click on the field of the Front Panel, click the Graph Indicators palette, and then drag a graph indicator onto the display, and repeat the process. Label one Pressure Voltage and wire it to the pressure terminal of the Split Signals icon. Label the second Force Voltage, and wire it to the other terminal. You can modify the axis labels and scales of the graphs to suit your measurements. The X-Axis scale (time) should be set to be 5 seconds, which is the total length of the data acquisition segment. The structure necessary for sampling, recording and displaying the voltage signals produced by the two transducers has been created. Now, these voltages must be converted to pressures and forces. To do this, a method for incorporating the sensitivities and zero errors (if any) of the two transducers must be included. Begin this by creating four numeric controls on the Front Panel. Label them as follows: Pressure Sensor Sensitivity (V/in H 2 O) Pressure Sensor Offset (V) Force Gauge Sensitivity (V/lb)

4 Force Gauge Offset (V) Locate these on the Font Panel so that the pressure controls are near the pressure voltage indicators, and the force controls are near the force voltage indicators. Place a Subtract function from the Functions>>Arith/Compare>>Numeric palette near the Pressure Sensor Offset control, and wire the output of the control to the LOWER input terminal of the Subtract icon. Wire the output of the pressure (upper) output terminal of the Split Signals icon to the UPPER input terminal to the Subtract icon. This will subtract the offset from the voltage signal before the sensitivity correction is applied to the signal. Repeat this for the force signal, wiring the upper input of its Subtract icon to the output of the multiplier output for the force signal. Next, the sensitivity corrections must be made. Sensitivity is the ratio of the output of a sensor to its input. In our VI, we are measuring voltage, and must convert it to either pressure or force using the inverse of the sensitivity for each transducer. Begin by placing a multiply icon on the block diagram near the output of the Subtract icon for the pressure signal. Wire one of the inputs to the Multiply icon to the output of the subtract icon. This other input terminal must be wired to the output of the Pressure Sensitivity control, but the number from the control must first be inverted. To do this, insert a Reciprocal function from the Functions>>Arith/Compare>>Numeric palette between the output of the Sensitivity control and the input of the Multiply icon. Wire the icon accordingly. Repeat this for the force signal. The output of this step is a signal with units of either pressure (in H 2 O) force (lbs). These signals must now be displayed. To do this, place an gauge indicator and two numeric indicators on the Front Panel near the pressure indicators and controls. On the block diagram, place a Statistics VI near the indicators. Wire the output of the Multiply icon to the input of the Statistics VI and to the gauge indicator. Configure the Statistics VI to output the mean and standard deviation, and wire these outputs to the two numeric indicators. Label the gauge Pressure, and click the minimum value and set it to zero inches of water, and click the maximum value and set it to 5 inches of water. Label the mean and standard deviation indicators accordingly, with units. Repeat this for the force signal. Finally, we are using LabVIEW to generate the power supply voltage to power the pressure transducer. Do this by selecting a DAQmx VI from the Functions>>Outputs palette, and placing it anywhere on the block diagram. LabVIEW will launch the set up routine for the VI. Select Analog Output, then Voltage. When the My Physical Channels box appears, click the + in front of SCC1Mod17 (SCC-FT01), click the ao0 under it, then click Finish. In the Analog Voltage Setup Task window, change only the min voltage to be 0V, and the Task Timing to Generate 1 Sample, then click OK. On the Block Diagram, right click the Data input terminal on the DAQ VI. We wish to create a constant of 10 volts, but when Create is selected, the Constant option is not highlighted. Instead, click the Control option to create a control. When this control

5 appears on the Block Diagram, right click it and then select Create and then Constant. Remove the control form the diagram, and wire the control into the Data input terminal. Make sure the value of the constant if set to 10. This will cause the SCC-FT01 module in location 17 to generate a continuous voltage 10 volt signal to power the Setra pressure transducer. Save the VI you have created to the desktop. You will also need to save the VI and data files to a storage device at some time before leaving the lab, in case you wish to examine your data later. Now, run the VI you have created, and verify that it works.

6 PROCEDURES 1. Select one of the model vehicles that have been made available to you. Measure the length width and height of the model you select. Record these for use in predicting the total drag from the model. 2. Rig the model in the wind tunnel with the help of the TA. 3. Don hearing protectors, available in the wind tunnel lab. INPUT OF THE SENSOR SENSATIVITIES AND DETERMINATION OF ZERO OFFSET 1. Run the VI with the wind tunnel off. 2. Record the data collected for the mean voltage for each of the transducers. This is the zero offset for each. Also note the characteristics of the raw voltages as seen in the graphic indicators on you control panel. If the signals look questionable, discuss this with the TA and try to remedy the problem. 3. Input the value for the offsets for the pressure and force gauge in the appropriate controls in the VI. The pressure transducer offset should be very small, while the force gauge, being a strain gauge transducer with a signal amplifier, may produce offsets on the order of half a volt or more. 4. Input the sensitivities of the sensors into the appropriate controls on the front panel of your VI. 5. Run the VI again with the tunnel off. It should produce a pressure and force that are very nearly zero. If they are not, repeat the steps above to determine what error you have made and correct it. Record these values as the Zero Speed data for your baseline measurement. Save the voltage file to the desktop, and then to a removable storage device. BASELINE MEASUREMENT 1. Have the TA check the installation of the model in the tunnel test section, and that the pitot tube position, and the connection to the force gauge are correct. 2. Ask the TA to start the tunnel at a speed of 20 on the controller. 10 will be skipped because there is almost no flow at this setting, and there may be little measurable flow at 20. Note that the controller is not calibrated, so the numbers on the dial are meaningless. 3. Record the pressure, force, and the standard deviations for the two signals at an input setting of 20. Save the raw voltage file to disk. 4. Increase the controller input to 30 and repeat the measurement. 5. Repeat the measurement process, increasing the input speed of the controller until 100 is reached. 6. Turn off the wind tunnel. MODIFICATION OF THE MODEL 1. Remove the model from the tunnel.

7 2. Use the materials available (clay, tape and cardboard) to improve the airflow and drag characteristics of your model. You will have only one chance to modify the model, so use your best judgment in your modifications. 3. Make sure all added materials are securely attached. 4. Take a digital picture of your design. This will be saved to disk for you, and you should include it in your lab write up. 5. Reinstall the modified model in the tunnel. 6. Have the TA check your installation. MODIFIED MEASUREMENT 1. Make a new measurement with the tunnel off. 2. Determine the new zero offsets, and, if the offsets have changed, input new values in the VI. 3. Repeat the steps of the baseline measurements for the modified model.

8 RESULTS 1. Provide calibration curves and sensitivities for the two transducers. 2. Provide the zero offsets used in each of the measurements. 3. Determine airflow velocities from the pressure data. Present these in a table. 4. Plot the drag force of the baseline model and of the modified model as a function of wind velocity. 5. Calculate the drag forces you expect for the vehicle assuming that the vehicle is a flat plate having a width and height equal to that of your model, and that is perpendicular to the flow. Plot these on a separate graph with the baseline drag force data. 6. Calculate drag coefficients for the baseline and modified models from the data, and plot these together on the same graph as a function of wind velocity. Model Dimensions Height: Width: Length:

9 BASELINE MEASUREMENTS PRESSURE ZERO OFFSET: FORGE GAUGE ZERO OFFSET: MOTOR CONTROL SETTING MEAN PRESSURE PRESSURE STD MEAN FORCE FORCE STD

10 MODIFIED MEASUREMENTS PRESSURE ZERO OFFSET: FORGE GAUGE ZERO OFFSET: MOTOR CONTROL SETTING MEAN PRESSURE PRESSURE STD MEAN FORCE FORCE STD

11 Imada Force Gauge Calibration Values Force (lb) Output (V)

Strain and Force Measurement

Strain and Force Measurement NORTHEASTERN UNIVERSITY DEPARTMENT OF MECHANICAL, INDUSTRIAL AND MANUFACTURING ENGINEERING MIMU 0-MEASUREMENT AND ANALYSIS Strain and Force Measurement OBJECTIVES The primary objective of this experiment

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

Ch En 475: Introduction to Instrumentation and Signal Processing with Labview

Ch En 475: Introduction to Instrumentation and Signal Processing with Labview Ch En 475: Introduction to Instrumentation and Signal Processing with Labview Measurement Instrumentation Rapid, on-line measurement of temperature, pressure, liquid level, flow rate and composition is

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

Ch En 475: Introduction to Instrumentation and Signal Processing with Labview

Ch En 475: Introduction to Instrumentation and Signal Processing with Labview Ch En 475: Introduction to Instrumentation and Signal Processing with Labview Measurement Instrumentation Rapid, on-line measurement of temperature, pressure, liquid level, flow rate and composition is

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

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

LabVIEW Tutorials. T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering

LabVIEW Tutorials. T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering LabVIEW Tutorials T.1 Temperature Measurement and Cold Junction Compensation (CJC) LUMS School of Science and Engineering Umer Hassan & Muhammad Sabieh Anwar Introduction: In this tutorial we shall learn

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

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

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

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

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

Cal-Bay Systems XY Plotter, Time-Base Recorder, Automated Tester. Users Guide. Rev 3.1

Cal-Bay Systems XY Plotter, Time-Base Recorder, Automated Tester. Users Guide. Rev 3.1 Cal-Bay Systems XY Plotter, Time-Base Recorder, Automated Tester Users Guide Rev 3.1 Contents... 1 Quick Start Guide... 2 Selecting a Test Specification... 3 Clearing Traces... 4 Saving Traces...4 Loading

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

Engineering Project-I. Module 1: Familiarization of LabVIEW and the Vernier Toolkit

Engineering Project-I. Module 1: Familiarization of LabVIEW and the Vernier Toolkit Engineering Project-I Module 1: Familiarization of LabVIEW and the Vernier Toolkit PREPARED BY Academic Services Unit January 2012 Applied Technology High Schools, 2012 Module 1: Familiarization of LabVIEW

More information

Data Acquisition HANS-PETTER HALVORSEN,

Data Acquisition HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Data Acquisition HANS-PETTER HALVORSEN, 2011.10.14 Faculty of Technology, Postboks 203, Kjølnes

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

User Manual for Portable National Instruments Board, Bridge Amplifiers, and VI Logger Software

User Manual for Portable National Instruments Board, Bridge Amplifiers, and VI Logger Software 1 User Manual for Portable National Instruments Board, Bridge Amplifiers, and VI Logger Software David Saxby, School of Human Kinetics, Faculty of Health Science, University of Ottawa Last modified: 16

More information

Datalogging in LabVIEW

Datalogging in LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Datalogging in LabVIEW HANS-PETTER HALVORSEN, 2011.01.04 Faculty of Technology, Postboks 203, Kjølnes

More information

Install the Software and Hardware

Install the Software and Hardware WHERE TO START WITH YOUR NI 4350/4351 This document explains how to begin using your National Instruments 4350/4351 high-precision temperature and voltage meters. The NI 4350/4351 (NI 435x) products include

More information

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW

ME 365 EXPERIMENT 3 INTRODUCTION TO LABVIEW 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

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

Hands-on Lab. Open-Loop Response: System Identification

Hands-on Lab. Open-Loop Response: System Identification Hands-on Lab Open-Loop Response: System Identification v r Motorized tethered cart A step or impulse response provides useful information that characterizes the system. With such data, one can then begin

More information

Physical Property Lab IMS VS CookBook

Physical Property Lab IMS VS CookBook Physical Property Lab IMS VS CookBook 1. Introduction The IMS VS (Velocity-Strength) application provides integrated control and data acquisition for the measurement of acoustic velocity and shear strength.

More information

Using DataQuest on a Handheld

Using DataQuest on a Handheld Using DataQuest on a Handheld Appendix B This appendix gives an overview of using the Vernier DataQuest application on a TI-Nspire handheld. It includes information on accessing the common tools in the

More information

Virtual Instrumentation With LabVIEW

Virtual Instrumentation With LabVIEW Virtual Instrumentation With LabVIEW Section I LabVIEW terms Components of a LabVIEW application LabVIEW programming tools Creating an application in LabVIEW LabVIEW Programs Are Called Virtual Instruments

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

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

BE/EE189 Design and Construction of Biodevices Lecture 5. BE/EE189 Design and Construction of Biodevices - Caltech

BE/EE189 Design and Construction of Biodevices Lecture 5. BE/EE189 Design and Construction of Biodevices - Caltech BE/EE189 Design and Construction of Biodevices Lecture 5 LabVIEW Programming Data acquisition DAQ system Signals and signal conditioning Nyquist frequency NI ELVIS II NI-DAQmx and DAQ assistant LabVIEW

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

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

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

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

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment Dept. of Electrical, Computer and Biomedical Engineering Data Acquisition Systems and the NI LabVIEW environment Data Acquisition (DAQ) Use of some data acquisition technique can be convenient, when not

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

ENGR 1000, Introduction to Engineering Design

ENGR 1000, Introduction to Engineering Design ENGR 1000, Introduction to Engineering Design Unit 2: Data Acquisition and Control Technology Lesson 2.1: Programming Line Outputs for the NI USB-6008 in LabVIEW Hardware: 12 VDC power supply Several lengths

More information

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

NI mydaq HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

NI mydaq HANS-PETTER HALVORSEN, Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics NI mydaq HANS-PETTER HALVORSEN, 2012.01.20 Faculty of Technology, Postboks 203, Kjølnes ring 56,

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

AME 20213: Fundamentals of Measurements and Data Analysis. LEX-3: Wind Tunnel Pressure Measurement Uncertainty 9 October 2006

AME 20213: Fundamentals of Measurements and Data Analysis. LEX-3: Wind Tunnel Pressure Measurement Uncertainty 9 October 2006 AME 20213: Fundamentals of Measurements and Data Analysis LEX-3: Wind Tunnel Pressure Measurement Uncertainty 9 October 2006 TA: John Schmitz Office: B028 Hessert Phone: 1-2317 E-mail : jschmitz@nd.edu

More information

Matlab OTKB GUI Manual:

Matlab OTKB GUI Manual: Matlab OTKB GUI Manual: Preface: This is the manual for the OTKB GUI. This GUI can be used to control stage position as well as perform sensitivity and stiffness calibrations on the trap. This manual will

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

Kulite DAQ. Data Acquisition Software User s Manual. Version 3.2.0

Kulite DAQ. Data Acquisition Software User s Manual. Version 3.2.0 Kulite DAQ Data Acquisition Software User s Manual Version 3.2.0 Table of Contents Kulite DAQ Overview... 3 Main Window... 4 1. Menu bar... 4 2. Interface selection... 5 3. Found devices... 5 4. Sorting...

More information

Data Acquisition in LabVIEW

Data Acquisition in LabVIEW University College of Southeast Norway Data Acquisition in LabVIEW Hans-Petter Halvorsen, 2016.10.28 http://home.hit.no/~hansha Preface This tutorial explains the basic concepts of a Data Acquisition in

More information

R4 Engine Programming Software

R4 Engine Programming Software R4 Engine Programming Software Description: The R4 software is a Windows TM based software package that provides the user interface for a variety of Split Second engine management products. It controls

More information

Warrior Control Panel

Warrior Control Panel Warrior Control Panel The Control Panel sets certain global characteristics of the Warrior system. The Warrior Control Panel is started from its icon in the Warrior program group or via the Windows Program

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

University of Michigan Department of Aerospace Engineering 5ft 7ft Wind Tunnel Data Acquisition Bible

University of Michigan Department of Aerospace Engineering 5ft 7ft Wind Tunnel Data Acquisition Bible University of Michigan Department of Aerospace Engineering 5ft 7ft Wind Tunnel Data Acquisition Bible Richard B. Choroszucha riboch@umich.edu 16.V.2010 Contents List of Figures vi I Gathering Data 1 1

More information

NAME EET 2259 Lab 3 The Boolean Data Type

NAME EET 2259 Lab 3 The Boolean Data Type NAME EET 2259 Lab 3 The Boolean Data Type OBJECTIVES - Understand the differences between numeric data and Boolean data. -Write programs using LabVIEW s Boolean controls and indicators, Boolean constants,

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

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

Advanced NI-DAQmx Programming Techniques with LabVIEW

Advanced NI-DAQmx Programming Techniques with LabVIEW Advanced NI-DAQmx Programming Techniques with LabVIEW Agenda Understanding Your Hardware Data Acquisition Systems Data Acquisition Device Subsystems Advanced Programming with NI-DAQmx Understanding Your

More information

NI-DAQmx Basic Course NITS John Shannon

NI-DAQmx Basic Course NITS John Shannon NI-DAQmx Basic Course NITS 2005 John Shannon Agenda Intro to DAQMX Difference between traditional / DaqMX MAX and DAQ Assistance Analog Input / Output Property Nodes Buffered / Continuous Acquisition Analog

More information

Learn LabVIEW 2010 / 2011 Fast

Learn LabVIEW 2010 / 2011 Fast Learn LabVIEW 2010 / 2011 Fast A Primer for Automatic Data Acquisition Douglas Stamps, Ph.D. SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com Visit

More information

Vernier SensorDAQ User s Manual

Vernier SensorDAQ User s Manual Vernier SensorDAQ User s Manual Vernier SensorDAQ User s Manual 2011 by Vernier Software & Technology. All rights reserved. You are entitled to reproduce parts of this manual for use in your educational

More information

GET130 Intro to Engineering Technology

GET130 Intro to Engineering Technology References: 1. http://www.ni.com/labview/ 2. http://en.wikipedia.org/wiki/labview Introduction: This lab continues from the previous lab by showing additional basic features of LabVIEW including For loops,

More information

The data acquisition components, and their relationship to each other, are shown below.

The data acquisition components, and their relationship to each other, are shown below. Data acquisition system Part (1) Digital inputs output and counter You can think of a data acquisition system as a collection of software and hardware that connects you to the physical world. A typical

More information

UW Department of Chemistry Lab Lectures Online

UW Department of Chemistry Lab Lectures Online Introduction to Excel and Computer Manipulation of Data Review Appendix A: Introduction to Statistical Analysis. Focus on the meanings and implications of the calculated values and not on the calculations.

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

Lab Exercise 4: Analog & Digital I/O Signals

Lab Exercise 4: Analog & Digital I/O Signals Objective To interface with analog & digital inputs & outputs. When you have completed this exercise, you will be able to: Configure and read analog input data Configure and write analog output data Configure

More information

Today. 4/5/11 Physics 262 Lecture 10 Questions about Exams Homework. Lab: Continue project. Lecture. Review your exams and review practice exam again.

Today. 4/5/11 Physics 262 Lecture 10 Questions about Exams Homework. Lab: Continue project. Lecture. Review your exams and review practice exam again. Today 4/5/11 Physics 262 Lecture 10 Questions about Exams Homework Review your exams and review practice exam again. Lab: Continue project Do pre-lab before lab. See last weeks handout. Requires use of

More information

Podium Plus Data Analysis Software. User Manual. SWIS10 Version

Podium Plus Data Analysis Software. User Manual. SWIS10 Version SWIS10 Version Issue 1.10 February 2005 Contents 1 Introduction 6 1.1 What is Podium Plus? 6 1.2 About This Manual 6 1.3 Typographical Conventions 7 1.4 Getting Technical Support 7 2 Getting Started 8

More information

Lab 03: Edge Detection Tutorial

Lab 03: Edge Detection Tutorial Lab 03: Edge Detection Tutorial Step 1: Start LabVIEW(LV) Robotics 2009, and then create a new robotics project. The project explorer window will then pop up. Save this project as Lab3EdgeDetection. Once

More information

Appendix E: Software

Appendix E: Software Appendix E: Software Video Analysis of Motion Analyzing pictures (movies or videos) is a powerful tool for understanding how objects move. Like most forms of data, video is most easily analyzed using a

More information

Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET

Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET After reading through the Introduction, Purpose and Principles sections of the lab manual (and skimming through the procedures), answer the following

More information

Above Threshold Warning of Temperature Data

Above Threshold Warning of Temperature Data Above Threshold Warning of Temperature Data Exercise 6 Completed front panel and block diagram. The hidden case Celsius is also shown in this picture. In the following exercise, you will create a program

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

Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001

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

More information

TFI s Windows-based Device Control software provides a powerful, easy-to-use interface for controlling and operating the Cobra Probe.

TFI s Windows-based Device Control software provides a powerful, easy-to-use interface for controlling and operating the Cobra Probe. COBRA PROBE The is a 4-hole pressure probe that provides dynamic, 3-component velocity and local pressure measurements in real-time. The features a linear frequency-response from 0 Hz (mean flow) to more

More information

Manual. User Reference Guide. Analysis Application (EMG) Electromyography Analysis

Manual. User Reference Guide. Analysis Application (EMG) Electromyography Analysis Phone: (888) 765-9735 WWW.MINDWARETECH.COM User Reference Guide Manual Analysis Application Electromyography Analysis (EMG) Copyright 2014 by MindWare Technologies LTD. All Rights Reserved. 1 Phone: (614)

More information

Labview Lab 2. Vern Lindberg. April 16, 2012

Labview Lab 2. Vern Lindberg. April 16, 2012 Labview Lab 2 Vern Lindberg April 16, 2012 1 Temperature Measurement Thermistors are sensitive semiconductor devices that can measure temperature over a restricted temperature range. The thermistors we

More information

National Instruments Corporation 1 Introduction to LabVIEW Hands-On

National Instruments Corporation 1 Introduction to LabVIEW Hands-On National Instruments Corporation 1 Introduction to LabVIEW Hands-On This is a list of the objectives of the course. This course prepares you to do the following: Use LabVIEW to create applications. Understand

More information

PHYS 5061 Lab 1: Introduction to LabVIEW

PHYS 5061 Lab 1: Introduction to LabVIEW PHYS 5061 Lab 1: Introduction to LabVIEW In this lab, you will work through chapter 1 and 2 of Essick s book to become familiar with using LabVIEW to build simple programs, called VI s in LabVIEW-speak,

More information

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev. 06.29.09 Overview: This reference manual will cover two separate applications that work together to produce a

More information

LABVIEW LAB SKILLS ACTIVITY 1 PROGRAMING ENVIRONMENT

LABVIEW LAB SKILLS ACTIVITY 1 PROGRAMING ENVIRONMENT LABVIEW LAB SKILLS ACTIVITY 1 PROGRAMING ENVIRONMENT WHAT IS LABVIEW? LabVIEW is a graphical programing language designed for scientists and engineers for experimental control and data acquisition. Most

More information

LabVIEW Experiment 1 Light Sensor Calibration Using Arduino Data Acquisition (Arduino DAQ)

LabVIEW Experiment 1 Light Sensor Calibration Using Arduino Data Acquisition (Arduino DAQ) Spring 2015 LabVIEW Experiment 1 Light Sensor Calibration Using Arduino Data Acquisition (Arduino DAQ) Experiment Objectives Experience LabVIEW capabilities through learning exercises that design and implement

More information

MindWare Electromyography (EMG) Analysis User Reference Guide Version Copyright 2011 by MindWare Technologies LTD. All Rights Reserved.

MindWare Electromyography (EMG) Analysis User Reference Guide Version Copyright 2011 by MindWare Technologies LTD. All Rights Reserved. MindWare Electromyography (EMG) Analysis User Reference Guide Version 3.0.12 Copyright 2011 by MindWare Technologies LTD. All Rights Reserved. MindWare EMG 3.0.12 User Guide Internet Support E-mail: sales@mindwaretech.com

More information

ROGA Control v1.0. User Manual Release 2

ROGA Control v1.0. User Manual Release 2 ROGA Fast 1.0 ROGA Control 1.0 SCXI:1600 (USB 1.0, b32-bit) ROGA Control v1.0 User Manual Release 2 This document describes the data acquisition hardware and software for controlling the Baldor Drives

More information

NI PXI Contents CALIBRATION PROCEDURE

NI PXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI PXI-5422 Contents This document contains step-by-step instructions for writing a calibration procedure for the NI PXI-5422 arbitrary waveform generator. Conventions... 1 Introduction...

More information

EZCT-2000 Software. VERSION 2.x USER'S MANUAL

EZCT-2000 Software. VERSION 2.x USER'S MANUAL EZCT-2000 Software VERSION 2.x USER'S MANUAL For Use with Vanguard s EZCT-S2, EZCT-S2A, EZCT-2000, EZCT-2000A, EZCT-2000B, EZCT-2KA, EZCT-2000C Current Transformer Testers Vanguard Instruments Company,

More information

Instruction Manual XLComm Data Acquisition Software For XL Series Meters

Instruction Manual XLComm Data Acquisition Software For XL Series Meters Data Acquisition Software For XL Series Meters (XL 15, 20, 25, 30, 40, 50 and 60 meters) 68X090832 Rev. 0 JAN 07 Preface This manual serves to explain the use of the Acquisition Software. The manual functions

More information

2D Tutorial. Project Description: Running VisualAnalysis: Setting Up the Project:

2D Tutorial. Project Description: Running VisualAnalysis: Setting Up the Project: 2D Tutorial Project Description: This project has been set-up to demonstrate the basic features of VisualAnalysis. You will model and analyze the following two-dimensional frame with a curved glue-laminated

More information

LabView programming 練習

LabView programming 練習 Virtual Instrumentation With LabVIEW LabView programming 練習 工綜六樓計算機室電腦 LabView 8.0 ( 目前最新版 Labview 2010) Interactive guide to LabView 請自行前往使用 1 LabVIEW 試用 http://www.ni.com/trylabview/zht/ 下載試用版 : OR 網路導覽與試用

More information

LabVIEW Basics I: Introduction Course

LabVIEW Basics I: Introduction Course www.ni.com/training LabVIEW Basics I Page 1 of 4 LabVIEW Basics I: Introduction Course Overview The LabVIEW Basics I course prepares you to develop test and measurement, data acquisition, instrument control,

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

Appendix 1: DataStudio with ScienceWorkshop Sensors Tech Tips

Appendix 1: DataStudio with ScienceWorkshop Sensors Tech Tips Appendix 1: DataStudio with ScienceWorkshop Sensors Tech Tips Section 1: Starting an experiment 1.1 Opening a file 1. Open the File menu and select Open Activity. 2. In the Open dialog box, navigate to

More information

National Instruments Corporation 1 Introduction to LabVIEW Hands-On

National Instruments Corporation 1 Introduction to LabVIEW Hands-On National Instruments Corporation 1 Introduction to LabVIEW Hands-On This is a list of the objectives of the course. This course prepares you to do the following: Use LabVIEW to create applications. Understand

More information

FUTEK USB Software Version User s Manual

FUTEK USB Software Version User s Manual FUTEK USB Software Version 2.0.0.0 User s Manual 10 Thomas, Irvine, CA 92618, USA Toll Free: (800) 23-FUTEK Telephone: (949) 465-0900 Fax: (949) 465-0905 futek@futek.com www.futek.com 2 Table of Contents

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

Vanderbilt Small Molecule NMR Center

Vanderbilt Small Molecule NMR Center Vanderbilt Small Molecule NMR Center Instructions for Using TOPSPIN version 2.0 DRX 400: Setting up 1H, 13C (1H decoupled), and 31P NMR Experiments Getting started: Sample Preparation: Make sure your sample

More information

Lab1: Introductory and Setup Activities

Lab1: Introductory and Setup Activities Objectives: Lab1: Introductory and Setup Activities - to map network drives - to use email to submit documents - to work on Robotics exercises - to gain exposure to robotics programming - to become more

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

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357 CALIBRATION PROCEDURE NI PXIe-4357 Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments PXIe-4357 SC Express modules using NI-DAQmx. For more information

More information

NI 9213 Calibration Procedure

NI 9213 Calibration Procedure NI 9213 Calibration Procedure Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments 9213 modules using NI-DAQmx. This calibration procedure is intended

More information

Characterizing Methane Concentrations in a Mine using NI LabVIEW

Characterizing Methane Concentrations in a Mine using NI LabVIEW Characterizing Methane Concentrations in a Mine using NI LabVIEW By Ben Rayner Senior Architect Data Science Automation, Inc. USA Category: Test and Measurement Products Used: NI LabVIEW 2009 LVOOP NI

More information

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation Designing and Creating your GIS Poster Revised by Carolyn Talmadge 1/20/2015 First think about your audience and purpose then design your poster! Here are instructions for setting up your poster using

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

Optimizer Collect User Manual. for MFC/MFM calibration with Integrator 110 and Drycal

Optimizer Collect User Manual. for MFC/MFM calibration with Integrator 110 and Drycal Optimizer Collect User Manual for MFC/MFM calibration with Integrator 110 and Drycal Table of Contents Overview of Optimizer Collect...2 PC Requirements...2 Equipment Required...2 Installing Collect on

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