Calibrating Amplifiers and ADCs in SoCs

Size: px
Start display at page:

Download "Calibrating Amplifiers and ADCs in SoCs"

Transcription

1 By M. Ganesh Raaja and Pushek Madaan Introduction Calibrating Amplifiers and ADCs in SoCs In today s world of mixed signal systems, many applications require analog quantities to be measured and processed. Some examples are voltage, current, temperature, pressure, acceleration, ph, flow, ECG etc. The field of use range from lab and medical equipment operating under controlled environment to industrial equipment operating under harsh operating conditions. The analog signals to be measured can range from a few micro-volts in ECG systems to thousands of volts in electricity generation plants. Whatever be the application, environment or quantum of signal being measured, a basic signal acquisition system comprises of an analog front end which amplifies and conditions the signal followed by an Analog to Digital Converter (ADC) that converts the analog signal to a digital value which is then processed by a microprocessor. The analog front end could be a simple amplifier or a complex system comprising of multi stage amplifiers and filters. The block diagram of a basic signal conditioning circuit is shown below. + Vin - Amplifier Gain = A ADC Figure 1: Basic Signal Acquisition Considering the system to be ideal, the ADC output is denoted by the following equation. Equation-1 Where, V IN is Input voltage A is Gain of the Amplifier V FS is Range of the ADC N is Resolution of the ADC Given the ADC counts, the microprocessor calculates the input voltage from below equation. Equation-2 Unfortunately, there is no such thing as ideal in the real world. In real world, there are many errors that get introduced into the system affecting the ADC s output. The most important errors and the ones that we are going to discuss in this article are the offset and gain errors.

2 Offset Error Refer graph below. This is a plot of an 8 bit ADC with a range of +2.5V. X axis denotes the input voltage and Y axis denotes the ADC counts. The blue line is the ideal ADC output. The red line is the actual ADC output. Notice the actual output is shifted from the ideal. This shift is called the offset error. Figure 2: System with Offset Error All operational amplifiers have a finite offset voltage at the input. This offset voltage gets added to the input signal, gets amplified by the amplifier s gain and manifests at the output. Apart from the amplifier stage, the ADC also has its own offset voltage which adds to the system error. Offset error is an additive error and can be easily removed from the system. Gain Error Refer graph below. This is the plot of the same 8 bit ADC with the +2.5V range. Note that the slope of the actual output is now different from the slope of the ideal output. This shift is called the gain error.

3 Figure 3: System with Gain Error Gain error is caused mainly by the tolerance of gain setting resistors in the amplifier and tolerance of the reference voltage in the ADC. Gain error is a scaling error and can also be easily removed from the system. Mathematical Representation of a Practical System An ideal acquisition system can be represented with the help of a simple mathematical equation given by equation 3. Equation-3 Where, y is the output of the system or ADC counts m i is the ideal gain of the system x is the input voltage But as discussed in previous sections, introduction of offset and gain errors results in the below equation. Equation-4 Where, m a is the gain with error of the actual system C is the offset error Below graph shows a system with both offset and gain errors.

4 Figure 4: System with Offset and Gain Errors SoCs System On Chips are mixed signal controllers that have analog and digital peripherals and a microprocessor on a single chip. They integrate all ingredients for an analog front end like amplifiers, filters and ADCs on the same device with flexible routing options. Using these flexible resources, the offset and gain errors can be easily dealt with. Let us now discuss some widely used calibration methods to get rid of the offset and gain errors. Each of the methods has its own merits and demerits. Depending on the application one or more of these methods can be combined to get the maximum accuracy. Two point calibration This method of calibration takes care of both offset and gain errors. In Equation-4, if the actual gain m a and offset C are known, the actual input can be calculated by using equation 5. Equation-5 Parameters m a and C can be determined by using the following two point calibration process. 1. Apply 0V at the input of the analog front end, measure the ADC output and record this as Offset (C). 2. Apply a known reference voltage at the input and measure the ADC output. For best performance, the reference voltage should be more than 90% of the full scale value. 3. Calculate Gain in Counts/Volts (m a ) or Volts/Counts (1/m a ).! "#$%&'' ( )(' Equation-6 )('! "#$% &'' (

