Laboration: AD-conversion and the Thevenin theorem.

Size: px
Start display at page:

Download "Laboration: AD-conversion and the Thevenin theorem."

Transcription

1 Laboration: AD-conversion and the Thevenin theorem. Embedded Electronics IE1206 Attention! To access the laboratory experiment you must have: completed your personal knowledge control on the Web (Web-quiz). done all preparation tasks mentioned in the lab booklet. booked a lab time in the reservation system. During the lab you work in groups of two, but both students are responsible individually for their preparation and implementation. Booth students should bring their lab booklets. This frontpage is used as your receipt that the lab is completed. Save the receipt until you have received the full course registered in the database (Ladok). 1

2 Introduction AD-converter Our world is analog, and it is very common with analog sensors when "taking in" readings to an embedded system. Many embedded processors are provided with an AD converter. Equivalent Circuits - (Thevenin) For the electronics the Thévenin's theorem is essential. It says that for every, complex linear circuit, one can find an equivalent simple circuit consisting of a voltage source with an internal resistance. In practice this means that we have the same simple model, an emf in series with a resistor, for all analog sensors, we may have to use. Only the manufacturer needs to know all the details of the sensor s complete circuit diagram. In this lab we exemplify Thévenin's theorem with a loaded voltage divider, and we measure the current and voltage from it with the PIC processor inbuilt AD converter. We also link up an equivalent two-port circuit, and make the same measurements on it. If the measured results from the two measurements are equal, then it seems as Thévenin's theorem is "probable". At the same time we get the opportunity to practice with the AD converter. The goal of the lab Orient you on how to configure an AD-converter. Practicing how to measure voltage and current with an AD-converter. Show how to measure bipolar voltages. Practicing how to use internal or external reference voltage for the ADconverter. Show how to design programs to present the measurements. Learn how to calculate two-terminal equivalents. Practicing measurements with digital multimeter. Attention! Your lab time may be prior all course elements that may be needed for the lab has been lectured. You would then have to read the course material for yourself in advance - there are links to all slides for the lectures and exercises. 2

3 The PIC-processor internal AD-converter Read in Microchip PIC16F690-manual about how the AD converter is configured. The rail splitter virtual ground chip TLE2426 ADvolt.c AD2pol.c Preparation task 1 (done before the lab) AD-converter as Volt-meter The program ADvolt.c performs a measurement of voltage at AN2/RA2, pin 17, each time one presses the button. For small one chip processors one avoids working with floating point numbers as floating point operations take much space. When measuring the supply voltage 5V the variable advalue get a 10-bit integer with the full scale value If you multiply advalue with a constant called SCALE_FACTOR so that the resulting figure will be 50000, the reading will be more comprehensible to the user. (The result of the multiplication may be a maximum of to fit in a 16 bit unsigned long). If you then additionally insert a decimal point inside the printout as "5.0000" then we are done with a userfriendly presentation of the measured value. Which integer constant, SCALE_FACTOR in the program, should you multiply the 10-bit AD value with, for the decimal digits to be correct (within 2%)? Study the function void longdecimal_out(long number, char decimalplaces, bit un_signed); It divides the variable number into five ASCII digits, and then prints them with a decimal point before the number of decimal places specified by the variable decimalplaces. With bit variable un_signed one specify whether it is a positive number "+" or if it is a number with sign "+", "-" which is printed. How many of the five digits are to be decimals? Choose value of the constant DECIMALS. 3

4 Bipolar measurement On the breadboard there is a rail splitter virtual ground chip. If you measure the voltage in relation to this chip output (2.5V), then the measured voltages can be both positive or negative in relation to this (virtual ground). Now we can measure a Bipolar signal. ADC value must then be reduced by a constant OFFSET which shifts the 0 point. The print function now should print the AD value with the sign. So we change to #define UN_SIGNED 0 (false) What value should the constant OFFSET have when bipolar measurements? You must study this program so that you are prepared to explain it at the lab. Laboratory task 1 Compile and download the program ( ADvolt.c ) with the constants from preparation task 1 for unipolar measurements. Measure the voltage on the output of the virtual ground chip, the printed number should be close to 2.5 V. Measure the supply voltage ( + 5V) and the ground ( 0 V). Change the program ( ADvolt.c ) to the constants used for bipolar measurements from your preparation task 1. Measure the voltage on the output of the virtual ground chip, the printed number should now be close to 0 V. Measure the supply voltage ( +2,5 V ) and ground ( -2,5 V ). 4

