Strain and Force Measurement

Size: px
Start display at page:

Download "Strain and Force Measurement"

Transcription

1 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 is to use resistance strain gauges and associated electronics to measure strain in a cantilevered beam. Data are collected using a computer-based measurement system that will be constructed in the LabVIEW environment. The effect of using a Wheatstone Bridge circuit as a signal conditioner for strain gauges is also investigated. Strain measurements are recorded for a number of force inputs to the beam. The beam/strain gauge system is then calibrated for use as a force measuring device. BACKGROUND The measurement of strain is typically accomplished using resistance strain gauges. These transducers employ a segment of thin wire that is subjected to the strain to be measured. If the gauge is appropriately bonded to the structure being measured, the strain in the structure is transmitted to the wire, which in turn produces a change in the resistance of the wire. This resistance change is a small fraction of the nominal resistance of the wire segment, frequently less than 1/0 th of a percent, which can be difficult to measure. Because of this a special electronic circuit, the Wheatstone Bridge, is employed. The bridge provides a number of benefits, including conversion of the resistance change of the wire to a voltage change, reducing the dynamic range of the measurement, creating a strain sensitivity that is easily scaled, and allowing multiple gauges to be used together to account for thermal expansion errors, and to differentiate between axial and bending loading. In this experiment, we will measure strain using a number of active and dummy gauges that are placed in half and full Wheatstone Bridge circuits. The output voltage from the circuit is measured using a computer-based data acquisition system, which is controlled using the LabVIEW application. The first step in setting up the experiment, setting up the data acquisition hardware, is already done for you. The acquisition hardware and drivers are installed on your work station, along with LabVIEW and all of the necessary components to collect and process the strain data. Your work station has a National Instruments Model SC-234 signal conditioner, pictured below, attached to the data acquisition board in the computer.

2 SC-234 Figure 1. The SC-234 Input Signal Conditioning Chassis The SC-234 contains a number of modules that are designed to provide inputs to and accept outputs from, the apparatus being measured. For this lab, the SC-234 is equipped with modules to support measurement of strain for both half- and full-bridge Wheatstone Bridge circuits. Both of the modules generate a 2. Volt DC input, or Excitation signal to the bridge, and have a voltage input to accept the output, or Sense, voltage from the bridge. For the half-bridge case, two gauges are plugged into the External Wheatstone Bridge Circuit Board, and the voltage output from the bridge is input to the half-bridge module in the SC-234. With the full-bridge module, four gauges are plugged into the Wheatstone Bridge Circuit Board, with the output of the board fed to that module. The circuit diagrams for these to configurations appear below.

3 Figure 2. Schematic Diagrams for the Half and Full Wheatstone Bridge Circuits, Including the NI Module CONSTRUCTING THE VIRTUAL INSTRUMENT IN LABVIEW The first step is to power up the computer and log onto it. The login name 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, under VI From Template, subcategory DAQ, select Data Acquisition with NI-DAQmx.vi. A DAQ Express Sub VI within a While loop will be displayed on the block diagram of your new VI. To Build the VI, 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 Strain. The My Physical Channels window will then appear on the lower right of the screen. This window maps the SC-234 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):

4 SCC1Mod1 (SCC-SG04) Full Bridge Strain Gauge SCC1Mod2 (SCC-SG03) Half Bridge Strain Gauge Click the + in front of SCC1Mod1 (SCC-SG04) Full Bridge Strain Gauge Then click on ai0 below it, and then click Finish. The next step is to enter and/or modify the strain gauge parameters, using the dialog box that appears. These include the resistance and Gauge Factor of the strain gauges. These are as follows: Gauge Factor = 2.11 (Dimensionless) Gauge Resistance = 120 (Ohms) Initial Voltage 0 is used to Zero the Strain Gauge output voltage from the bridge for the zero strain condition. Leave this set at zero. We will be doing this manually in the data acquisition module, as this produces better results for our measurements. Next configure the additional parameters: Vex Source = Internal Vex Value = 2. (Volts) Strain Configure = Full Bridge I Lead Resistance = 0 Acquire Continuously = SET TO MEASURE 0 SAMPLES AT 0 HZ When you have set the parameters correctly, click OK. The DAQ is now set up with the input parameters set for a full Wheatstone Bridge circuit with four strain gauges having a resistance of 120 Ohms and Gauge Factors of The unstrained output of the bridge will be set to 0 Volts. The input or excite voltage, the DC voltage supplied to the bridge, is set to be created by the module ( internal ), at a level of 2. Volts. The lead resistance is small, so is set at 0 Ohms, and the DAQ is set to sample the voltage at a rate of 0 cycles per second (0 Hz) for 0 samples. The way that the data acquisition modules work in LabVIEW, half bridge data is divided by two, and full bridge data is divided by four. As we wish to make comparisons between configurations, it is necessary to remove these factors. To do this, add a Scaling and Mapping Express VI to your VI. DO this by going to the Mathematics/Comparison palette under the Functions palette. Select the VI and place it to the right of the DAQ VI. Once placed, a dialog box appears. Select Linear from the menu, and set the slope to 4 and the Y intercept to 0. Then click OK. Wire the output of the DAQ VI to the input of the Scaling and Mapping VI.

