ENGN/PHYS 207 Fall 2018 Assignment #5 Final Report Due Date: 5pm Wed Oct 31, 2018

Size: px
Start display at page:

Download "ENGN/PHYS 207 Fall 2018 Assignment #5 Final Report Due Date: 5pm Wed Oct 31, 2018"

Transcription

1 ENGN/PHYS 207 Fall 2018 Assignment #5 Final Report Due Date: 5pm Wed Oct 31, 2018 Circuits You ll Build 1. Instrumentation Amplifier Circuit with reference offset voltage and user selected gain. 2. Strain measurement system: Instrumentation amplifier interfaced to Wheatstone Bridge and Arduino Lab Skills You ll Learn 1. Implementing Instrumentation Amplifiers 2. Arduino if-else logic to respond to measurements 1 Vibration Sensor In this portion of the lab, we ll just build and explore with a Wheatstone Bridge strain gauge + instrumention amp + buffer + Arduino interface. There is nothing to write-up, but you do need to provide a proof of concept demonstration to the instructor. This portion of the lab is to get your feet wet and give you exposure to an Instrumentation Amplifier, and more practice with the Arduino (which is just such a wonderful and powerful tool at your finger tips). Now you will use actual strain gauge elements (see Fig. 3(a)) configured as a Wheatstone Bridge to measure deflections in a beam (e.g., see Figure 3(b) and 3(c)). Where would you do something similar in real life? There are many examples! For instance, you might test the structural integrity of a bridge with a strain gauge in a WB bridge configuration; you might examine the response of an airplane wing to an impact; you might test how earthquake isolated a building is; and so on. One very exciting new biomedical application is cuffless blood pressure monitoring; the strain in the arteries varies with time as blood pumps through in pulsatile fashion. (I did promise that circuits is actually useful...hopefully this helps convince you). The output of strain gauge bridge is quite small (approximately 2 20 mv), just barely large enough to see on your oscilloscope. We will amplify this signal to make it easier to see and measure. To do so, we ll make use of a very, very useful piece of electronics called an instrumentation amplifier. We ll use the model known as the INA Amplifiers are kind of like cars. By analogy, general category is automobile (amplifier); a specific model is a Honda Civic (INA 126). 1

2 Figure 1: Wheatstone bridge output amplified by INA126 instrumentation amplifier. The reference pin of INA 126 is driven by an op-amp voltage follower with voltage divider input. The output of the instrumentation amp is to be connected to an Arduino analog input pin. Notice that all power connections for the WB, TL082, and INA126 are +5V and GND, provided by the Arduino power supply pins. Later in the term, we ll discuss how its inner workings. For now, you just need to know that it amplifies the difference of two inputs by a gain factor G, and adds the reference voltage: V out = G(V + V ) + V REF. (1) where V + V is the WB output signal (i.e. the straing gauge s electrical signal), and the voltage gain G = k/R G should be set to about 50 in this case with appropriate value of resistor R G. The voltage V REF is the output bias that allows us to center the signal around 2.5V instead of ground, allowing us to see both positive and negative swings in the WB output. For instance, if your bridge has an output V W B = ±10 mv (possible to read with a scope, but just barely), the amplifier will multiply this by a factor of 50 and output V amp = ±500 mv = ± 0.5 V (much easier to cleanly read on a scope). Additionally, the output is recentered about V REF = 2.5 V. This is important to see both positive and negative swings in the bridge output. Else, we d lose the bottom half, since the output can t go below 0V. Detailed instructions how to wire your circuit are as follows. Obtain a strain gauge device from the instructor. It has 4 wires: 2 to power the WB and 2 2

3 Figure 2: Pinout of INA126. Note that pin 1 is in the upper left corner, with the chip properly oriented. for the output signal. Bridge excitation: Connect the Red wire to Arduino +5V power supply pin. Connect the Black wire to GND. Route WB output signal to instrumentation amplifier: Connect INA126 pin 2 to the White wire/conductor of the bridge circuit. Similarly, connect INA126 pin 3 to the Green conductor of the bridge. Route power connections to your amplifier: Connect INA126 pin 4 to GND and pin 7 to +5 V. Setting the gain of the amplifier: Connect an appropriate value gain-setting resistor R G between pins 1 and 8 of the INA126. Set the gain of the INA126 to be G 50. Provide a reference for the amplifier that biases the output to about 2.5 V. Build a voltage divider out of R 1 and R 2, where the voltage across R 2 is about 2.5 V (half way between GND and +5 V). Connect the voltage divider to the TL082 connected as a voltage follower aka a buffer. The buffer serves to isolate the voltage divider from the INA 126. Connect the output of the buffer to INA126 pin 5. Measure the amplified bridge output with an Arduino analog read. (Alternatively, you can use an oscilloscope to debug as necessary.) Connect the output of the INA126 (pin 6) to Arduino analog input A0. Open the Arduino IDE, then upload a sketch for making analog measurements. See Lab 2 for a refresher as needed for the analogread() command. The online help at arduino.cc is great too. Lastly, include an if-else statement that will make the built-in LED illuminate when the voltage exceeds a low or high voltage limit. This corresponds to too bending beyond a threshold in either direction. Note that you must first configure the LED pin as an output, see the Blink.ino example sketch setup() section for how to do this in one line of code. For if-else statements, check out a good bit tutorial from the proverbial horse s mouth: https: // Note you will replace the 120 threshold value used in this example with some sensible voltage based on your WB + instrumentation amp output. Also, note that you need a way for the LED to turn back off, so you might write a block of Arduino code like this in the loop() section: int LEDpin = 13; //built in LED is connected to pin 13 float Vhigh = 4; //define high side threshold 3