5 Connect a cable to the virtual ground output, and measure the voltage of a 1.5V battery between this cable and the AD-converter AN2. Change polarity of the battery voltage - will the digits be the same ( but the sign different )? If not, adjust the constant OFFSET in the program in order to correct this ( How should this be done? ). Preparation task 2 (done before the lab) Measure with multiple AD-converter-channels The program AD2pol.c will perform measurements with two AD-channels AN2 and AN3. The AD-converter channel selection must be reconfigured between the measurements in the program. The channel is selected with the register ADCON0. Read about the AD-converter in Microchip PIC 16F690 Data Sheet. Insert the correct values of the constants AN2_SELECT and AN3_SELECT, the compiler Cc5x will allow us to use binary constants if introduced by 0b ( this is not ANSII-standard - but it's convienient ). You must also insert values on the constants SCALE_FACTOR and DECIMALS_I and DECIMALS_U. You must study this program so that you are prepared to explain it at the lab. Laboratory task 2 Compile and test run your version of AD2pol.c with changed constants from preparation task 2. Measure with AN3 and AN2 connected to +5V, then 2,5V (virtual ground chip output) and last 0V. The readings should be about (50mA, 5V), (25mA, 2.5V) and (0mA, 0V) if you done it correct. 5

6 Calculations and measurements on a two terminal circuit At the lab we are going to check the Thevenin theorem. A voltage divider with two 1 kω resistors and the supply voltage 5 V as its emf, is loaded by an adjustable resistor with the range 1100Ω Ω. This will be compared to the Thevenin equivalent circuit, with half the supply voltage (from the rail splitter circuit) and with the half resistance value in series, (from the two resistor in parallell). Preparation task 3 (done before the lab) Calculate voltage U and current I from the two-port with the voltage divider when it is connected to a load resistor R L. R L have the values 100Ω, 500Ω, 1000Ω. Pinpoint the three points in the IU chart. Are they located on the same line? Be prepared to present your calculations facing the other participants at the lab. Calculate voltage U and current I from the two-terminal equivalent when its connected with a load resistor R L. R L has the values 100Ω, 500Ω, 1000Ω. Pinpoint the three points in the IU chart. Are they located on the same line?? Be prepared to present your calculations facing the other participants at the lab. 6

7 IU-chart Study the points in the charts. They are the same. Give the equation for the straight line, I = f (U ) with units ma and V. External reference - better measurement accuracy The calculations above should state that the output voltage from the voltage divider, or its Thevenin equivalent, will never exceed 2.5V. The AD converter then uses an unnecessarily large measuring range V. If we connect the rail split circuit as a 2.5V external reference to the AD converter we will double the measurement accuracy! This becomes especially important for the current measurement that will always have the lowest measured value. To use external reference at pin RA1/AN1/Vref one must reconfigure ADCON0 in program AD2pol.c Find out how, and write down, the values of the constants AN2_SELECT and AN3_SELECT to obtain this. 7

8 As the measuring range is divided by two also the scale must change. Do this at lab by uncommenting these lines at two places in the program: //advalue /= 2; /* uncomment when using 2,5V reference */ Read tutorial Save measurements on file, about how to save the measured values in a text file, so you are prepared to do this at lab. You must study this program so that you are prepared to explain it at the lab. Laboratory task 3 The voltage divider, and then the equivalent two port, are loaded by a variable resistor. The voltage U at output A is directly measured with AN2, while the current I is indirectly measurered as the voltage drop over a 100 Ω measurement resistor with AN3. The external reference voltage from the output of the rail split circuit is to be connected to AN1/RA1/REF/PGC - NOTE! This same pin is also used when programming the chip!! It is not possible to use both the function external reference and chipprogramminig simultaneously!! Check at lab if your version of Excel uses decimal point or decimal comma? If it's decimal point you have to change your program AD2pol.c to also use point when printing the values. 8

9 Build up the voltage divider circuit on the breadboard, connect the variable resistor and the measurement cables to AN2 and AN3. NOTE! The measurement cable to AN1/REF/PGC from the external reference (the rail split circuit) must not be plugged in during chip programming! Insert changes from preparation task 3 to program AD2pol.c so that it uses the external 2,5V reference. Compile and download the code to the chip. NOTE! You can not have the external reference connected while downloading the code. When the chip programming is done, you carefully pull out the pin with the red PGC-cable from the breadboard (and the PIC), and connects the cable from the external reference instead. Should You need to reprogram the chipthen the cables must change places again. Both must not be connected simultaneously. Do the measurements. Save the values to a textfile. See "Save measurements on file". Press the button to get a value pairs, and change the variable resistor between measurements. (You can quickly redo the measurements, if you missed something). Upload the text file to an Excel-document. Is the curve in the excel figure consistent with the curve in your preparation task 3? Will it be the same equation I = f (U )? Show lab assistant! ( in addition to excel - online tools on the web can be used eg: Online scatter plot ) Reconnect the circuit to the thevenin equivalent circuit. The half voltage one gets from the rail split chip, and a resistor with the half resistance one gets by connecting the two resistors in parallell. Again save the measurements in a (another) textfile and upload it to Excel. Is the curve in the excel figure consistent with the curve in your preparation task 3? Will it be the same equation I = f (U )? Show lab assistant! 9

10 Laboratory task 4 (if lab in room 305) Measurements with Multimeter Fluke45 Fluke45 is a classic digital multimeter. It can measure voltage, current, resistance, frequency and more. For the multimeter one uses test cables with so-called banana plugs (do they look like bananas?). Should we measure the components on a bredboard then also adapter contacts with pins are needed. Voltage measurements Voltage measurement. Choose the DC Voltage button. The voltage across a component is measured by connecting the terminals V (+) and COM (-) parallel to the component. Measure the 5V voltage from the USB connector to breadboard. The standard allows a tolerance of ą 0.25 V so it may be useful to know the actual value. 10

11 Current measurement Current Measurement. Choose the DC Curent button. The current through a component is measured by "breaking up" the closed circuit and in series insert and connect the terminals 100mA (+) and COM (-). The current then passes through the instrument. It is easy to connect the meter incorrectly - in the worst case, one cause a short circuit with high current. The Figure shows that one should start with the connector labeled 10A and then if the current is below 100 ma switch to the connector 100mA. This connector has a built-in fuse (500 ma), and you want to be sure not to having to replace it. Resistance measurement Resistance measurement. Choose the OHM-button. Resistances are measured by connecting the terminals Ω and COM parallel across the resistor. The resistor may not be connected to other components - at least one connection must be free from the rest of the equipment for the measurement to be true. Measure 1 kω resistors. We use resistors with 5% tolerance, so the value may vary slightly for different resistors. 11

12 Simultaneous measurement of Voltage and Current The meter has a two-part display which can be used for simultaneous measurement of voltage and current. When measuring voltage and current as separate measurements, the conditions can differ - simultaneous measurement is preferable. The current measuring and voltage measuring parts of the instrument has the connection COM in common, so you have not full freedom on how to connect the instrument to the circuit. It happens that one or both voltage and current gets the wrong direction and this shows with a minus sign, but this can be ignored. We choose a connection that does not require any changes on the breadboard, but then both voltage and current are shown with a minus sign (which we ignore). Simultaneous measurement of Voltage and Current. Choose the DC Voltage button followed by the 2ND-button and the Ampere button. The circuit is connected to terminals V and COM and 100mA as shown. Measure the related values of voltage and current for three different settings of the load potentiometer. Enter the values in the graph - do you get the same line as before in lab? 12

13 Do you have time to spare? If you are well prepared for the lab, then you probably now have time for a "voluntary" task. The two terminal circuit you have made calculations and measurements on can also be simulated with LT-spice. Simulate with LT-Spice Ready drawn schematic IU.asc. Simulate the circuit. You can then easily change it to a diagram of the two pole equivalent to investigate whether both simulations give the same result. Do you have more time to spare? If you are well prepared for the lab, then you probably now have time for a "voluntary" task. 13

14 Ask the lab-assistant for a caliper with a linear motion potentiometer glued to it. The task is now to use this potentiometer instead of the rotary potentiometer and measure the voltage from it. Use the program ADvolt.c and find a propriate scale factor so the reading will match the caliper millimeter scale. ADvolt.c Now measure the diameter of a Table Tennis Ball - does the size conform with the international rules? The_Ball international rules. Good luck! When you are finished. Restore the equipment as it was at the start of the lab. Be careful when you put back the pin for the red PGC cable so as not to damage it. Clean the lab location. Bill of materials The "bill of material" for the lab equipment, could be helpful if you ever would need to use some of these components again. breadboard GL-12F ELFA Microcontroller 8 Bit DIL-20, PIC16F690-I/P ELFA Virtual groundreference TO-92, TLE2426CLP ELFA Trimpot cermet 1 ko Lin 500 mw, 72PTR1KLF ELFA Resistor 2st 10k. Resistors 2 st 1k, 1 st 100 ohm. 1 st Led with internal resistor 5V red ELFA Button 24 VDC 50 ma, 3CTL9 ELFA Jumpers: 8 orange, 4 yellow, 5 green, 1 red. 14

Laboration: Frequency measurements and PWM DC motor. Embedded Electronics IE1206

Laboration: Frequency measurements and PWM DC motor. Embedded Electronics IE1206 Laboration: Frequency measurements and PWM DC motor. Embedded Electronics IE1206 Attention! To access the laboratory experiment you must have: booked a lab time in the reservation system (Daisy). completed

More information

1-1. Kirchoff s Laws A. Construct the circuit shown below. R 1 =1 kω. = 2.7 kω R 3 R 2 5 V

1-1. Kirchoff s Laws A. Construct the circuit shown below. R 1 =1 kω. = 2.7 kω R 3 R 2 5 V Physics 310 Lab 1: DC Circuits Equipment: Digital Multimeter, 5V Supply, Breadboard, two 1 kω, 2.7 kω, 5.1 kω, 10 kω, two, Decade Resistor Box, potentiometer, 10 kω Thermistor, Multimeter Owner s Manual

More information

EE283 Laboratory Exercise 1-Page 1

EE283 Laboratory Exercise 1-Page 1 EE283 Laboratory Exercise # Basic Circuit Concepts Objectives:. To become familiar with the DC Power Supply unit, analog and digital multi-meters, fixed and variable resistors, and the use of solderless

More information

Experiment #5 Series and Parallel Resistor Circuits

Experiment #5 Series and Parallel Resistor Circuits Experiment #5 Series and Parallel Resistor Circuits Objective: You will become familiar with the MB Board and learn how to build simple DC circuits. This will introduce you to series and parallel circuits

More information

Experiment 3. Ohm s Law. Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current.

Experiment 3. Ohm s Law. Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current. Experiment 3 Ohm s Law 3.1 Objectives Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current. Construct a circuit using resistors, wires and a breadboard

More information

Experiment 2. Ohm s Law. Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current.

Experiment 2. Ohm s Law. Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current. Experiment 2 Ohm s Law 2.1 Objectives Become familiar with the use of a digital voltmeter and a digital ammeter to measure DC voltage and current. Construct a circuit using resistors, wires and a breadboard

More information

Quantizer step: volts Input Voltage [V]

Quantizer step: volts Input Voltage [V] EE 101 Fall 2008 Date: Lab Section # Lab #8 Name: A/D Converter and ECEbot Power Abstract Partner: Autonomous robots need to have a means to sense the world around them. For example, the bumper switches

More information

Part 1: DC Concepts and Measurement

Part 1: DC Concepts and Measurement EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 1 DC Concepts and Measurement: Ohm's Law, Voltage ad Current Introduction to Analog Discovery Scope Last week we introduced

More information

General Lab Notebook instructions (from syllabus)

General Lab Notebook instructions (from syllabus) Physics 310 Lab 1: DC Circuits Equipment: Digital Multimeter, 5V Supply, Breadboard, two 1 k, 2.7 k, 5.1 k, 10 k, two Decade Resistor Box, potentiometer, 10 k Thermistor, Multimeter Owner s Manual General

More information

Lab 11: Circuits. Figure 1: A hydroelectric dam system.

Lab 11: Circuits. Figure 1: A hydroelectric dam system. Description Lab 11: Circuits In this lab, you will study voltage, current, and resistance. You will learn the basics of designing circuits and you will explore how to find the total resistance of a circuit

More information

PHYS Contemporary Physics Laboratory Laboratory Exercise: LAB 01 Resistivity, Root-mean-square Voltage, Potentiometer (updated 1/25/2017)

PHYS Contemporary Physics Laboratory Laboratory Exercise: LAB 01 Resistivity, Root-mean-square Voltage, Potentiometer (updated 1/25/2017) PHYS351001 Contemporary Physics Laboratory Laboratory Exercise: LAB 01 Resistivity, Root-mean-square Voltage, Potentiometer (updated 1/25/2017) PART I: SOME FUNDAMENTAL CONCEPTS: 1. Limits on accuracy

More information

DC Circuits, Ohm's Law and Multimeters Physics 246

DC Circuits, Ohm's Law and Multimeters Physics 246 DC Circuits, Ohm's Law and Multimeters Physics 246 Theory: In this lab we will learn the use of multimeters, verify Ohm s law, and study series and parallel combinations of resistors and capacitors. For

More information

Lab #1: Electrical Measurements I Resistance

Lab #1: Electrical Measurements I Resistance Lab #: Electrical Measurements I esistance Goal: Learn to measure basic electrical quantities; study the effect of measurement apparatus on the quantities being measured by investigating the internal resistances

More information

Resistive Circuits. Lab 2: Resistive Circuits ELECTRICAL ENGINEERING 42/43/100 INTRODUCTION TO MICROELECTRONIC CIRCUITS

Resistive Circuits. Lab 2: Resistive Circuits ELECTRICAL ENGINEERING 42/43/100 INTRODUCTION TO MICROELECTRONIC CIRCUITS NAME: NAME: SID: SID: STATION NUMBER: LAB SECTION: Resistive Circuits Pre-Lab: /46 Lab: /54 Total: /100 Lab 2: Resistive Circuits ELECTRICAL ENGINEERING 42/43/100 INTRODUCTION TO MICROELECTRONIC CIRCUITS

More information

Lab 2: Blinkie Lab. Objectives. Materials. Theory

Lab 2: Blinkie Lab. Objectives. Materials. Theory Lab 2: Blinkie Lab Objectives This lab introduces the Arduino Uno as students will need to use the Arduino to control their final robot. Students will build a basic circuit on their prototyping board and

More information

ECE 2274 Lab 1 (Intro)

ECE 2274 Lab 1 (Intro) ECE 2274 Lab 1 (Intro) Richard Dumene: Spring 2018 Revised: Richard Cooper: Spring 2018 Forward (DO NOT TURN IN) The purpose of this lab course is to familiarize you with high-end lab equipment, and train

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

Ohm's Law and DC Circuits

Ohm's Law and DC Circuits Physics Lab II Ohm s Law Name: Partner: Partner: Partner: Ohm's Law and DC Circuits EQUIPMENT NEEDED: Circuits Experiment Board Two Dcell Batteries Wire leads Multimeter 100, 330, 560, 1k, 10k, 100k, 220k

More information

Name: Resistors and Basic Resistive Circuits. Objective: To gain experience with data acquisition proto-boards physical resistors. Table of Contents:

Name: Resistors and Basic Resistive Circuits. Objective: To gain experience with data acquisition proto-boards physical resistors. Table of Contents: Objective: To gain experience with data acquisition proto-boards physical resistors Table of Contents: Name: Resistors and Basic Resistive Circuits Pre-Lab Assignment 1 Background 2 National Instruments

More information

EE 210: CIRCUITS AND DEVICES

EE 210: CIRCUITS AND DEVICES EE 210: CIRCUITS AND DEVICES LAB #3: VOLTAGE AND CURRENT MEASUREMENTS This lab features a tutorial on the instrumentation that you will be using throughout the semester. More specifically, you will see

More information

Materials: resistors: (5) 1 kω, (4) 2 kω, 2.2 kω, 3 kω, 3.9 kω digital multimeter (DMM) power supply w/ leads breadboard, jumper wires

Materials: resistors: (5) 1 kω, (4) 2 kω, 2.2 kω, 3 kω, 3.9 kω digital multimeter (DMM) power supply w/ leads breadboard, jumper wires Lab 6: Electrical Engineering Technology References: 1. Resistor (electronic) color code: http://en.wikipedia.org/wiki/electronic_color_code 2. Resistor color code tutorial: http://www.michaels-electronics-lessons.com/resistor-color-code.html

More information

Workshop 9: First steps in electronics

Workshop 9: First steps in electronics King s Maths School Robotics Club Workshop 9: First steps in electronics 1 Getting Started Make sure you have everything you need to complete this lab: Arduino for power supply breadboard black, red and

More information

These are samples of learning materials and may not necessarily be exactly the same as those in the actual course. Contents 1.

These are samples of learning materials and may not necessarily be exactly the same as those in the actual course. Contents 1. Contents These are samples of learning materials and may not necessarily be exactly the same as those in the actual course. Contents 1 Introduction 2 Ohm s law relationships 3 The Ohm s law equation 4

More information

+ A Supply B. C Load D

+ A Supply B. C Load D 17 E7 E7.1 OHM'S LAW AND RESISTANCE NETWORKS OBJECT The objects of this experiment are to determine the voltage-current relationship for a resistor and to verify the series and parallel resistance formulae.

More information

HANDS-ON LAB INSTRUCTION SHEETS MODULE

HANDS-ON LAB INSTRUCTION SHEETS MODULE HANDS-ON LAB INSTRUCTION SHEETS MODULE 1 MEASURING RESISTANCE AND VOLTAGE NOTES: 1) Each student will be assigned to a unique Lab Equipment number MS01-MS30 which will match to a Tool Kit and a Radio Shack