5 Equation-7 4. Store the Offset and Gain values in a non-volatile memory and use these values during actual measurement. Once the offset and gain values are stored, the input signal may be measured by using the following process. 1. Measure input ADC counts. 2. Calculate the input voltage using the offset and gain values &'' (! Equation-8 (Using Counts/Volts) &'' (! Equation-9 (Using Volts/Counts) The trigger for performing the offset or scale calibrations can be implemented depending on the application. This could either come from switches or from commands received over a communication interface. The scale can be a function of the actual unit being measured. For example, if you are measuring current from the voltage drop across a shunt, instead of measuring the voltage and then deriving the current, you can directly apply a reference current to the shunt and calculate the scale as Counts/Ampere. This will remove any inaccuracies introduced by the tolerance of the shunt resistor. Disadvantages: There are two disadvantages with this method of offset and gain compensation. 1. The offset of an op-amp has its own temperature coefficient and will change with temperature. This will lead to offset errors at temperatures other than the temperature at which the calibration is performed. 2. The two point calibration introduces an additional step in the manufacturing process. These disadvantages are addressed by the techniques discussed below. Correlated Double Sampling a.k.a CDS Correlated Double Sampling also called CDS is used to dynamically compensate offset error. The following is the procedure to implement CDS. 1. Connect the input of the Amplifier to Ground 2. Measure the ADC output. Any non-zero value measured at the ADC is due to the offset error of the system. 3. Store this value in a variable called Offset 4. Connect input of the amplifier to the signal 5. Measure the ADC output. 6. Subtract the Offset value measured in Step#2. This gives an offset compensated result. 7. Repeat Steps #1 to #6 for every measurement. As the offset is being measured for every measurement, any drift in offset voltage due to temperature is automatically taken care of.

6 Figure 5: CDS Implementation The disadvantage of this system is that the ADC s throughput is reduced by a factor of 2 as two measurements have to be taken for every cycle. If this low throughput is undesirable, the offset voltage can be measured less often, i.e., instead of measuring the offset for every measurement cycle, offset measurement may be performed say once in 16 or 32 measurement cycles. Gain Calibration by External Voltage Reference Using a highly accurate external reference voltage which has very low temperature coefficient, gain error can be compensated. Figure 6: Gain Calibration using External Reference Following is the procedure for implementing gain compensation using an external reference. 1. Connect the known reference voltage, for example AD1580B with a referencee of 1.225V and a temperature drift of 50 ppm/ / C to the input of the amplifier. 2. Measure the ADC counts. 3. From the known reference voltage and the ADC counts, calculate Gain 4. Connect the signal to the input of the amplifier. 5. Measure ADC counts. 6. Calculate input signal from ADC counts and the Gain calculated in #3. Now, combining the CDS for offset compensation and external reference for gain compensation a completely automatic system can be built. Figure 6 shows the implementation of such a system.

7 Figure 7: Offset and Gain calibration using CDS and External Referencee This method provides a fully automatic, accurate and an error free system, but has increased cost because of the external precision voltage reference. a disadvantage of Putting the Concepts to Test Some of the afore mentioned concepts CDS and two point calibration were put to test using a PSoC (Programmable System On Chip) mixed signal controller from Cypress Semiconductors with flexible Analog and Digital peripherals and an onboard microcontroller. The device has universal analog blocks using which various analog peripherals like Programmable Gain Amplifiers, ADCs, DACs, Filters etc can be constructed. The device also has very flexible analog routing resources with input i multiplexers, analog output buffers, flexible block to block connectivity etc. The figure below shows a snapshot of how the analog resources are configured in the device. Input Multiplexer Programmable Gain Amplifier Analog Ground Reference Generator ADC Analog Ground Output Buffer Figure 8: PSoC Implementation A 4:1 input multiplexer is used to switch between input signal and analog ground at the input of a Programmable Gain Amplifier with a gain of 16. The output of the PGA is fed to a 12 bit incremental ADC. A reference generator is used to generate an analog ground of 2.5V which is brought out on a pin using an analog buffer. A +60mV input signal is connected to the input pin with respect to the 2.5V reference. Using this hardware setup, three different application codes were written. 1. Application with no offset or gain compensation 2. Application with offset compensation using CDS 3. Application with two point calibration for Offset and gain compensation

8 In all the three applications the measured input is displayed on an LCD display. The test results obtained for the above three applications is shown below. Input +60mV Gain Reference 1.3V (Internal)

9 Input (mv) Uncalibrated Error on FS % CDS Error on FS Two Point Calibration Error on FS % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % Table 1: Test results The error on full scale was around +11% for the un-calibrated system. With only offset compensation using CDS, the error reduced to about +0.4% and with two point calibration the error was the least at +0.07% Conclusion Summarizing, the below table lists the advantages and disadvantages of the different techniques to remove offset and gain errors in signal acquisition systems. Technique Advantages Disadvantages Correlated Double Sampling Offset compensation Reduced throughput of ADC Compensates for offset drift due to temperature Two Point Calibration Compensates both offset and gain errors. Offset compensation suffers error due to temperature drift Additional step required for calibration during manufacturing. External Reference Removes gain error External reference increases cost CDS + External Reference No need for manual calibration; Compensates both offset and gain errors Reduced throughput of ADC External reference increases cost Depending on the accuracy and cost requirement one or a combination of many of the above techniques can be used to build a highly accurate signal acquisition system. References: AN2226 Correlate d Double Sampling for Thermocouple Measurement by Dennis Seguine

Conversion Between Analog and Digital Signals

Conversion Between Analog and Digital Signals ELET 3156 DL - Laboratory #6 Conversion Between Analog and Digital Signals There is no pre-lab work required for this experiment. However, be sure to read through the assignment completely prior to starting

More information

Interfacing Analog to Digital Data Converters

Interfacing Analog to Digital Data Converters Converters In most of the cases, the PIO 8255 is used for interfacing the analog to digital converters with microprocessor. We have already studied 8255 interfacing with 8086 as an I/O port, in previous

More information

Digital to Analog and Analog to Digital Conversion

Digital to Analog and Analog to Digital Conversion Real world (lab) is Computer (binary) is digital Digital to Analog and Analog to Digital Conversion V t V t D/A or DAC and A/D or ADC D/A Conversion Computer DAC A/D Conversion Computer DAC Digital to

More information

DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION

DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION DIGITAL-TO-ANALOGUE AND ANALOGUE-TO-DIGITAL CONVERSION Introduction The outputs from sensors and communications receivers are analogue signals that have continuously varying amplitudes. In many systems

More information

Section 3. Sensor to ADC Design Example

Section 3. Sensor to ADC Design Example Section 3 Sensor to ADC Design Example 3-1 This section describes the design of a sensor to ADC system. The sensor measures temperature, and the measurement is interfaced into an ADC selected by the systems

More information

LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS

LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com

More information

DAC Digital To Analog Converter

DAC Digital To Analog Converter DAC Digital To Analog Converter DAC Digital To Analog Converter Highlights XMC4000 provides two digital to analog converters. Each can output one analog value. Additional multiple analog waves can be generated

More information

Microcontroller to Sensor Interfacing Techniques

Microcontroller to Sensor Interfacing Techniques to Sensor Interfacing Techniques Document Revision: 1.01 Date: 3rd February, 2006 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970 Fax: 1-281-416-2806 E-mail: info@bipom.com

More information

Microcontroller-based experiments for a control systems course in electrical engineering technology

Microcontroller-based experiments for a control systems course in electrical engineering technology Microcontroller-based experiments for a control systems course in electrical engineering technology Albert Lozano-Nieto Penn State University, Wilkes-Barre Campus, Lehman, PA, USA E-mail: AXL17@psu.edu

More information

MECE 102 Mechatronics Engineering Orientation

MECE 102 Mechatronics Engineering Orientation MECE 102 Mechatronics Engineering Orientation Mechatronic System Components Associate Prof. Dr. of Mechatronics Engineering Çankaya University Compulsory Course in Mechatronics Engineering Credits (2/0/2)

More information

Android based Alcohol detection system using Bluetooth technology

Android based Alcohol detection system using Bluetooth technology For more Project details visit: http://www.projectsof8051.com/android-based-alcohol-detection-system-usingbluetooth-technology/ Code 1435 Project Title Android based Alcohol detection system using Bluetooth

More information

Chapter 6: From Digital-to-Analog and Back Again

Chapter 6: From Digital-to-Analog and Back Again Chapter 6: From Digital-to-Analog and Back Again Overview Often the information you want to capture in an experiment originates in the laboratory as an analog voltage or a current. Sometimes you want to

More information

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic!

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic! Michael Hightower, KF6SJ 13620 White Rock Station Rd, Poway, CA 92064; kf6sj@arrl.net Simple SDR Receiver Looking for some hardware to learn about SDR? This project may be just what you need to explore

More information

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR INTRODUCTION This Project "Automatic Night Lamp with Morning Alarm" was developed using Microprocessor. It is the Heart of the system. The sensors

More information

ADC-20/ADC-24 Terminal Board. User Guide DO117-5

ADC-20/ADC-24 Terminal Board. User Guide DO117-5 ADC-20/ADC-24 Terminal Board User Guide DO117-5 Issues: 1) 8.11.05 Created by JB. 2) 13.12.05 p10: added 0V connection to thermocouple schematic. 3) 22.3.06 p11: removed C1. 4) 20.8.07 New logo. 5) 29.9.08