4 float Vlow = 1; // define low side threshold if (Vout > Vhigh Vout < Vlow){ // if the output is too high or to low digitalwrite(ledpin, HIGH); // set digital line to high = +5 V, lights up LED } else { digitalwrite( LEDpin, LOW); // otherwise, turn it off, no warning } Use a C-clamp to fasten your the beam, with attached strain gauge sensors to the bridge. Orient your beam so that the strain gauges are near the table, the eyelet for loading your bridge at the distal end. Set the beam to oscillate. Can you clearly see the signal changing on the Arduino serial plotter output that corresponds to the vibrations of the beam? If so, success you ve just a vibration sensor! Show the instructor and you are finished :) 4

5 (a) (b) (c) Figure 3: (a) Strain gauge element. The resistance changes when thin metal film comb shape deforms. In a non-stressed state, the gauge typically has a resistance of a few hundred ohms. (b) Building undergoing vibration. Strain gauges can be used to measure and record deflections vs time. Image credit: (c) Aluminum beam with strain gauge elements wired in Wheatstone Bridge configuration found in the lab. The 2 gold/tan elements labeled 1 and 2 at right are 2 out of 4 total strain gauge elements configured as WB. 5

ENGR 1121 Lab 3 Strain Gauge

ENGR 1121 Lab 3 Strain Gauge ENGR 1121 Lab 3 Strain Gauge February 10, 2014 In this lab, you will make measurements of mechanical strain in a small cantilevered aluminum beam using a strain gauge as you bend it. The Strain Gauge The

More information

Lab assignment: Strain gauge

Lab assignment: Strain gauge Lab assignment: Strain gauge In this lab, you will make measurements of mechanical strain in small aluminum beams as you bend them. We will also work with our first integrated circuit component on the

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

You'll create a lamp that turns a light on and off when you touch a piece of conductive material

You'll create a lamp that turns a light on and off when you touch a piece of conductive material TOUCHY-FEELY LAMP You'll create a lamp that turns a light on and off when you touch a piece of conductive material Discover : installing third party libraries, creating a touch sensor Time : 5 minutes

More information

Unit 3: Introduction to Op- amps and Diodes

Unit 3: Introduction to Op- amps and Diodes Unit 3: Introduction to Op- amps and Diodes Differential gain Operational amplifiers are powerful building blocks conceptually simple, easy to use, versatile, and inexpensive. A great deal of analog electronic

More information

Ballistocardiograph 1

Ballistocardiograph 1 3 Lab 9: Ballistocardiograph Goal: Build and test a ballistocardiograph from strain gauges, op-amps and second-order filters. Deliverables: A short lab report that includes 1. The Bode plots of the filter

More information

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Analog I/O ECE 153B Sensor & Peripheral Interface Design Introduction Anytime we need to monitor or control analog signals with a digital system, we require analogto-digital (ADC) and digital-to-analog

More information

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

TTL LOGIC and RING OSCILLATOR TTL

TTL LOGIC and RING OSCILLATOR TTL ECE 2274 TTL LOGIC and RING OSCILLATOR TTL We will examine two digital logic inverters. The first will have a passive resistor pull-up output stage. The second will have an active transistor and current

More information

Digital Applications of the Operational Amplifier

Digital Applications of the Operational Amplifier Lab Procedure 1. Objective This project will show the versatile operation of an operational amplifier in a voltage comparator (Schmitt Trigger) circuit and a sample and hold circuit. 2. Components Qty

More information

Sensor Interfacing and Operational Amplifiers Lab 3