5 Now, we must create the ability to change from full bridge to half bridge mode. To do this we will use a Case Structure. The Case Structure allows for two different configurations to be run, depending on the value of a Boolean. To set this up, right click the block diagram, go to Execution Control and select Case Structure. Place the structure on the block diagram, around the DAQ Express VI and the Scaling and Mapping VI. Once in position, the structure loop will appear grey, with a dialog box at the top, and a small green box on the left that contains a question mark. The value in the box at the top should be True. If the box is clicked, the value changes to False. You now notice that there no contents in the False loop. To place circuitry there, go back to the True structure, and select its contents, and select Copy on the edit menu. Next, move back to the False box, and paste the contents of the buffer inside it. It now has the same contents as the true box. To modify the contents of the False box for use in collecting half bridge data, right click on the DAQ VI. Click the - to remove the SCC1Mod1 (SCC-SG04) Full Bridge Strain Gauge from the configuration, and then click the + in front of the SCC1Mod2 (SCC-SG03) Half Bridge Strain Gauge. Then click ai0. The only other parameter that must be changed is the Strain Configure, which should be set to Half Bridge II. Click Finish to reconfigure the DAQ. Now double click the Scaling and Mapping VI, and change the slope to 2. The False box is now ready. To control the Case Structure, right click the left hand terminal on the green question mark on the Case Structure box. Select Create and Control from the menus that appear. A Boolean control is wired to the box. Label it True: Full Bridge, False: Half Bridge. This controls the state of the instrument, allowing you to select between a full bridge (True) and half bridge (False) configuration. Now, create a waveform graph to display the strain gauge data. On the Front Panel of your instrument, place Graph Indicator to create the display. A waveform graph should appear on your Front Panel. You can modify the axis labels and scales to suit your measurements. The X-Axis scale (time) should be set to be 1 second, which is the length of the total data acquisition segment. Write your data to a file using the Express Write LVM VI located on the Output palette. Place it on the block diagram near the graph icon. Double click into it. 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 Per Segment. Under X Value Columns, select: One Column Only. And under Delimiter, select: Tab. Click OK and then wire this Sub VI to the output of the DAQ Sub VI through the Case Structure box wall. Finally, create a routine to determine the mean and standard deviation of each sample of 0 data points. Do this by right clicking the Block Diagram and selecting the

6 Analysis palette. Select the Statistics Express VI, and drag this onto the block diagram outside the Case Structure box. The Configure Statistics window will appear. Check the Arithmetic Mean and Standard Deviation check boxes, then click OK. Wire the Express VI into the output of the DAQ. Next, create two Numeric Indicators to display the average and standard deviation for the measurement. To do this, right click the Front Panel. Select Numerical Indicators from the controls palette. Then select a simple numeric indicator, drag it onto the Front Panel, and repeat this step. You may need to grow the numeric display to display the entire output strain. Label the indicators appropriately and wire them into the output of the DAQ through the box wall. 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 at a later time. Now, run the VI you have created, and verify that it works. BALANCING AND TESTING In either configuration, the bridge circuit must be balanced to account for the resistance of the lead wires, and the signal produced by the weight of the beam and of the weight hanger. To do this, double click the DAQ Assistant VI. At the top of the dialog box, there is a green triangle labeled Test. Select this, and another window appears. It contains a graph that is being continuously updated of the output of your VI. Observe the data for evidence of random behavior about a mean value. Then under Display select Waveform Values. Now the numeric values are displayed. With no added weight, the Strain window should read zero. If it does not, use the screwdriver supplied to you to adjust the correct input module on the SC-234. The top module is the SG04 Full Bridge module, and the module next to the top is the SG03 Half Bridge. Adjust the potentiometer labeled X. MAKE SURE YOU ARE ADJUSTING THE PROPER MODULE AND POT! As you adjust, note the changes in the value on the test window. You should adjust the pot so that the Strain output is less than 1 x -6. This adjustment must be performed each time you change bridge wiring and configuration.