More information

Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems

Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems Programmable-Gain Transimpedance Amplifiers Maximize Dynamic Range in Spectroscopy Systems PHOTODIODE VOLTAGE SHORT-CIRCUIT PHOTODIODE SHORT- CIRCUIT VOLTAGE 0mV DARK ark By Luis Orozco Introduction Precision

More information

Basic Op Amp Circuits

Basic Op Amp Circuits Basic Op Amp ircuits Manuel Toledo INEL 5205 Instrumentation August 3, 2008 Introduction The operational amplifier (op amp or OA for short) is perhaps the most important building block for the design of

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. SEMICONDUCTOR APPLICATION NOTE ARCHIVED BY FREESCALE SEMICONDUCTOR, INC. 00 Order this document by AN8/D by: Eric Jacobsen and Jeff Baum Systems Engineering Group Sensor Products Division Motorola

More information

Scaling and Biasing Analog Signals

Scaling and Biasing Analog Signals Scaling and Biasing Analog Signals November 2007 Introduction Scaling and biasing the range and offset of analog signals is a useful skill for working with a variety of electronics. Not only can it interface

More information

Analog Signal Conditioning

Analog Signal Conditioning Analog Signal Conditioning Analog and Digital Electronics Electronics Digital Electronics Analog Electronics 2 Analog Electronics Analog Electronics Operational Amplifiers Transistors TRIAC 741 LF351 TL084

More information

PROGRAMMABLE LOGIC CONTROLLERS Unit code: A/601/1625 QCF level: 4 Credit value: 15 TUTORIAL OUTCOME 2 Part 1