More information

Experiment A3 Electronics I Procedure

Experiment A3 Electronics I Procedure Experiment A3 Electronics I Procedure Deliverables: Checked lab notebook, Brief technical memo Overview Most of the transducers used in modern engineering applications are electronic, meaning they convert

More information

EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment

EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment Objectives: The purpose of this laboratory is to acquaint you with the electronic sources and measuring equipment you will be using throughout

More information

Engineering Laboratory Exercises (Electric Circuits Module) Prepared by

Engineering Laboratory Exercises (Electric Circuits Module) Prepared by Engineering 1040 Laboratory Exercises (Electric Circuits Module) Prepared by Eric W. Gill FALL 2008 2 EXP 1040-EL1 VOLTAGE, CURRENT, RESISTANCE AND POWER PURPOSE To (i) investigate the relationship between

More information

Lab 1: DC Measurements (R, V, I)

Lab 1: DC Measurements (R, V, I) Lab 1: DC Measurements (R, V, I) Introduction Resistors are the most common component found in all electrical and electronic circuits. Resistors are found in many shapes, sizes, and values. The most common

More information

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering EXPERIMENT 2 BASIC CIRCUIT ELEMENTS OBJECTIVES The purpose of this experiment is to familiarize the student with

More information

Give one or two examples of electrical devices that you have personally noticed getting warm when they are turned on.