Sensor Interfacing and Operational Amplifiers Lab 3 Name Lab Day Lab Time Sensor Interfacing and Operational Amplifiers Lab 3 Introduction: In this lab you will design and build a circuit that will convert the temperature indicated by a thermistor s resistance

More information

Hello, and welcome to the TI Precision Labs video series discussing comparator applications. The comparator s job is to compare two analog input

Hello, and welcome to the TI Precision Labs video series discussing comparator applications. The comparator s job is to compare two analog input Hello, and welcome to the TI Precision Labs video series discussing comparator applications. The comparator s job is to compare two analog input signals and produce a digital or logic level output based

More information

TRANSDUCER INTERFACE APPLICATIONS

TRANSDUCER INTERFACE APPLICATIONS TRANSDUCER INTERFACE APPLICATIONS Instrumentation amplifiers have long been used as preamplifiers in transducer applications. High quality transducers typically provide a highly linear output, but at a

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 019.101 Introductory Analog Electronics Laboratory Laboratory No. READING ASSIGNMENT

More information

Signal Conditioning Systems

Signal Conditioning Systems Note-13 1 Signal Conditioning Systems 2 Generalized Measurement System: The output signal from a sensor has generally to be processed or conditioned to make it suitable for the next stage Signal conditioning

More information

.:Twisting:..:Potentiometers:.

.:Twisting:..:Potentiometers:. CIRC-08.:Twisting:..:Potentiometers:. WHAT WE RE DOING: Along with the digital pins, the also has 6 pins which can be used for analog input. These inputs take a voltage (from 0 to 5 volts) and convert

More information

Physics 303 Fall Module 4: The Operational Amplifier

Physics 303 Fall Module 4: The Operational Amplifier Module 4: The Operational Amplifier Operational Amplifiers: General Introduction In the laboratory, analog signals (that is to say continuously variable, not discrete signals) often require amplification.

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering EE320L Electronics I Laboratory Laboratory Exercise #2 Basic Op-Amp Circuits By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las Vegas Objective: The purpose of

More information

Community College of Allegheny County Unit 7 Page #1. Analog to Digital

Community College of Allegheny County Unit 7 Page #1. Analog to Digital Community College of Allegheny County Unit 7 Page #1 Analog to Digital "Engineers can't focus just on technology; they need to develop their professional skills-things like presenting yourself, speaking

More information

Module 9C: The Voltage Comparator (Application: PWM Control via a Reference Voltage)

Module 9C: The Voltage Comparator (Application: PWM Control via a Reference Voltage) Explore More! Points awarded: Module 9C: The Voltage Comparator (Application: PWM Control via a Reference Voltage) Name: Net ID: Laboratory Outline A voltage comparator considers two voltage waveforms,

More information

MAS.836 HOW TO BIAS AN OP-AMP

MAS.836 HOW TO BIAS AN OP-AMP MAS.836 HOW TO BIAS AN OP-AMP Op-Amp Circuits: Bias, in an electronic circuit, describes the steady state operating characteristics with no signal being applied. In an op-amp circuit, the operating characteristic

More information

Lab 6: Instrumentation Amplifier

Lab 6: Instrumentation Amplifier Lab 6: Instrumentation Amplifier INTRODUCTION: A fundamental building block for electrical measurements of biological signals is an instrumentation amplifier. In this lab, you will explore the operation

More information

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2)

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2) EE 368 Electronics Lab Experiment 10 Operational Amplifier Applications (2) 1 Experiment 10 Operational Amplifier Applications (2) Objectives To gain experience with Operational Amplifier (Op-Amp). To

More information

Module: Arduino as Signal Generator

Module: Arduino as Signal Generator Name/NetID: Teammate/NetID: Module: Laboratory Outline In our continuing quest to access the development and debugging capabilities of the equipment on your bench at home Arduino/RedBoard as signal generator.

More information

Arduino Sensor Beginners Guide

Arduino Sensor Beginners Guide Arduino Sensor Beginners Guide So you want to learn arduino. Good for you. Arduino is an easy to use, cheap, versatile and powerful tool that can be used to make some very effective sensors. This guide

More information

Operational Amplifiers

Operational Amplifiers Objective Operational Amplifiers Understand the basics and general concepts of operational amplifier (op amp) function. Build and observe output of a comparator and an amplifier (inverting amplifier).

More information

ABE 591Y Instrumentation and Data Acquisition Autumn 2005

ABE 591Y Instrumentation and Data Acquisition Autumn 2005 ABE 591Y Instrumentation and Data Acquisition Autumn 2005 Warning: Contents may change. Check at least weekly! Instructor: Keith Cherkauer, ABE Rm 312, Phone: 49-67982 Office hours: Mon and Wed 1:00 pm

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 019 Spring Term 00.101 Introductory Analog Electronics Laboratory Laboratory No.