PROGRAMMABLE LOGIC CONTROLLERS Unit code: A/601/1625 QCF level: 4 Credit value: 15 TUTORIAL OUTCOME 2 Part 1 UNIT 22: PROGRAMMABLE LOGIC CONTROLLERS Unit code: A/601/1625 QCF level: 4 Credit value: 15 TUTORIAL OUTCOME 2 Part 1 This work covers part of outcome 2 of the Edexcel standard module. The material is

More information

Basic RTD Measurements. Basics of Resistance Temperature Detectors

Basic RTD Measurements. Basics of Resistance Temperature Detectors Basic RTD Measurements Basics of Resistance Temperature Detectors Platinum RTD resistances range from about 10 O for a birdcage configuration to 10k O for a film type, but the most common is 100 O at 0

More information

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment.

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment. Op-Amp Simulation EE/CS 5720/6720 Read Chapter 5 in Johns & Martin before you begin this assignment. This assignment will take you through the simulation and basic characterization of a simple operational

More information

A Collection of Differential to Single-Ended Signal Conditioning Circuits for Use with the LTC2400, a 24-Bit No Latency Σ ADC in an SO-8

A Collection of Differential to Single-Ended Signal Conditioning Circuits for Use with the LTC2400, a 24-Bit No Latency Σ ADC in an SO-8 Application Note August 999 A Collection of Differential to Single-Ended Signal Conditioning Circuits for Use with the LTC00, a -Bit No Latency Σ ADC in an SO- By Kevin R. Hoskins and Derek V. Redmayne

More information

AVR127: Understanding ADC Parameters. Introduction. Features. Atmel 8-bit and 32-bit Microcontrollers APPLICATION NOTE

AVR127: Understanding ADC Parameters. Introduction. Features. Atmel 8-bit and 32-bit Microcontrollers APPLICATION NOTE Atmel 8-bit and 32-bit Microcontrollers AVR127: Understanding ADC Parameters APPLICATION NOTE Introduction This application note explains the basic concepts of analog-to-digital converter (ADC) and the

More information

Digital Guitar Effects Pedal

Digital Guitar Effects Pedal Digital Guitar Effects Pedal 01001000100000110000001000001100 010010001000 Jonathan Fong John Shefchik Advisor: Dr. Brian Nutter SPRP499 Texas Tech University jonathan.fong@ttu.edu Presentation Outline

More information

Analog-to-Digital Converters

Analog-to-Digital Converters Analog-to-Digital Converters In this presentation we will look at the Analog-to-Digital Converter Peripherals with Microchip s midrange PICmicro Microcontrollers series. 1 Analog-to-Digital Converters

More information

THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES

THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES TSI and TSI logo are registered trademarks of TSI Incorporated. SmartTune is a trademark of TSI Incorporated. THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES IFA 300 Constant Temperature Anemometry

More information

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS Build a emperature Sensor Project A sensor is a device that measures a physical quantity and converts it into an electrical signal. Some sensors measure physical properties directly, while other sensors

More information

SINGLE-SUPPLY OPERATION OF OPERATIONAL AMPLIFIERS

SINGLE-SUPPLY OPERATION OF OPERATIONAL AMPLIFIERS SINGLE-SUPPLY OPERATION OF OPERATIONAL AMPLIFIERS One of the most common applications questions on operational amplifiers concerns operation from a single supply voltage. Can the model OPAxyz be operated

More information

WHAT DESIGNERS SHOULD KNOW ABOUT DATA CONVERTER DRIFT

WHAT DESIGNERS SHOULD KNOW ABOUT DATA CONVERTER DRIFT WHAT DESIGNERS SHOULD KNOW ABOUT DATA CONVERTER DRIFT Understanding the Components of Worst-Case Degradation Can Help in Avoiding Overspecification Exactly how inaccurate will a change in temperature make

More information

Pressure Transducer to ADC Application

Pressure Transducer to ADC Application Application Report SLOA05 October 2000 Pressure Transducer to ADC Application John Bishop ABSTRACT Advanced Analog Products/OpAmp Applications A range of bridgetype transducers can measure numerous process

More information

Measuring Temperature withthermistors a Tutorial David Potter

Measuring Temperature withthermistors a Tutorial David Potter NATIONAL INSTRUMENTS The Software is the Instrument Application Note 065 Measuring Temperature withthermistors a Tutorial David Potter Introduction Thermistors are thermally sensitive resistors used in

More information

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV UNIT I THE 8086 MICROPROCESSOR 1. What is the purpose of segment registers

More information

Temperature Sensors. Resistance Temperature Detectors (RTDs) Thermistors IC Temperature Sensors

Temperature Sensors. Resistance Temperature Detectors (RTDs) Thermistors IC Temperature Sensors Temperature Sensors Resistance Temperature Detectors (RTDs) Thermistors IC Temperature Sensors Drew Gilliam GE/MfgE 330: Introduction to Mechatronics 03.19.2003 Introduction There are a wide variety of

More information

b 1 is the most significant bit (MSB) The MSB is the bit that has the most (largest) influence on the analog output