Give one or two examples of electrical devices that you have personally noticed getting warm when they are turned on. Resistors We begin by learning how to read the values of resistors and to measure the values using a digital multimeter (DMM). Resistors are the most common and simplest electrical component. In an electrical

More information

II. Experimental Procedure

II. Experimental Procedure Ph 122 July 27, 2006 Ohm's Law http://www.physics.sfsu.edu/~manuals/ph122/ I. Theory In this lab we will make detailed measurements on one resistor to see if it obeys Ohm's law. We will also verify the

More information

Experiment 3 Ohm s Law

Experiment 3 Ohm s Law Experiment 3 Ohm s Law The goals of Experiment 3 are: To identify resistors based upon their color code. To construct a two-resistor circuit using proper wiring techniques. To measure the DC voltages and

More information

Current, resistance, and Ohm s law

Current, resistance, and Ohm s law Current, resistance, and Ohm s law Apparatus DC voltage source set of alligator clips 2 pairs of red and black banana clips 3 round bulb 2 bulb sockets 2 battery holders or 1 two-battery holder 2 1.5V

More information

Lab 2.4 Arduinos, Resistors, and Circuits

Lab 2.4 Arduinos, Resistors, and Circuits Lab 2.4 Arduinos, Resistors, and Circuits Objectives: Investigate resistors in series and parallel and Kirchoff s Law through hands-on learning Get experience using an Arduino hat you need: Arduino Kit:

More information

EXAMPLE. Use this jack for the red test lead when measuring. current from 0 to 200mA. Figure P-1

EXAMPLE. Use this jack for the red test lead when measuring. current from 0 to 200mA. Figure P-1 Digital Multimeters ON / OFF power switch Continuity / Diode Test Function Resistance Function Ranges from 200Ω to 200MΩ Transistor Test Function DC Current Function Ranges from 2mA to 20A. AC Current

More information

OHM'S LAW AND RESISTANCE NETWORKS OBJECT

OHM'S LAW AND RESISTANCE NETWORKS OBJECT 17 E7 E7.1 OHM'S LAW AND RESISTANCE NETWORKS OBJECT The objects of this experiment are to determine the voltage-current relationship for a resistor and to verify the series and parallel resistance formulae.

More information

EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT

EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT EXPERIMENT 5 CURRENT AND VOLTAGE CHARACTERISTICS OF BJT 1. OBJECTIVES 1.1 To practice how to test NPN and PNP transistors using multimeter. 1.2 To demonstrate the relationship between collector current

More information

ELEG 205 Analog Circuits Laboratory Manual Fall 2016

ELEG 205 Analog Circuits Laboratory Manual Fall 2016 ELEG 205 Analog Circuits Laboratory Manual Fall 2016 University of Delaware Dr. Mark Mirotznik Kaleb Burd Patrick Nicholson Aric Lu Kaeini Ekong 1 Table of Contents Lab 1: Intro 3 Lab 2: Resistive Circuits

More information

LABORATORY MODULE. ENT 163 Fundamental of Electrical Engineering Semester 1 (2006/2007) EXPERIMENT 4: Thevenin s and Norton s Theorem

LABORATORY MODULE. ENT 163 Fundamental of Electrical Engineering Semester 1 (2006/2007) EXPERIMENT 4: Thevenin s and Norton s Theorem LABORATORY MODULE ENT 163 Fundamental of Electrical Engineering Semester 1 (2006/2007) EXPERIMENT 4: Thevenin s and Norton s Theorem Name Matrix No. : : School of Mechatronic Engineering Northern Malaysia

More information

Oregon State University Lab Session #1 (Week 3)

Oregon State University Lab Session #1 (Week 3) Oregon State University Lab Session #1 (Week 3) ENGR 201 Electrical Fundamentals I Equipment and Resistance Winter 2016 EXPERIMENTAL LAB #1 INTRO TO EQUIPMENT & OHM S LAW This set of laboratory experiments

More information

V (in volts) = voltage applied to the circuit, I (in amperes) = current flowing in the circuit, R (in ohms) = resistance of the circuit.

V (in volts) = voltage applied to the circuit, I (in amperes) = current flowing in the circuit, R (in ohms) = resistance of the circuit. OHM S LW OBJECTIES: PRT : 1) Become familiar with the use of ammeters and voltmeters to measure DC voltage and current. 2) Learn to use wires and a breadboard to build circuits from a circuit diagram.

More information

Lab 2: DC Circuits Lab Assignment

Lab 2: DC Circuits Lab Assignment 2 class days 1. I-V curve for various components Source: Curtis, 1.2.1. (HH 1.1, 1.2, 1.3) Lab 2: DC Circuits Lab Assignment A passive element is a two-contact device that contains no source of power or

More information

Module 1, Lesson 2 Introduction to electricity. Student. 45 minutes

Module 1, Lesson 2 Introduction to electricity. Student. 45 minutes Module 1, Lesson 2 Introduction to electricity 45 minutes Student Purpose of this lesson Explanations of fundamental quantities of electrical circuits, including voltage, current and resistance. Use a

More information

THE BREADBOARD; DC POWER SUPPLY; RESISTANCE OF METERS; NODE VOLTAGES AND EQUIVALENT RESISTANCE; THÉVENIN EQUIVALENT CIRCUIT

THE BREADBOARD; DC POWER SUPPLY; RESISTANCE OF METERS; NODE VOLTAGES AND EQUIVALENT RESISTANCE; THÉVENIN EQUIVALENT CIRCUIT THE BREADBOARD; DC POWER SUPPLY; RESISTANCE OF METERS; NODE VOLTAGES AND EQUIVALENT RESISTANCE; THÉVENIN EQUIVALENT CIRCUIT YOUR NAME GTA S SIGNATURE LAB MEETING TIME Objectives: To correctly operate the

More information

PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM

PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM ELECTRICAL ENGINEERING TECHNOLOGY PROGRAM EET 433 CONTROL SYSTEMS ANALYSIS AND DESIGN LABORATORY EXPERIENCES INTRODUCTION TO DIGITAL CONTROL PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM 1. INTRODUCTION

More information

EK307 Introduction to the Lab

EK307 Introduction to the Lab EK307 Introduction to the Lab Learning to Use the Test Equipment Laboratory Goal: Become familiar with the test equipment in the electronics laboratory (PHO105). Learning Objectives: Voltage source and

More information

Introduction to the Laboratory