More information

ENGR 40M Project 4: Electrocardiogram. Prelab due 24 hours before your section, August Lab due 11:59pm, Saturday, August 19

ENGR 40M Project 4: Electrocardiogram. Prelab due 24 hours before your section, August Lab due 11:59pm, Saturday, August 19 ENGR 40M Project 4: Electrocardiogram Prelab due 24 hours before your section, August 14 15 Lab due 11:59pm, Saturday, August 19 1 Introduction In this project, we will build an electrocardiogram (ECG

More information

LT Spice Getting Started Very Quickly. First Get the Latest Software!

LT Spice Getting Started Very Quickly. First Get the Latest Software! LT Spice Getting Started Very Quickly First Get the Latest Software! 1. After installing LT Spice, run it and check to make sure you have the latest version with respect to the latest version available

More information

ECE U401/U211-Introduction to Electrical Engineering Lab. Lab 4

ECE U401/U211-Introduction to Electrical Engineering Lab. Lab 4 ECE U401/U211-Introduction to Electrical Engineering Lab Lab 4 Preliminary IR Transmitter/Receiver Development Introduction: In this lab you will design and prototype a simple infrared transmitter and

More information

MEMS Signal Conditioning Circuits Dr. Lynn Fuller Electrical and Microelectronic Engineering

MEMS Signal Conditioning Circuits Dr. Lynn Fuller Electrical and Microelectronic Engineering ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING MEMS Signal Conditioning Circuits Dr. Lynn Fuller Electrical and 82 Lomb Memorial Drive Rochester, NY 146235604 Email: Lynn.Fuller@rit.edu

More information

Rodni What will yours be?

Rodni What will yours be? Rodni What will yours be? version 4 Welcome to Rodni, a modular animatronic animal of your own creation for learning how easy it is to enter the world of software programming and micro controllers. During

More information

Single Supply Op Amp Circuits Dr. Lynn Fuller Webpage:

Single Supply Op Amp Circuits Dr. Lynn Fuller Webpage: ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING Single Supply Op Amp Circuits Dr. Lynn Fuller Webpage: http://people.rit.edu/lffeee 82 Lomb Memorial Drive Rochester, NY 146235604 Tel (585)

More information

Experiment 1 Topic: Sensors/Measurement Systems/Calibration Week A Procedure

Experiment 1 Topic: Sensors/Measurement Systems/Calibration Week A Procedure Experiment 1 Topic: Sensors/Measurement Systems/Calibration Week A Procedure Laboratory Assistant: Michael Wicks and Erik Ross Email: mwicks@nd.edu and eross2@nd.edu Office/hours: 2/7 2/10, 5 pm - 6 pm,

More information

High-side Current Sensing Techniques for the isppac-powr1208

High-side Current Sensing Techniques for the isppac-powr1208 February 2003 Introduction Application Note AN6049 The isppac -POWR1208 provides a single-chip integrated solution to power supply monitoring and sequencing problems. Figure 1 shows a simplified functional

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

IL8190 TECHNICAL DATA PRECISION AIR - CORE TACH / SPEEDO DRIVER WITH RETURN TO ZERO DESCRIPTION FEATURES

IL8190 TECHNICAL DATA PRECISION AIR - CORE TACH / SPEEDO DRIVER WITH RETURN TO ZERO DESCRIPTION FEATURES TECHNICAL DATA PRECISION AIR - CORE TACH / SPEEDO DRIVER WITH RETURN TO ZERO IL8190 DESCRIPTION The IL8190 is specifically designed for use with air core meter movements. The IC provides all the functions

More information

S2014, BME 101L: Applied Circuits Lab 8: Strain-gauge Pressure Sensor

S2014, BME 101L: Applied Circuits Lab 8: Strain-gauge Pressure Sensor S2014, BME 101L: Applied Circuits Lab 8: Strain-gauge Pressure Sensor Kevin Karplus May 11, 2014 1 Design Goal In this lab, you will design, solder, and test an instrumentation amplifier to interface a

More information

ECE 203 LAB 6: INVERTED PENDULUM

ECE 203 LAB 6: INVERTED PENDULUM Version 1.1 1 of 15 BEFORE YOU BEGIN EXPECTED KNOWLEDGE Basic Circuit Analysis EQUIPMENT AFG Oscilloscope Programmable Power Supply MATERIALS Three 741 Opamps TIP41 NPN power transistor TIP42 PNP power

More information

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved.

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved. Lab 7: The Op Amp Laboratory Objectives: 1) To introduce the operational amplifier or Op Amp 2) To learn the non-inverting mode 3) To learn the inverting mode 4) To learn the differential mode Before You