b 1 is the most significant bit (MSB) The MSB is the bit that has the most (largest) influence on the analog output CMOS Analog IC Design - Chapter 10 Page 10.0-5 BLOCK DIAGRAM OF A DIGITAL-ANALOG CONVERTER b 1 is the most significant bit (MSB) The MSB is the bit that has the most (largest) influence on the analog output

More information

30. Bode Plots. Introduction

30. Bode Plots. Introduction 0. Bode Plots Introduction Each of the circuits in this problem set is represented by a magnitude Bode plot. The network function provides a connection between the Bode plot and the circuit. To solve these

More information

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER 2014 Amplifier - 1 FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER The objectives of this experiment are: To understand the concept of HI-FI audio equipment To generate a frequency response curve for an audio

More information

Smart Thermostat page 1

Smart Thermostat page 1 Smart Thermostat page 1 3. APPROACH In today s home appliances market, automation is becoming the norm and Smart Thermostat is a typical automation appliance able to be applied easily at home. With Smart

More information

Tire pressure monitoring

Tire pressure monitoring Application Note AN601 Tire pressure monitoring 1 Purpose This document is intended to give hints on how to use the Intersema pressure sensors in a low cost tire pressure monitoring system (TPMS). 2 Introduction

More information

Atmel Norway 2005. XMEGA Introduction

Atmel Norway 2005. XMEGA Introduction Atmel Norway 005 XMEGA Introduction XMEGA XMEGA targets Leadership on Peripheral Performance Leadership in Low Power Consumption Extending AVR market reach XMEGA AVR family 44-100 pin packages 16K 51K

More information

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter

NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter NTE2053 Integrated Circuit 8 Bit MPU Compatible A/D Converter Description: The NTE2053 is a CMOS 8 bit successive approximation Analog to Digital converter in a 20 Lead DIP type package which uses a differential

More information

NETWORK ENABLED EQUIPMENT MONITOR

NETWORK ENABLED EQUIPMENT MONITOR NETWORK ENABLED EQUIPMENT MONITOR Remotely Monitor Sensors over the Internet Connect Sensors to the Web to Remotely Monitor Equipment, Processes or Other Applications A Complete, Easy to Deploy, Stand-Alone

More information

Lab 7: Operational Amplifiers Part I

Lab 7: Operational Amplifiers Part I Lab 7: Operational Amplifiers Part I Objectives The objective of this lab is to study operational amplifier (op amp) and its applications. We will be simulating and building some basic op amp circuits,

More information

Lab 1: DC Circuits. Student 1, student1@ufl.edu Partner : Student 2, student2@ufl.edu

Lab 1: DC Circuits. Student 1, student1@ufl.edu Partner : Student 2, student2@ufl.edu Lab Date Lab 1: DC Circuits Student 1, student1@ufl.edu Partner : Student 2, student2@ufl.edu I. Introduction The purpose of this lab is to allow the students to become comfortable with the use of lab

More information

INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS

INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS INSTRUMENTATION AND CONTROL TUTORIAL 3 SIGNAL PROCESSORS AND RECEIVERS This tutorial provides an overview of signal processing and conditioning for use in instrumentation and automatic control systems.

More information

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist.

Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Constructing a precision SWR meter and antenna analyzer. Mike Brink HNF, Design Technologist. Abstract. I have been asked to put together a detailed article on a SWR meter. In this article I will deal

More information

School of Engineering Department of Electrical and Computer Engineering

School of Engineering Department of Electrical and Computer Engineering 1 School of Engineering Department of Electrical and Computer Engineering 332:223 Principles of Electrical Engineering I Laboratory Experiment #4 Title: Operational Amplifiers 1 Introduction Objectives

More information

Designing the Solution for Electrochemistry Potentiostat/Galvanostat І Battery Cycler І Fuel Cell Test Station +82-2-578-6516 І sales@wonatech.

Designing the Solution for Electrochemistry Potentiostat/Galvanostat І Battery Cycler І Fuel Cell Test Station +82-2-578-6516 І sales@wonatech. ZIVE Electrochemical Workstations ZIVE SP2 Designing the Solution for Electrochemistry Potentiostat/Galvanostat І Battery Cycler І Fuel Cell Test Station +82-2-578-6516 І sales@wonatech.com www.wonatech.com

More information

Using a Thermistor to Measure Temperature. Thermistors are resistors that vary their resistance according to temperature.

Using a Thermistor to Measure Temperature. Thermistors are resistors that vary their resistance according to temperature. Using a Thermistor to Measure Temperature Overview of a Thermistor Thermistors are resistors that vary their resistance according to temperature. The change in resistance is roughly proportional to the

More information

Signal Processing in So.ware and Electric Field Sensing

Signal Processing in So.ware and Electric Field Sensing Signal Processing in So.ware and Electric Field Sensing CSE 466: So.ware for Embedded Systems Winter 2009 B. Mayton University of Washington CSE & Intel Research SeaMle CSE

More information

FREQUENCY RESPONSE ANALYZERS

FREQUENCY RESPONSE ANALYZERS FREQUENCY RESPONSE ANALYZERS Dynamic Response Analyzers Servo analyzers When you need to stabilize feedback loops to measure hardware characteristics to measure system response BAFCO, INC. 717 Mearns Road