7 GENERAL DATA REDUCTION The VI you have just created records 0 samples for each bridge measurement, based on the measurement configuration below. You must record the average and standard deviation displayed on the Front Panel after reach measurement. You must also save data to files, and store these on floppy for possible later use. STRAIN MEASUREMENT PROCEDURES 1. Measure the dimensions of the beam: the cross sectional dimensions of the beam, and the distance from the center of the orange and yellow strain gauges to the applied force. Assume that the black and red gauges are directly under the yellow and orange gauges, respectively. Make a sketch of the color and location of the strain gauges on the beam. 2. Configure your acquisition system for Half Bridge data collection. 3. Wire the orange gauge (leads) to position on the wiring board, and the grey gauge to 4. Balance the system. Place the lb. weight on the beam and measure and record the strain (Avg and STD) and the raw data. 6. Repeat with lbs. total load 7. Repeat 3 and 6 with the Yellow gauge attached to 8. Repeat 3 and 6 with the Black gauge attached to 9. Repeat 3 and 6 with the Red gauge attached to. Repeat 3 and 6 with the Yellow gauge attached to and the Orange gauge attached to 11. Convert to Full Bridge configuration 12. Connect the Orange gauge to, the Grey to, the Yellow to R3, and White to R4 13. Balance the system 14. Place the lb. weight on the beam and measure and record the strain (Avg and STD) and the raw data. 1. Repeat with lbs. total load 16. Repeat steps and 11 with the Orange gauge attached to, the Yellow to, the Red to R3, and the Black to R4

8 Results: 1. Construct a table that summarizes the strain measurements made using the different bridge configurations described in the Procedures section above (Use the attached data sheet). Use this table to answer the remaining questions. 2. Compare the strain values obtained in Procedure () with the algebraic differences of the individual readings for steps (-7). How should the results compare? What are the primary differences between these two configurations, and how will this affect the data? 3. Compare the strain values measured in the steps (11-1) with the algebraic sum of the strains measured with the individual gauges in steps (-7). How should the results compare? 4. Compare the values of the strains measured in step (16) with those measured in steps (-9). Use the following relationship: ε T = ε1 ε 2 ε 3 + ε 4 where ε 1, ε 2, ε 3, ε 4 are the strain data from the Orange, Red, Black, and Yellow strain gauges, respectively. Discuss the results. Is temperature compensated for in step 16?. The upper fiber strain at the center of the strain gauge can be calculated from the beam theory. ε = 6P( l a) Ebh2 where: ε = upper fiber strain P = applied force h = thickness of the beam b = width of the beam l = length of the beam from the support to the applied force a = length of the beam fro the support to the center of the strain gauge E = Young s modulus Assume that: E =,000,000 psi Calculate the expected strain for the two loading conditions at each of the four locations on the beam. 6. Estimate the precision interval of this measurement using the recorded standard deviation data for each of the measurement locations and load conditions. Do the strain values calculated fall within the precision interval? Are the measured values of strain consistent with the above beam theory? Discuss your results with reference to the potential experimental errors in the procedures you used. 7. Explain how the temperature of the laboratory affects the results of this experiment.

9 Beam Dimensions 3 bh I=, h= 2c 12 Width, b Height, h Distance to Load: Distance to Strain Gauges Orange Yellow Black Red Beam Dimensions

10 STRAIN DATA TABLE Procedure Bridge Circuit Bridge Load (lbs) Color Gage Wire / Conn Strain (µε) STD Deviation (µε) -9 Half Orange Grey Yellow Grey Black Grey Red Grey Half Orange Yellow 11-1 R3 R4 Full Orange Gray, Yellow White R4 R3 16 R3 R4 Full Orange Red Black Yellow R3 R4

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

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

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

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

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

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

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

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 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

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

Strain Gauge Measurement by Applying Displacement using Strain Indicator

Strain Gauge Measurement by Applying Displacement using Strain Indicator University Diploma Program Electronic Equipment Maintenance Lab Instructor: Muhammad Ajmal Khan EET-027, Experiment # 8 Strain Gauge Measurement by Applying Displacement using Strain Indicator Objectives:

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

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