More information

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec INTEGRATED CIRCUITS 1988 Dec DAC products are designed to convert a digital code to an analog signal. Since a common source of digital signals is the data bus of a microprocessor, DAC circuits that are

More information

Wheatstone Bridge. LAB 3: Instrumentation Amplifier ELECTRICAL ENGINEERING 43/100 INTRODUCTION TO DIGITAL ELECTRONICS

Wheatstone Bridge. LAB 3: Instrumentation Amplifier ELECTRICAL ENGINEERING 43/100 INTRODUCTION TO DIGITAL ELECTRONICS Lab 3: Instrumentation Amplifier YOUR NAME: YOUR PARTNER S NAME: YOUR SID: YOUR PARTNER S SID: Pre- Lab Score: /35 In- Lab Score: /65 Total: /100 Wheatstone Bridge LAB 3: Instrumentation Amplifier ELECTRICAL

More information

High Accuracy 8-Pin Instrumentation Amplifier AMP02

High Accuracy 8-Pin Instrumentation Amplifier AMP02 a FEATURES Low Offset Voltage: 100 V max Low Drift: 2 V/ C max Wide Gain Range 1 to 10,000 High Common-Mode Rejection: 115 db min High Bandwidth (G = 1000): 200 khz typ Gain Equation Accuracy: 0.5% max

More information

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY Objectives Preparation Tools To see the inner workings of a commercial mechatronic system and to construct a simple manual motor speed controller and current

More information

LM1044 Analog Video Switch

LM1044 Analog Video Switch LM1044 Analog Video Switch General Description Primarily intended for but not restricted to the switching of video signals the LM1044 is a monolithic DC controlled analog switch with buffered outputs allowing

More information

Lecture 2 Analog circuits. Seeing the light..

Lecture 2 Analog circuits. Seeing the light.. Lecture 2 Analog circuits Seeing the light.. I t IR light V1 9V +V IR detection Noise sources: Electrical (60Hz, 120Hz, 180Hz.) Other electrical IR from lights IR from cameras (autofocus) Visible light

More information

Lab 15: Lock in amplifier (Version 1.4)

Lab 15: Lock in amplifier (Version 1.4) Lab 15: Lock in amplifier (Version 1.4) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive

More information

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers BME/ISE 3512 Bioelectronics Laboratory Five - Operational Amplifiers Learning Objectives: Be familiar with the operation of a basic op-amp circuit. Be familiar with the characteristics of both ideal and

More information

LAB 5 OPERATIONAL AMPLIFIERS

LAB 5 OPERATIONAL AMPLIFIERS LAB 5 OPERATIONAL AMPLIFIERS PRE-LAB CALCULATIONS: Use circuit analysis techniques learned in class to analyze the circuit in Figure 5.2. Solve for Vo assuming that the effective resistance of the LED

More information

Experiment 9 : Pulse Width Modulation

Experiment 9 : Pulse Width Modulation Name/NetID: Experiment 9 : Pulse Width Modulation Laboratory Outline In experiment 5 we learned how to control the speed of a DC motor using a variable resistor. This week, we will learn an alternative

More information

Bend Sensor Technology Electronic Interface Design Guide

Bend Sensor Technology Electronic Interface Design Guide Technology Electronic Interface Design Guide Copyright 2015 Flexpoint Sensor Systems Page 1 of 15 www.flexpoint.com Contents Page Description.... 3 Voltage Divider... 4 Adjustable Buffers.. 5 LED Display

More information

Concepts to be Reviewed

Concepts to be Reviewed Introductory Medical Device Prototyping Analog Circuits Part 3 Operational Amplifiers, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Concepts to be Reviewed Operational

More information

LAB #5: Measurement of Strain

LAB #5: Measurement of Strain LAB #5: Measurement of Strain Equipment: Multimeter & DC Power Supply Balance Unit & Calibration Resistor Strain Indicator (Measurements Group, Model P-3500) Aluminum (Cantilever) Beam with Two Gages Aluminum

More information

A Digital Multimeter Using the ADD3501

A Digital Multimeter Using the ADD3501 A Digital Multimeter Using the ADD3501 INTRODUCTION National Semiconductor s ADD3501 is a monolithic CMOS IC designed for use as a 3 -digit digital voltmeter The IC makes use of a pulse-modulation analog-to-digital

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

Section 4: Operational Amplifiers

Section 4: Operational Amplifiers Section 4: Operational Amplifiers Op Amps Integrated circuits Simpler to understand than transistors Get back to linear systems, but now with gain Come in various forms Comparators Full Op Amps Differential

More information

University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009