More information

Lecture N -1- PHYS 3330. Microcontrollers

Lecture N -1- PHYS 3330. Microcontrollers Lecture N -1- PHYS 3330 Microcontrollers If you need more than a handful of logic gates to accomplish the task at hand, you likely should use a microcontroller instead of discrete logic gates 1. Microcontrollers

More information

8051 MICROCONTROLLER COURSE

8051 MICROCONTROLLER COURSE 8051 MICROCONTROLLER COURSE Objective: 1. Familiarization with different types of Microcontroller 2. To know 8051 microcontroller in detail 3. Programming and Interfacing 8051 microcontroller Prerequisites:

More information

Procon Engineering. Technical Document PELR 1002. TERMS and DEFINITIONS

Procon Engineering. Technical Document PELR 1002. TERMS and DEFINITIONS Procon Engineering Technical Document PELR 1002 TERMS and DEFINITIONS The following terms are widely used in the weighing industry. Informal comment on terms is in italics and is not part of the formal

More information

Thermistor Calculator. Features. General Description. Input/Output Connections. When to use a Thermistor Calculator 1.10

Thermistor Calculator. Features. General Description. Input/Output Connections. When to use a Thermistor Calculator 1.10 PSoC Creator Component Data Sheet Thermistor Calculator 1.10 Features Adaptable for majority of negative temperature coefficient (NTC) thermistors Look-Up-Table (LUT) or equation implementation methods

More information

1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1.

1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1. File: chap04, Chapter 04 1. True or False? A voltage level in the range 0 to 2 volts is interpreted as a binary 1. 2. True or False? A gate is a device that accepts a single input signal and produces one

More information

Optimizing IP3 and ACPR Measurements

Optimizing IP3 and ACPR Measurements Optimizing IP3 and ACPR Measurements Table of Contents 1. Overview... 2 2. Theory of Intermodulation Distortion... 2 3. Optimizing IP3 Measurements... 4 4. Theory of Adjacent Channel Power Ratio... 9 5.

More information

SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION

SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION 1 SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION By Lannes S. Purnell FLUKE CORPORATION 2 This paper shows how standard signal generators can be used as leveled sine wave sources for calibrating oscilloscopes.

More information

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION 35'th Annual Precise Time and Time Interval (PTTI) Systems and Applications Meeting San Diego, December 2-4, 2003 A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION Józef Kalisz and Ryszard Szplet

More information

STEPPER MOTOR SPEED AND POSITION CONTROL

STEPPER MOTOR SPEED AND POSITION CONTROL STEPPER MOTOR SPEED AND POSITION CONTROL Group 8: Subash Anigandla Hemanth Rachakonda Bala Subramanyam Yannam Sri Divya Krovvidi Instructor: Dr. Jens - Peter Kaps ECE 511 Microprocessors Fall Semester

More information

Measuring Electric Phenomena: the Ammeter and Voltmeter

Measuring Electric Phenomena: the Ammeter and Voltmeter Measuring Electric Phenomena: the Ammeter and Voltmeter 1 Objectives 1. To understand the use and operation of the Ammeter and Voltmeter in a simple direct current circuit, and 2. To verify Ohm s Law for

More information

Picture 1 Lead Color Code Lead Function V-Link Function V-Link Pin Table 2 Picture 2 Node Commander software

Picture 1 Lead Color Code Lead Function V-Link Function V-Link Pin Table 2 Picture 2 Node Commander software 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

11: AUDIO AMPLIFIER I. INTRODUCTION

11: AUDIO AMPLIFIER I. INTRODUCTION 11: AUDIO AMPLIFIER I. INTRODUCTION The properties of an amplifying circuit using an op-amp depend primarily on the characteristics of the feedback network rather than on those of the op-amp itself. A

More information

Controlling a Dot Matrix LED Display with a Microcontroller

Controlling a Dot Matrix LED Display with a Microcontroller Controlling a Dot Matrix LED Display with a Microcontroller By Matt Stabile and programming will be explained in general terms as well to allow for adaptation to any comparable microcontroller or LED matrix.

More information

CALIBRATION OF A THERMISTOR THERMOMETER (version = fall 2001)

CALIBRATION OF A THERMISTOR THERMOMETER (version = fall 2001) CALIBRATION OF A THERMISTOR THERMOMETER (version = fall 2001) I. Introduction Calibration experiments or procedures are fairly common in laboratory work which involves any type of instrumentation. Calibration

More information

Note monitors controlled by analog signals CRT monitors are controlled by analog voltage. i. e. the level of analog signal delivered through the

Note monitors controlled by analog signals CRT monitors are controlled by analog voltage. i. e. the level of analog signal delivered through the DVI Interface The outline: The reasons for digital interface of a monitor the transfer from VGA to DVI. DVI v. analog interface. The principles of LCD control through DVI interface. The link between DVI

More information

Evaluating AC Current Sensor Options for Power Delivery Systems