Using LabVIEW in Instrumentation and Control Course

Using LabVIEW in Instrumentation and Control Course Session 1559 Using LabVIEW in Instrumentation and Control Course Chong Chen Department of Engineering Technology and Industrial Studies Middle Tennessee State University Murfreesboro, TN 37132 Abstract

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

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

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

SCXI OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE

SCXI OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE SCXI -1321 OFFSET-NULL AND SHUNT-CALIBRATION HIGH-VOLTAGE TERMINAL BLOCK INSTALLATION GUIDE Conventions This guide describes how to install and use the SCXI-1321 offset-null and shunt-calibration terminal

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

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

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 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

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

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

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

PHYC 500: Introduction to LabView. Exercise 16 (v 1.2) Controlling hardware with DAQ device. M.P. Hasselbeck, University of New Mexico

PHYC 500: Introduction to LabView. Exercise 16 (v 1.2) Controlling hardware with DAQ device. M.P. Hasselbeck, University of New Mexico PHYC 500: Introduction to LabView M.P. Hasselbeck, University of New Mexico Exercise 16 (v 1.2) Controlling hardware with DAQ device This exercise has two parts. First, simulate a traffic light circuit

More information

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB Strain gauge Measuring Amplifier GSV-1A8 Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB GSV-1A8USB SubD1 (front side) GSV-1A8USB M12 (front side) GSV-1A16USB (rear side) GSV-1A8USB K6D (front side)

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

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

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

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

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

Data Acquisition Laboratory

Data Acquisition Laboratory Session 2559 Data Acquisition Laboratory Asad Yousuf Savannah State University Abstract The essential element to automate your system for data collection and analysis is termed as the data acquisition.

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

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

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

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

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

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

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

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

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

System StrainSmart Data Acquisition System. Micro-Measurements FEATURES DESCRIPTION MODEL 5100B SCANNER SPECIFICATIONS

System StrainSmart Data Acquisition System. Micro-Measurements FEATURES DESCRIPTION MODEL 5100B SCANNER SPECIFICATIONS FEATURES From 5 to 1200 input channels can be configured as needed at any time Inputs accepted from strain gages and strain-gagebased transducers (Model 5110A), thermocouples (Model 5120A), sensors with

More information

Dept. of Electrical, Computer and Biomedical Engineering. Instrumentation for the data acquisition laboratory

Dept. of Electrical, Computer and Biomedical Engineering. Instrumentation for the data acquisition laboratory Dept. of Electrical, Computer and Biomedical Engineering Instrumentation for the data acquisition laboratory Purpose of the lab activity Design and make simple systems for data acquisition from detectors,

More information

Agilent Strain Measurement Application Using Agilent U2300A Series Data Acquisition Devices With Agilent VEE Pro. Application Note

Agilent Strain Measurement Application Using Agilent U2300A Series Data Acquisition Devices With Agilent VEE Pro. Application Note Agilent Strain Measurement Application Using Agilent U2300A Series Data Acquisition Devices With Agilent VEE Pro Application Note Introduction This application note is designed for users who wish to test

More information

Agilent 3630A Triple DC Power Supply. Agilent 34401A Digital Multimeter (DMM)

Agilent 3630A Triple DC Power Supply. Agilent 34401A Digital Multimeter (DMM) Agilent E3630A Triple DC Power Supply and Agilent 34401A Digital Multimeter (DMM) Agilent 3630A Triple DC Power Supply The DC power supply used in this lab is the Agilent E3630A Triple DC power supply.

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

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

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

JR3 EXTERNAL SENSOR ELECTRONICS WITH ANALOG OUTPUT. JR3, Inc. 22 Harter Ave. Woodland, CA 95776

JR3 EXTERNAL SENSOR ELECTRONICS WITH ANALOG OUTPUT. JR3, Inc. 22 Harter Ave. Woodland, CA 95776 JR3 EXTERNAL SENSOR ELECTRONICS WITH ANALOG OUTPUT JR3, Inc. 22 Harter Ave. Woodland, CA 95776 5962C 15 December, 2003 TABLE OF CONTENTS CHAPTER 1 OVERVIEW General...1-1 Sensor...1-1 Electronic System...1-1

More information

GSV-1A4 M12/2 M12/2. Highlights