University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009 University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009 Lab 1 Power Amplifier Circuits Issued August 25, 2009 Due: September 11, 2009

More information

EE 3305 Lab I Revised July 18, 2003

EE 3305 Lab I Revised July 18, 2003 Operational Amplifiers Operational amplifiers are high-gain amplifiers with a similar general description typified by the most famous example, the LM741. The LM741 is used for many amplifier varieties

More information

CHARACTERIZATION OF OP-AMP

CHARACTERIZATION OF OP-AMP EXPERIMENT 4 CHARACTERIZATION OF OP-AMP OBJECTIVES 1. To sketch and briefly explain an operational amplifier circuit symbol and identify all terminals. 2. To list the amplifier stages in a typical op-amp

More information

Week 8 AM Modulation and the AM Receiver

Week 8 AM Modulation and the AM Receiver Week 8 AM Modulation and the AM Receiver The concept of modulation and radio transmission is introduced. An AM receiver is studied and the constructed on the prototyping board. The operation of the AM

More information

CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B

CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B LINEAR INTEGRATED CIRCUITS PS-5 CONVERTING 1524 SWITCHING POWER SUPPLY DESIGNS TO THE SG1524B Stan Dendinger Manager, Advanced Product Development Silicon General, Inc. INTRODUCTION Many power control

More information

Arduino An Introduction

Arduino An Introduction Arduino An Introduction Hardware and Programming Presented by Madu Suthanan, P. Eng., FEC. Volunteer, Former Chair (2013-14) PEO Scarborough Chapter 2 Arduino for Mechatronics 2017 This note is for those

More information

BME 3512 Bioelectronics Laboratory Five - Operational Amplifiers

BME 3512 Bioelectronics Laboratory Five - Operational Amplifiers BME 351 Bioelectronics Laboratory Five - Operational Amplifiers Learning Objectives: Be familiar with the operation of a basic op-amp circuit. Be familiar with the characteristics of both ideal and real

More information

12/4/ X3 Bridge Amplifier. Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical

12/4/ X3 Bridge Amplifier. Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical 12/4/2010 1X3 Bridge Amplifier Resistive bridge amplifier with integrated excitation and power conditioning. Logos Electromechanical 1X3 Bridge Amplifier Resistive bridge amplifier with integrated excitation

More information

DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS

DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS EXPERIMENT : 3 TITLE : Operational Amplifier (Op-Amp) OUTCOME : Upon completion of this unit, the student should be able to: 1. Gain

More information

WebSeminar: Signal Chain Overview

WebSeminar: Signal Chain Overview WebSeminar: December, 2005 Hello, and welcome to the Microchip Technology Web Seminar overview of signal chains. My name is Kevin Tretter and I am a Product Marketing Engineer within Microchip Technology

More information

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools MAE106 Laboratory Exercises Lab # 1 - Laboratory tools University of California, Irvine Department of Mechanical and Aerospace Engineering Goals To learn how to use the oscilloscope, function generator,

More information

ENSC 220 Lab #2: Op Amps Vers 1.2 Oct. 20, 2005: Due Oct. 24, 2004

ENSC 220 Lab #2: Op Amps Vers 1.2 Oct. 20, 2005: Due Oct. 24, 2004 ENSC 220 Lab #2: Op Amps Vers 1.2 Oct. 20, 2005: Due Oct. 24, 2004 OBJECTIVE: Using the circuits below you can study op amps and characterize their behavior. Comparator Inverting Amplifier PREPARATION:

More information

Precision, Low Power, Micropower Dual Operational Amplifier OP290

Precision, Low Power, Micropower Dual Operational Amplifier OP290 Precision, Low Power, Micropower Dual Operational Amplifier OP9 FEATURES Single-/dual-supply operation:. V to 3 V, ±.8 V to ±8 V True single-supply operation; input and output voltage Input/output ranges

More information

Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman

Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman Lab 5: Arduino Uno Microcontroller Innovation Fellows Program Bootcamp Prof. Steven S. Saliterman Exercise 5-1: Familiarization with Lab Box Contents Objective: To review the items required for working

More information

STRAIN, FORCE, PRESSURE, AND FLOW MEASUREMENTS

STRAIN, FORCE, PRESSURE, AND FLOW MEASUREMENTS SECTION 4 STRAIN,, PRESSURE, AND FLOW MEASUREMENTS Walt Kester STRAIN GAGES The most popular electrical elements used in force measurements include the resistance strain gage, the semiconductor strain

More information

EE 2274 DIODE OR GATE & CLIPPING CIRCUIT