Evaluating AC Current Sensor Options for Power Delivery Systems Evaluating AC Current Sensor Options for Power Delivery Systems State-of-the-art isolated ac current sensors based on CMOS technology can increase efficiency, performance and reliability compared to legacy

More information

Data Acquisition Using NI-DAQmx

Data Acquisition Using NI-DAQmx Instructor s Portion Data Acquisition Using NI-DAQmx Wei Lin Department of Biomedical Engineering Stony Brook University Summary This experiment requires the student to use NI-DAQmx to acquire voltage

More information

Application Note 142 August 2013. New Linear Regulators Solve Old Problems AN142-1

Application Note 142 August 2013. New Linear Regulators Solve Old Problems AN142-1 August 2013 New Linear Regulators Solve Old Problems Bob Dobkin, Vice President, Engineering and CTO, Linear Technology Corp. Regulators regulate but are capable of doing much more. The architecture of

More information

Welcome to this presentation on Driving LEDs Resistors and Linear Drivers, part of OSRAM Opto Semiconductors LED Fundamentals series.

Welcome to this presentation on Driving LEDs Resistors and Linear Drivers, part of OSRAM Opto Semiconductors LED Fundamentals series. Welcome to this presentation on Driving LEDs Resistors and Linear Drivers, part of OSRAM Opto Semiconductors LED Fundamentals series. In this presentation we will look at: - Simple resistor based current

More information

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED www.analog.com www.hittite.com THIS PAGE INTENTIONALLY LEFT BLANK v.113 Frequency Divider Operation

More information

PROGRAMMABLE ANALOG INTEGRATED CIRCUIT FOR USE IN REMOTELY OPERATED LABORATORIES

PROGRAMMABLE ANALOG INTEGRATED CIRCUIT FOR USE IN REMOTELY OPERATED LABORATORIES PROGRAMMABLE ANALOG INTEGRATED CIRCUIT FOR USE IN REMOTELY OPERATED LABORATORIES Carsten Wulff (carsten@wulff.no) Prof. Trond Ytterdal (ytterdal@fysel.ntnu.no) Norwegian University of Science and Technology,

More information

Signal Conditioning Amplifier System

Signal Conditioning Amplifier System Micro-Measurements A2 FEATURES Strain gage, transducer, and thermocouple inputs Frequency response to 110 khz Analog output of ±10 VDC Operation with 12 to 15 VDC and 120/240 VAC power Scalable from 8

More information

Application Note for SDP600 and SDP1000 Series Measuring Differential Pressure and Air Volume with Sensirion s CMOSens technology

Application Note for SDP600 and SDP1000 Series Measuring Differential Pressure and Air Volume with Sensirion s CMOSens technology Application Note for SDP600 and SDP1000 Series Measuring Differential Pressure and Air Volume with Sensirion s CMOSens technology Summary The increasing customer requirements for comfort and safety and

More information

WHY DIFFERENTIAL? instruments connected to the circuit under test and results in V COMMON.

WHY DIFFERENTIAL? instruments connected to the circuit under test and results in V COMMON. WHY DIFFERENTIAL? Voltage, The Difference Whether aware of it or not, a person using an oscilloscope to make any voltage measurement is actually making a differential voltage measurement. By definition,

More information

PPM Users Manual Signature Software 01-12-00

PPM Users Manual Signature Software 01-12-00 PPM Users Manual Signature Software 0-2-00 PPM User Manual /8/02 Software Versions: 0.0.27 Contents. Introduction 2 2. Parameters 3 2. Overload Limit...4 2.2 Relative Upper Limit...4 2.3 Relative Lower

More information

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V]

[F/T] [5] [KHz] [AMP] [3] [V] 4 ) To set DC offset to -2.5V press the following keys [OFS] [+/-] [2] [.] [5] [V] FG085 minidds Function Generator Manual of Operation Applicable Models: 08501, 08501K, 08502K, 08503, 08503K Applicable Firmware Version: 1 ) 113-08501-100 or later (for U5) 2 ) 113-08502-030 or later

More information

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS Objective In this experiment you will study the i-v characteristics of an MOS transistor. You will use the MOSFET as a variable resistor and as a switch. BACKGROUND

More information

Multiplexing and Sampling Theory

Multiplexing and Sampling Theory Multiplexing and Sampling Theory THE ECONOMY OF MULTIPLEXING Sampled-Data Systems An ideal data acquisition system uses a single ADC for each measurement channel. In this way, all data are captured in

More information

Buffer Op Amp to ADC Circuit Collection

Buffer Op Amp to ADC Circuit Collection Application Report SLOA098 March 2002 Buffer Op Amp to ADC Circuit Collection Bruce Carter High Performance Linear Products ABSTRACT This document describes various techniques that interface buffer op

More information

Designing Gain and Offset in Thirty Seconds

Designing Gain and Offset in Thirty Seconds Application Report SLOA097 February 2002 Designing Gain and Offset in Thirty Seconds Bruce Carter High Performance Linear ABSTRACT This document discusses how to design an operational amplifier (op amp)

More information

Practical Application of Industrial Fiber Optic Sensing Systems