GSV-1A4 M12/2 M12/2. Highlights GSV-1A4 M12/2 M12/2 Highlights Input sensitivity: 2mV/V; 4mV/V, 2 mv/v, 1mV/V, 0.5mV/V configurable via jumpers Output signals ±10V AND 12mA+-8mA on 15 pin Sub-D Integrated half and quarter bridge completion

More information

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB Strain gauge Measuring Amplifier GSV-A8 Instruction manual GSV-A8, GSV-A8USB, GSV-A6USB GSV-A8USB SubD5 (front side) GSV-A8USB M2 (front side) GSV-A6USB (rear side) GSV-A8USB K6D (front side) Version:

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

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

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

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 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

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

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

EDX-10 Series. Compact Recording System

EDX-10 Series. Compact Recording System 3-51 EDX-10 Series Compact Recording System Compact & lightweight, with a simple configuration, all channels synchronous 20 khz high-speed sampling (For 4 channels) Control Unit EDX-10B A unit controls

More information

Additional products and features

Additional products and features SECTION 7.3: adding national instruments hardware Step: 1 In order to record data from a National Instruments device, you must fi rst install NI-DAQmx software from the National Instruments website. http://ftp.ni.com/support/softlib/multifunc-

More information

6. Bicycle Experiment

6. Bicycle Experiment ME 105 Mechanical Engineering Lab Page 1 2ME 105 Mechanical Engineering Laboratory Spring Quarter 2003 6. Bicycle Experiment David Bothman, 6 May 2002 Introduction The bicycle experiment has three goals:

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

Connecting and Calibrating a Load Cell with V-Link

Connecting and Calibrating a Load Cell with V-Link TN-W0026 MicroStrain Technical Note Connecting and Calibrating a Load Cell with V-Link V-Link and Futek LSB300 Load Cell (Applies to V-Link, SG-Link, SG-Link OEM, HS-Link ) Overview MicroStrain s V-Link

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

Introduction to Electronics Workbench

Introduction to Electronics Workbench Introduction to Electronics Workbench Electronics Workbench (EWB) is a design tool that provides you with all the components and instruments to create board-level designs on your PC. The user interface

More information

Lab 4: Introduction to ELVIS II+ Introduction to ELVIS II+

Lab 4: Introduction to ELVIS II+ Introduction to ELVIS II+ Page 1 of 12 Laboratory Goals Introduction to ELVIS Lab 4: Introduction to ELVIS Familiarize students with the National Instruments hardware ELVIS Identify the capabilities of ELVIS Make use of the built

More information

DBK48. Multipurpose Isolated Signal-Conditioning Module. Description. Supports up to Sixteen 8B Modules

DBK48. Multipurpose Isolated Signal-Conditioning Module. Description. Supports up to Sixteen 8B Modules DBK48 Multipurpose Isolated Signal-Conditioning Module Description 1 Safety Concerns 2 Hardware Setup 2 Installing 8B Modules 4 Installing Plug-in Resistors to Create 4 to 20 ma Loops 5 Making Terminal

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

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

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

ZENSOL CIRCUIT BREAKER PERFORMANCE ANALYZER

ZENSOL CIRCUIT BREAKER PERFORMANCE ANALYZER COMPUTERIZED TEST INSTRUMENTS ZENSOL CIRCUIT BREAKER PERFORMANCE ANALYZER CBA-32P QUICK SETUP GUIDE August 5th, 2013 1 CONTENTS CONTENTS... 2 STEP 1 REQUIRED MATERIALS... 3 STEP 1A ACCESSORIES... 4 STEP

More information

EDX-10 Series. Compact Recording System

EDX-10 Series. Compact Recording System 3-49 EDX-10 Series Compact Recording System Compact, lightweight, with a simple configuration, all channels synchronous 20 khz high-speed sampling (For 4 channels) Control Unit EDX-10B A unit controls

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

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

JR3 EXTERNAL SENSOR ELECTRONICS WITH SERIAL DATA OUTPUT. JR3, Inc. 22 Harter Ave. Woodland, CA 95776

JR3 EXTERNAL SENSOR ELECTRONICS WITH SERIAL DATA OUTPUT. JR3, Inc. 22 Harter Ave. Woodland, CA 95776 JR3 EXTERNAL SENSOR ELECTRONICS WITH SERIAL DATA OUTPUT JR3, Inc. 22 Harter Ave. Woodland, CA 95776 5963B 13 October, 2003 TABLE OF CONTENTS CHAPTER 1 OVERVIEW General...1-1 Sensor...1-1 Electronic System...1-1