EE 2274 DIODE OR GATE & CLIPPING CIRCUIT EE 2274 DIODE OR GATE & CLIPPING CIRCUIT Prelab Part I: Wired Diode OR Gate LTspice use 1N4002 1. Design a diode OR gate, Figure 1 in which the maximum current thru R1 I R1 = 9mA assume Vin = 5Vdc. Design

More information

Assignments from last week

Assignments from last week Assignments from last week Review LED flasher kits Review protoshields Need more soldering practice (see below)? http://www.allelectronics.com/make-a-store/category/305/kits/1.html http://www.mpja.com/departments.asp?dept=61

More information

OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE TEC-B-01M VOLTAGE CLAMP MODULE FOR EPMS SYSTEMS. VERSION 1.2 npi 2014

OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE TEC-B-01M VOLTAGE CLAMP MODULE FOR EPMS SYSTEMS. VERSION 1.2 npi 2014 OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE TEC-B-01M VOLTAGE CLAMP MODULE FOR EPMS SYSTEMS VERSION 1.2 npi 2014 npi electronic GmbH, Bauhofring 16, D-71732 Tamm, Germany Phone +49 (0)7141-9730230;

More information

EXPERIMENT 2: STRAIN GAGE DYNAMIC TESTING

EXPERIMENT 2: STRAIN GAGE DYNAMIC TESTING EXPERIMENT 2: STRAIN GAGE DYNAMIC TESTING Objective: In this experiment you will use the strain gage installation from the prior lab assignment and test the cantilever beam under dynamic loading situations.

More information

Lecture Week 5. Voltage Divider Method Equivalent Circuits Review Lab Report Template and Rubric Workshop

Lecture Week 5. Voltage Divider Method Equivalent Circuits Review Lab Report Template and Rubric Workshop Lecture Week 5 Voltage Divider Method Equivalent Circuits Review Lab Report Template and Rubric Workshop Voltage Divider Method The voltage divider is a method/tool that can be used to: Design voltage

More information

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices)

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices) ICS DataCom Application Note USING RS- to RS- CONVERTERS (With RS-, RS- and RS- devices) INTRODUCTION Table RS-/RS- Logic Levels This application note provides information about using ICSDataCom's RS-

More information

Prototype Testing Lab Results for INA116 Instrumentation Amplifier

Prototype Testing Lab Results for INA116 Instrumentation Amplifier 1 Prototype Testing Lab Results for INA116 Instrumentation Amplifier This document provides an overview of our lab test results with INA116 Instrumentation Amplifier. Our goal is to obtain accurate ph

More information

Motors and Servos Part 2: DC Motors

Motors and Servos Part 2: DC Motors Motors and Servos Part 2: DC Motors Back to Motors After a brief excursion into serial communication last week, we are returning to DC motors this week. As you recall, we have already worked with servos

More information

Problem set: Op-amps

Problem set: Op-amps Problem set: Op-amps Goal: Experience how the operational amplifier ( Op-amp ) functions and how it can be used to get more accurate voltage measurements. Why? The reason is in the puzzle, page 2. Use

More information

Lecture 14 Interface Electronics (Part 2) ECE 5900/6900 Fundamentals of Sensor Design

Lecture 14 Interface Electronics (Part 2) ECE 5900/6900 Fundamentals of Sensor Design EE 4900: Fundamentals of Sensor Design 1 Lecture 14 Interface Electronics (Part 2) Interface Electronics (Part 2) 2 Linearizing Bridge Circuits (Sensor Tech Hand book) Precision Op amps, Auto Zero Op amps,

More information

Lab: Blood Pressure. Goal: Design and test a bandpass filter that can isolate a blood pressure signal.