Practical Application of Industrial Fiber Optic Sensing Systems Practical Application of Industrial Fiber Optic Sensing Systems John W. Berthold and David B. Needham Davidson Instruments, Inc. P.O. Box 130100, The Woodlands, TX 77393 ABSTRACT In this presentation,

More information

Chapter 19 Operational Amplifiers

Chapter 19 Operational Amplifiers Chapter 19 Operational Amplifiers The operational amplifier, or op-amp, is a basic building block of modern electronics. Op-amps date back to the early days of vacuum tubes, but they only became common

More information

RGB for ZX Spectrum 128, +2, +2A, +3

RGB for ZX Spectrum 128, +2, +2A, +3 RGB for ZX Spectrum 128, +2, +2A, +3 Introduction... 2 Video Circuitry... 3 Audio Circuitry... 8 Lead Wiring... 9 Testing The Lead... 11 Spectrum +2A/+3 RGB Differences... 12 Circuitry Calculations...

More information

AN_6521_035 APRIL 2009

AN_6521_035 APRIL 2009 71M6521 Energy Meter IC A Maxim Integrated Products Brand APPLICATION NOTE AN_6521_035 APRIL 2009 This document describes how to use software to compensate the real time clock (RTC) in Teridian meter chips.

More information

How To Calculate The Power Gain Of An Opamp

How To Calculate The Power Gain Of An Opamp A. M. Niknejad University of California, Berkeley EE 100 / 42 Lecture 8 p. 1/23 EE 42/100 Lecture 8: Op-Amps ELECTRONICS Rev C 2/8/2012 (9:54 AM) Prof. Ali M. Niknejad University of California, Berkeley

More information

Design of an Insulin Pump. Purpose of an Insulin Pump:

Design of an Insulin Pump. Purpose of an Insulin Pump: Design of an Insulin Pump Purpose of an Insulin Pump: Insulin is a hormone central to regulating carbohydrate and fat metabolism in the body. It is secreted regularly within the body and aids in converting

More information

AND9035/D. BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE

AND9035/D. BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE Introduction This application note describes the use of BELASIGNA 250 and BELASIGNA 300 in low bandwidth applications. The intended

More information

SIMPLE TECHNIQUES TO IMPROVE SOLAR PANEL EFFICIENCY USING A MICROCONTROLLER OR SOC

SIMPLE TECHNIQUES TO IMPROVE SOLAR PANEL EFFICIENCY USING A MICROCONTROLLER OR SOC SIMPLE TECHNIQUES TO IMPROVE SOLAR PANEL EFFICIENCY USING A MICROCONTROLLER OR SOC By Udayan Umapathi, Applications Engineer at Cypress Semiconductor and Gautam Das G, Applications Engineer at Cypress

More information

BrightSign Expander Hardware Guide

BrightSign Expander Hardware Guide Hardware Guide PCBA: Rev C Version: 0.1 Saratoga, CA, USA 1 Table of Contents OVERVIEW... 3 EXPANDER BLOCK DIAGRAM... 4 PORTS... 6 POWER CONNECTOR... 6 OPTICAL SPDIF CONNECTOR... 6 DB25 SWITCH/LED CONNECTOR...

More information

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue Build A Video Switcher Reprinted with permission from Electronics Now Magazine September 1997 issue Copyright Gernsback Publications, Inc.,1997 BUILD A VIDEO SWITCHER FRANK MONTEGARI Watch several cameras

More information

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law OBJECTIVES: To verify Ohm s law, the mathematical relationship among current, voltage or potential difference, and resistance, in a simple circuit.

More information

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at Building a Simulink model for real-time

More information

The Operational Amplfier Lab Guide

The Operational Amplfier Lab Guide EECS 100 Lab Guide Bharathwaj Muthuswamy The Operational Amplfier Lab Guide 1. Introduction COMPONENTS REQUIRED FOR THIS LAB : 1. LM741 op-amp integrated circuit (IC) 2. 1k resistors 3. 10k resistor 4.

More information

DATA LOGGER AND REMOTE MONITORING SYSTEM FOR MULTIPLE PARAMETER MEASUREMENT APPLICATIONS. G.S. Nhivekar, R.R.Mudholker

DATA LOGGER AND REMOTE MONITORING SYSTEM FOR MULTIPLE PARAMETER MEASUREMENT APPLICATIONS. G.S. Nhivekar, R.R.Mudholker e -Journal of Science & Technology (e-jst) e-περιοδικό Επιστήμης & Τεχνολογίας 55 DATA LOGGER AND REMOTE MONITORING SYSTEM FOR MULTIPLE PARAMETER MEASUREMENT APPLICATIONS G.S. Nhivekar, R.R.Mudholker Department

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.002 Electronic Circuits Spring 2007 Lab 4: Audio Playback System Introduction In this lab, you will construct,

More information

V out. Figure 1: A voltage divider on the left, and potentiometer on the right.

V out. Figure 1: A voltage divider on the left, and potentiometer on the right. Living with the Lab Fall 202 Voltage Dividers and Potentiometers Gerald Recktenwald v: November 26, 202 gerry@me.pdx.edu Introduction Voltage dividers and potentiometers are passive circuit components

More information