Introduction to the Laboratory Memorial University of Newfoundland Department of Physics and Physical Oceanography Physics 2055 Laboratory Introduction to the Laboratory The purpose of this lab is to introduce you to some of the equipment

More information

// Parts of a Multimeter

// Parts of a Multimeter Using a Multimeter // Parts of a Multimeter Often you will have to use a multimeter for troubleshooting a circuit, testing components, materials or the occasional worksheet. This section will cover how

More information

Breadboard Primer. Experience. Objective. No previous electronics experience is required.

Breadboard Primer. Experience. Objective. No previous electronics experience is required. Breadboard Primer Experience No previous electronics experience is required. Figure 1: Breadboard drawing made using an open-source tool from fritzing.org Objective A solderless breadboard (or protoboard)

More information

INTRODUCTION TO ENGINEERING AND LABORATORY EXPERIENCE Spring, 2015

INTRODUCTION TO ENGINEERING AND LABORATORY EXPERIENCE Spring, 2015 INTRODUCTION TO ENGINEERING AND LABORATORY EXPERIENCE Spring, 2015 Saeid Rahimi, Ph.D. Jack Ou, Ph.D. Engineering Science Sonoma State University A SONOMA STATE UNIVERSITY PUBLICATION CONTENTS 1 Electronic

More information

University of Jordan School of Engineering Electrical Engineering Department. EE 204 Electrical Engineering Lab

University of Jordan School of Engineering Electrical Engineering Department. EE 204 Electrical Engineering Lab University of Jordan School of Engineering Electrical Engineering Department EE 204 Electrical Engineering Lab EXPERIMENT 1 MEASUREMENT DEVICES Prepared by: Prof. Mohammed Hawa EXPERIMENT 1 MEASUREMENT

More information

Analog Circuits Laboratory EXPERIMENT 3: BJT CURRENT SOURCES

Analog Circuits Laboratory EXPERIMENT 3: BJT CURRENT SOURCES EE171L rev2 1 University of California, Santa Cruz Baskin School of Engineering Electrical Engineering Department Analog Circuits Laboratory EXPERIMENT 3: BJT CURRENT SOURCES 1. DESCRIPTION AND OBJECTIVES

More information

PHYS 1402 General Physics II Experiment 5: Ohm s Law

PHYS 1402 General Physics II Experiment 5: Ohm s Law PHYS 1402 General Physics II Experiment 5: Ohm s Law Student Name Objective: To investigate the relationship between current and resistance for ordinary conductors known as ohmic conductors. Theory: For

More information

Design and Technology

Design and Technology E.M.F, Voltage and P.D E.M F This stands for Electromotive Force (e.m.f) A battery provides Electromotive Force An e.m.f can make an electric current flow around a circuit E.m.f is measured in volts (v).

More information

Voltage Dividers a learn.sparkfun.com tutorial

Voltage Dividers a learn.sparkfun.com tutorial Voltage Dividers a learn.sparkfun.com tutorial Available online at: http://sfe.io/t44 Contents Introduction Ideal Voltage Divider Applications Extra Credit: Proof Resources and Going Further Introduction

More information

The Art of Electrical Measurements

The Art of Electrical Measurements The Art of Electrical Measurements Purpose: Introduce fundamental electrical test and measurement tools and the art of making electrical measurements. Equipment Required Prelab 1 Digital Multimeter 1 -

More information

Ohm s and Kirchhoff s Circuit Laws. Abstract. Introduction and Theory. EE 101 Spring 2006 Date: Lab Section #: Lab #2

Ohm s and Kirchhoff s Circuit Laws. Abstract. Introduction and Theory. EE 101 Spring 2006 Date: Lab Section #: Lab #2 EE 101 Spring 2006 Date: Lab Section #: Lab #2 Name: Ohm s and Kirchhoff s Circuit Laws Abstract Rev. 20051222JPB Partner: Electrical circuits can be described with mathematical expressions. In fact, it

More information

Introduction to Electronics. Dr. Lynn Fuller

Introduction to Electronics. Dr. Lynn Fuller ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING Introduction to Electronics Dr. Lynn Fuller Webpage: http://www.rit.edu/~lffeee 82 Lomb Memorial Drive Rochester, NY 14623-5604 Tel (585) 475-2035

More information

Experiment 1A. Integrated Laboratory Experiment CHEMICAL INSTRUMENTATION PART A. ELECTRONIC INSTRUMENTATION

Experiment 1A. Integrated Laboratory Experiment CHEMICAL INSTRUMENTATION PART A. ELECTRONIC INSTRUMENTATION CH 461 & 461H Name OREGON STATE UNIVERSITY Experiment 1A DEPARTMENT OF CHEMISTRY Integrated Laboratory Experiment CHEMICAL INSTRUMENTATION PART A. ELECTRONIC INSTRUMENTATION I. Introduction 2 II. General

More information

Programmable Timer Teaching Notes Issue 1.2

Programmable Timer Teaching Notes Issue 1.2 Teaching Notes Issue 1.2 Product information: www.kitronik.co.uk/quicklinks/2121/ TEACHER Programmable Timer Index of sheets Introduction Schemes of work Answers The Design Process The Design Brief Investigation

More information

The preferred Exercise is shown in Exercises 5B or 5C.

The preferred Exercise is shown in Exercises 5B or 5C. ECE 231 Laboratory Exercise 5A The preferred Exercise is shown in Exercises 5B or 5C. Laboratory Group (Names) OBJECTIVES Validate the Schottky diode equation. Calculate the dc and dynamic (ac) resistance

More information

Lab Equipment EECS 311 Fall 2009

Lab Equipment EECS 311 Fall 2009 Lab Equipment EECS 311 Fall 2009 Contents Lab Equipment Overview pg. 1 Lab Components.. pg. 4 Probe Compensation... pg. 8 Finite Instrumentation Impedance. pg.10 Simulation Tools..... pg. 10 1 - Laboratory

More information

Laboratory 2 More Resistor Networks and Potentiometers.

Laboratory 2 More Resistor Networks and Potentiometers. Laboratory More Resistor Networks and Potentiometers. Introduction Laboratory page of 5 This is a relatively short laboratory, because you will also be assembling your Micro-BLIP, a customized device based