Lab: Blood Pressure. Goal: Design and test a bandpass filter that can isolate a blood pressure signal. Page /10 1 Lab: Blood Pressure Goal: Design and test a bandpass filter that can isolate a blood pressure signal. This week you will design and build a system to estimate your mean arterial pressure (blood

More information

Lecture Week 5. Quiz #2 Ohm s Law Homework Power Review Shorthand Notation Active Components Ideal Op-amps

Lecture Week 5. Quiz #2 Ohm s Law Homework Power Review Shorthand Notation Active Components Ideal Op-amps Lecture Week 5 Quiz #2 Ohm s Law Homework Power Review Shorthand Notation Active Components Ideal Op-amps Quiz 2 Ohm s Law (20 pts.) Please clear desks and turn off phones and put them in back packs You

More information

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE LM2901 Quad Voltage Comparator 1 5/18/04 TABLE OF CONTENTS 1. Index of Figures....3 2. Index of Tables. 3 3. Introduction.. 4-5 4. Theory

More information

DC->DC Power Converters

DC->DC Power Converters DC->DC Power Converters Parts List: 1 dual DC power supply 1 Function generator 1 Oscilloscope, 1 hand held multi-meter 1 PNP BJT power transistor (TIP32) 1 power diode (HFA15TB60) 1 100F electrolytic

More information

EKT 314 ELECTRONIC INSTRUMENTATION

EKT 314 ELECTRONIC INSTRUMENTATION EKT 314 ELECTRONIC INSTRUMENTATION Elektronik Instrumentasi Semester 2 2012/2013 Chapter 3 Analog Signal Conditioning Session 2 Mr. Fazrul Faiz Zakaria school of computer and communication engineering.

More information

Figure 1: Basic Relationships for a Comparator. For example: Figure 2: Example of Basic Relationships for a Comparator

Figure 1: Basic Relationships for a Comparator. For example: Figure 2: Example of Basic Relationships for a Comparator Cornerstone Electronics Technology and Robotics I Week 16 Voltage Comparators Administration: o Prayer Robot Building for Beginners, Chapter 15, Voltage Comparators: o Review of Sandwich s Circuit: To

More information

LM1801 Battery Operated Power Comparator

LM1801 Battery Operated Power Comparator LM1801 Battery Operated Power Comparator General Description The LM1801 is an extremely low power comparator with a high current open-collector output stage The typical supply current is only 7 ma yet

More information

Lab 10: Single Supply Amplifier

Lab 10: Single Supply Amplifier Overview This lab assignment implements an inverting voltage amplifier circuit with a single power supply. The amplifier output contains a bias point which is removed by AC coupling the output signal.

More information

ECE 5670/6670 Project. Brushless DC Motor Control with 6-Step Commutation. Objectives

ECE 5670/6670 Project. Brushless DC Motor Control with 6-Step Commutation. Objectives ECE 5670/6670 Project Brushless DC Motor Control with 6-Step Commutation Objectives The objective of the project is to build a circuit for 6-step commutation of a brushless DC motor and to implement control

More information

LJTick-InAmp August 7, 2007 Revision 1.07

LJTick-InAmp August 7, 2007 Revision 1.07 LabJack Corporation 3232 S Vance St STE 100 Lakewood, CO 80227 Phone: (303) 942-0228 Fax: (303) 951-2916 www.labjack.com info@labjack.com LJTick-InAmp August 7, 2007 Revision 1.07 The LJTick-InAmp (LJTIA)

More information

EE 210 Lab Exercise #5: OP-AMPS I

EE 210 Lab Exercise #5: OP-AMPS I EE 210 Lab Exercise #5: OP-AMPS I ITEMS REQUIRED EE210 crate, DMM, EE210 parts kit, T-connector, 50Ω terminator, Breadboard Lab report due at the ASSIGNMENT beginning of the next lab period Data and results

More information

CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I)

CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I) CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I) Student ID: 2018 Fall 1 Introduction This lab session introduces some very basic concepts

More information

1. Controlling the DC Motors

1. Controlling the DC Motors E11: Autonomous Vehicles Lab 5: Motors and Sensors By this point, you should have an assembled robot and Mudduino to power it. Let s get things moving! In this lab, you will write code to test your motors

More information

ME 461 Laboratory #5 Characterization and Control of PMDC Motors

ME 461 Laboratory #5 Characterization and Control of PMDC Motors ME 461 Laboratory #5 Characterization and Control of PMDC Motors Goals: 1. Build an op-amp circuit and use it to scale and shift an analog voltage. 2. Calibrate a tachometer and use it to determine motor

More information

on-board EEPROM, are incorporated for automatic zero point and full-scale alignment.

on-board EEPROM, are incorporated for automatic zero point and full-scale alignment. Measurement of Dynamic Processes Technical Data The board (Fast Analog/ Digital Converter) is the measurement element for the registration of fast and dynamic processes. Up to 14 currents or voltages can

More information

Attribution Thank you to Arduino and SparkFun for open source access to reference materials.

Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Attribution Thank you to Arduino and SparkFun for open source access to reference materials. Contents Parts Reference... 1 Installing Arduino... 7 Unit 1: LEDs, Resistors, & Buttons... 7 1.1 Blink (Hello

More information

Exercise 2: Temperature Measurement

Exercise 2: Temperature Measurement Exercise 2: Temperature Measurement EXERCISE OBJECTIVE When you have completed this exercise, you will be able to explain the use of a thermocouple in temperature measurement applications. DISCUSSION the

More information

Practical 2P12 Semiconductor Devices

Practical 2P12 Semiconductor Devices Practical 2P12 Semiconductor Devices What you should learn from this practical Science This practical illustrates some points from the lecture courses on Semiconductor Materials and Semiconductor Devices

More information