More information

Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics.

Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics. Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Wi- Fi DAQ Hardware Setup Cuong Nguyen, Hans- Petter Halvorsen, 2013.08.07

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

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

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

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

PCI-express data acquisition card DAQ0504M User Guide

PCI-express data acquisition card DAQ0504M User Guide PCI-express data acquisition card DAQ0504M User Guide Contents Safety information... 3 About this guide... 4 DAQ0504M specifications... 5 Chapter 1. Product introduction 1-1. Package contents...... 6.

More information

EE 100 DMM and DC Power Supply LabVIEW Experiment Guide

EE 100 DMM and DC Power Supply LabVIEW Experiment Guide 1. Objectives EE 100 DMM and DC Power Supply LabVIEW Experiment Guide The purpose of this experiment is to show you how to interface your DMM and DC Power Supply to LabVIEW. I. World of LabVIEW LabVIEW

More information

Low Voltage Probe, LVP-1 (#30019)

Low Voltage Probe, LVP-1 (#30019) Low Voltage Probe, LVP-1 (#30019) The Networked Robotics Low Voltage Probe enables the remote data collection of positive DC voltage via standard computer networks. It is useful for real-time data collection

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

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

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

EH-Link. Powering an EH-Link with piezoelectric source. TN-W00XX Technical Note. Overview

EH-Link. Powering an EH-Link with piezoelectric source. TN-W00XX Technical Note. Overview TN-W00XX Technical Note EH-Link Powering an EH-Link with piezoelectric source Overview The EH-Link wireless node is a self powered sensor, harvesting energy from ambient energy sources. EH-Link is compatible

More information

University of Illinois Department of Electrical and Computer Engineering ECE 451 Automated Microwave Measurements Laboratory

University of Illinois Department of Electrical and Computer Engineering ECE 451 Automated Microwave Measurements Laboratory University of Illinois Department of Electrical and Computer Engineering ECE 451 Automated Microwave Measurements Laboratory Experiment No. 4 Introduction to the Windows XP Workstation using National Instruments

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

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

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

Wireless DAQ using ZigBee

Wireless DAQ using ZigBee Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Wireless DAQ using ZigBee Cuong Nguyen, Hans- Petter Halvorsen 2013.10.29 Hardware

More information

The following conventions appear in this document:

The following conventions appear in this document: CALIBRATION PROCEDURE NI PXI-4220 Conventions This document contains the information and instructions needed to calibrate the NI PXI-4220. You should calibrate the NI PXI-4220 at a regular interval as

More information

6A27 6A40 6A68 6A154 6A175

6A27 6A40 6A68 6A154 6A175 6A154 Interface's 6-axis load cell measures forces simultaneously in three mutually perpendicular axes and three simultaneous torques about those same axes. Six full bridges provide mv/v output on six

More information

Introduction to LabVIEW 6-Hour Hands-On

Introduction to LabVIEW 6-Hour Hands-On Introduction to LabVIEW 6-Hour Hands-On National Instruments Corporation 1 Introduction to LabVIEW Hands-On Course Goals Become comfortable with the LabVIEW environment and data flow execution Ability

More information

TECH 3821 Lab #2 Relay Driver with Computer Control

TECH 3821 Lab #2 Relay Driver with Computer Control TECH 3821 Lab #2 Relay Driver with Computer Control Name: Background: One of the most basic controls in industry is the ability to turn things on and off. As we saw in Lab #1, a relay is often used to

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

Transducers and Transducer Calibration GENERAL MEASUREMENT SYSTEM

Transducers and Transducer Calibration GENERAL MEASUREMENT SYSTEM Transducers and Transducer Calibration Abstracted from: Figliola, R.S. and Beasley, D. S., 1991, Theory and Design for Mechanical Measurements GENERAL MEASUREMENT SYSTEM Assigning a specific value to a

More information

Machine Control and Monitoring with Low-Cost Embedded Digital Signal Conditioners

Machine Control and Monitoring with Low-Cost Embedded Digital Signal Conditioners Sensors & Transducers ISSN 1726-5479 2005 by IFSA http://www.sensorsportal.com Machine Control and Monitoring with Low-Cost Embedded Digital Signal Conditioners Dr. Raymond B. SEPE, Jr. Electro Standards

More information