More information

EK 307 Lab: Light-Emitting Diodes. In-lab Assignment (Complete Level 1 and additionally level 2 if you choose to):

EK 307 Lab: Light-Emitting Diodes. In-lab Assignment (Complete Level 1 and additionally level 2 if you choose to): EK 307 Lab: Light-Emitting Diodes Laboratory Goal: To explore the characteristics of the light emitting diode. Learning Objectives: Voltage, Current, Power, and Instrumentation. Suggested Tools: Voltage

More information

Electric Circuit Experiments

Electric Circuit Experiments Electric Circuit Experiments 1. Using the resistor on the 5-resistor block, vary the potential difference across it in approximately equal increments for eight different values (i.e. use one to eight D-

More information

ECE 2274 Lab 2 (Network Theorems)

ECE 2274 Lab 2 (Network Theorems) ECE 2274 Lab 2 (Network Theorems) Forward (DO NOT TURN IN) You are expected to use engineering exponents for all answers (p,n,µ,m, N/A, k, M, G) and to give each with a precision between one and three

More information

Ohm s Law and Electrical Circuits

Ohm s Law and Electrical Circuits Ohm s Law and Electrical Circuits INTRODUCTION In this experiment, you will measure the current-voltage characteristics of a resistor and check to see if the resistor satisfies Ohm s law. In the process

More information

ELEG 205 Analog Circuits Laboratory Manual Fall 2017

ELEG 205 Analog Circuits Laboratory Manual Fall 2017 ELEG 205 Analog Circuits Laboratory Manual Fall 2017 University of Delaware Dr. Mark Mirotznik Kaleb Burd Aric Lu Patrick Nicholson Colby Banbury Table of Contents Policies Policy Page 3 Labs Lab 1: Intro

More information

Laboratory 4: Amplification, Impedance, and Frequency Response

Laboratory 4: Amplification, Impedance, and Frequency Response ES 3: Introduction to Electrical Systems Laboratory 4: Amplification, Impedance, and Frequency Response I. GOALS: In this laboratory, you will build an audio amplifier using an LM386 integrated circuit.

More information

Revision: Jan 29, E Main Suite D Pullman, WA (509) Voice and Fax

Revision: Jan 29, E Main Suite D Pullman, WA (509) Voice and Fax Revision: Jan 29, 2011 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview The purpose of this lab assignment is to provide users with an introduction to some of the equipment which

More information

Pre-Laboratory Assignment

Pre-Laboratory Assignment Measurement of Electrical Resistance and Ohm's Law PreLaboratory Assignment Read carefully the entire description of the laboratory and answer the following questions based upon the material contained

More information

Measuring Voltage, Current & Resistance Building: Resistive Networks, V and I Dividers Design and Build a Resistance Indicator

Measuring Voltage, Current & Resistance Building: Resistive Networks, V and I Dividers Design and Build a Resistance Indicator ECE 3300 Lab 2 ECE 1250 Lab 2 Measuring Voltage, Current & Resistance Building: Resistive Networks, V and I Dividers Design and Build a Resistance Indicator Overview: In Lab 2 you will: Measure voltage

More information

Lab Exercise 6: Digital/Analog conversion

Lab Exercise 6: Digital/Analog conversion Lab Exercise 6: Digital/Analog conversion Introduction In this lab exercise, you will study circuits for analog-to-digital and digital-to-analog conversion Preparation Before arriving at the lab, you should

More information

AME140 Lab #2 INTRODUCTION TO ELECTRONIC TEST EQUIPMENT AND BASIC ELECTRONICS MEASUREMENTS

AME140 Lab #2 INTRODUCTION TO ELECTRONIC TEST EQUIPMENT AND BASIC ELECTRONICS MEASUREMENTS INTRODUCTION TO ELECTRONIC TEST EQUIPMENT AND BASIC ELECTRONICS MEASUREMENTS The purpose of this document is to guide students through a few simple activities to increase familiarity with basic electronics

More information

ECE ECE285. Electric Circuit Analysis I. Spring Nathalia Peixoto. Rev.2.0: Rev Electric Circuits I

ECE ECE285. Electric Circuit Analysis I. Spring Nathalia Peixoto. Rev.2.0: Rev Electric Circuits I ECE285 Electric Circuit Analysis I Spring 2014 Nathalia Peixoto Rev.2.0: 140124. Rev 2.1. 140813 1 Lab reports Background: these 9 experiments are designed as simple building blocks (like Legos) and students

More information

University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS

University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS Issued 10/5/2008 Pre Lab Completed 10/12/2008 Lab Due in Lecture 10/21/2008 Introduction In this lab you will characterize

More information

Electronics & Control

Electronics & Control Electronics & Control Analogue Electronics Introduction By the end of this unit you should be able to: Know the difference between a series and parallel circuit Measure voltage in a series circuit Measure

More information

Lab 4 Ohm s Law and Resistors

Lab 4 Ohm s Law and Resistors ` Lab 4 Ohm s Law and Resistors What You Need To Know: The Physics One of the things that students have a difficult time with when they first learn about circuits is the electronics lingo. The lingo and

More information

Ohm s Law. Equipment. Setup

Ohm s Law. Equipment. Setup rev 05/2018 Ohm s Law Equipment Qty Item Part Number 1 AC/DC Electronics Laboratory EM-8656 1 Current Sensor CI-6556 1 Multimeter 4 Patch Cords 2 Banana Clips 1 100Ω Resistor Purpose The purpose of this

More information

Lab #1 Help Document. This lab will be completed in room 335 CTB. You will need to partner up for this lab in groups of two.

Lab #1 Help Document. This lab will be completed in room 335 CTB. You will need to partner up for this lab in groups of two. Lab #1 Help Document This help document will be structured as a walk-through of the lab. We will include instructions about how to write the report throughout this help document. This lab will be completed

More information

Resistance and Resistivity

Resistance and Resistivity Resistance and Resistivity Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Name: Partners: Pre-Lab You are required to finish this section before coming to the lab it will be checked

More information

Nano v3 pinout 19 AUG ver 3 rev 1.

Nano v3 pinout 19 AUG ver 3 rev 1. Nano v3 pinout NANO PINOUT www.bq.com 19 AUG 2014 ver 3 rev 1 Nano v3 Schematic Reserved Words Standard Arduino ( C / C++ ) Reserved Words: int byte boolean char void unsigned word long short float double

More information

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K.

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Roberts Page 1 See Appendix A, for Licensing Attribution information

More information

Resistance Measurements (Measure all of your resistors, since even those that are labeled the same can be at least a little different)

Resistance Measurements (Measure all of your resistors, since even those that are labeled the same can be at least a little different) Resistors We begin by learning how to read the values of resistors and to measure the values using a digital multimeter (DMM). Resistors are the most common and simplest electrical component. In an electrical

More information

EET 150 Introduction to EET Lab Activity 12 Temperature Sensor Amplifier Project

EET 150 Introduction to EET Lab Activity 12 Temperature Sensor Amplifier Project Required Parts, Software and Equipment Parts EET 150 Introduction to EET Lab Activity 12 Temperature Sensor Amplifier Project Figure 1 Flasher Circuit Component /alue Quantity LM741 OP AMP Integrated Circuit

More information

ECE 2274 Lab 2. Your calculator will have a setting that will automatically generate the correct format.

ECE 2274 Lab 2. Your calculator will have a setting that will automatically generate the correct format. ECE 2274 Lab 2 Forward (DO NOT TURN IN) You are expected to use engineering exponents for all answers (p,n,µ,m, N/A, k, M, G) and to give each with a precision between one and three leading digits and

More information

DARK ACTIVATED COLOUR CHANGING NIGHT LIGHT KIT

DARK ACTIVATED COLOUR CHANGING NIGHT LIGHT KIT TEACHING RESOURCES SCHEMES OF WORK DEVELOPING A SPECIFICATION COMPONENT FACTSHEETS HOW TO SOLDER GUIDE CREATE SOOTHING LIGHTING EFFECTS WITH THIS DARK ACTIVATED COLOUR CHANGING NIGHT LIGHT KIT Version

More information

TLE9879 EvalKit V1.2 Users Manual

TLE9879 EvalKit V1.2 Users Manual TLE9879 EvalKit V1.2 Users Manual Contents Abbreviations... 3 1 Concept... 4 2 Interconnects... 5 3 Test Points... 6 4 Jumper Settings... 7 5 Communication Interfaces... 8 5.1 LIN (via Banana jack and

More information

Laboratory Project 1a: Power-Indicator LED's

Laboratory Project 1a: Power-Indicator LED's 2240 Laboratory Project 1a: Power-Indicator LED's Abstract-You will construct and test two LED power-indicator circuits for your breadboard in preparation for building the Electromyogram circuit in Lab

More information

Product overview. Features. Product specifications. Order codes. 1kΩ Resistance Output Module

Product overview. Features. Product specifications. Order codes. 1kΩ Resistance Output Module Product overview The AX-ROM135 and the AX-ROM1000 Modules enable an Analogue, Pulse or Floating point signal and convert to either a 0-135Ω or a 1KΩ Proportional Resistive output signal. The output resistance

More information

Physics 120 Lab 1 (2018) - Instruments and DC Circuits

Physics 120 Lab 1 (2018) - Instruments and DC Circuits Physics 120 Lab 1 (2018) - Instruments and DC Circuits Welcome to the first laboratory exercise in Physics 120. Your state-of-the art equipment includes: Digital oscilloscope w/usb output for SCREENSHOTS.

More information

Notes on Experiment #2

Notes on Experiment #2 Notes on Experiment #2 The purpose of this experiment is to get some practice measuring voltage using the oscilloscope. You will be practicing direct and differential measuring techniques. You will also

More information

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment.

For this exercise, you will need a partner, an Arduino kit (in the plastic tub), and a laptop with the Arduino programming environment. Physics 222 Name: Exercise 6: Mr. Blinky This exercise is designed to help you wire a simple circuit based on the Arduino microprocessor, which is a particular brand of microprocessor that also includes

More information

Class #3: Experiment Signals, Instrumentation, and Basic Circuits

Class #3: Experiment Signals, Instrumentation, and Basic Circuits Class #3: Experiment Signals, Instrumentation, and Basic Circuits Purpose: The objectives of this experiment are to gain some experience with the tools we use (i.e. the electronic test and measuring equipment

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

Laboratory Project 1: Design of a Myogram Circuit

Laboratory Project 1: Design of a Myogram Circuit 1270 Laboratory Project 1: Design of a Myogram Circuit Abstract-You will design and build a circuit to measure the small voltages generated by your biceps muscle. Using your circuit and an oscilloscope,

More information

LogicBlocks & Digital Logic Introduction

LogicBlocks & Digital Logic Introduction Page 1 of 10 LogicBlocks & Digital Logic Introduction Introduction Get up close and personal with the driving force behind the world of digital electronics - digital logic! The LogicBlocks kit is your

More information

OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE. ISO-STIM 01D STIMULUS ISOLATION UNIT ±100 V / ±10 ma, bipolar output

OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE. ISO-STIM 01D STIMULUS ISOLATION UNIT ±100 V / ±10 ma, bipolar output OPERATING INSTRUCTIONS AND SYSTEM DESCRIPTION FOR THE ISO-STIM 01D STIMULUS ISOLATION UNIT ±100 V / ±10 ma, bipolar output VERSION 4.0 npi 2014 npi electronic GmbH, Bauhofring 16, D-71732 Tamm, Germany

More information

Amplification. Objective. Equipment List. Introduction. The objective of this lab is to demonstrate the basic characteristics an Op amplifier.

Amplification. Objective. Equipment List. Introduction. The objective of this lab is to demonstrate the basic characteristics an Op amplifier. Amplification Objective The objective of this lab is to demonstrate the basic characteristics an Op amplifier. Equipment List Introduction Computer running Windows (NI ELVIS installed) National Instruments

More information