Part 1. Using LabVIEW to Measure Current

Size: px
Start display at page:

Download "Part 1. Using LabVIEW to Measure Current"

Transcription

1 NAME EET 2259 Lab 11 Studying Characteristic Curves with LabVIEW OBJECTIVES -Use LabVIEW to measure DC current. -Write LabVIEW programs to display the characteristic curves of resistors, diodes, and transistors studied in previous electronics courses. Part 1. Using LabVIEW to Measure Current Up to now, you ve used LabVIEW to measure voltage, but not current. In fact, the mydaq cannot directly measure current. But we ll use a standard trick to make indirect current measurements. The trick is to insert a small resistor of known value into our circuit, then measure the voltage across the resistor, and then use Ohm s law (I = V R) to compute the current. This new resistor is often called a sensing resistor. First, use your knowledge of DC circuits to answer this question: In the circuit shown here, suppose the voltage source is 10 V, and R1 = 10 kω, R2 = 20 kω, and R3 = 20 kω. How much current will pass through R3? R1 R2 R3 Now let s think about how to use the mydaq to measure the current through resistor R3. Using the trick mentioned above, we ll insert a sensing resistor in series with R3, then measure this new resistor s voltage drop, and then use Ohm s law to find the current through the new resistor. Since the new resistor is in series with R3, this computed current must be equal to R3 s current. R1 R2 Rsense R3 Notice several important points: By inserting a new resistor, we re changing the circuit, and therefore changing the current that we re trying to measure. But if we choose R sense to be much smaller than the other resistors, then the change that we introduce will be very small. We must be sure to place the sensing resistor in series with the component whose current we re trying to measure. In the circuit above, if we inserted the sensing resistor between the voltage source and R1, then we d be measuring R1 s current, not R3 s current. You might wonder why we should insert a new resistor at all. For example, if we want to know R3 s current, then why not just measure R3 s voltage and divide by R3 s resistance to find the current? That s a smart idea, and in some cases it will give us an acceptable answer. But here are two possible drawbacks to doing it this way: EET 2259 Lab 11 Page 1 Revised 12/18/2017

2 a. Sometimes the component whose current we re trying to find is not a resistor. It might be a diode or a transistor. Ohm s law does not apply to such components, but we can still use our trick by inserting a small sensing resistor in series with the component. b. Most resistors in most circuits are not precision resistors, so we probably only know their resistance value to within 5%. And this resistance value can vary with time, temperature, and applied voltage. By using a precision sensing resistor whose resistance is constant to within 1% (or even better), we can get more accurate results. Let s put our trick to work in the circuit above. Hardware Setup: 1. Build the circuit (including the sensing resistor, whose value is 10 Ω) on a breadboard. For the DC voltage source, do not use a power supply; rather, use the mydaq s analog output AO0. In other words, use the mydaq s AO0 terminal for the voltage source s + terminal in the diagram above, and use the mydaq s AGND terminal for the terminal. 2. Run wires from the two ends of the sensing resistor to the mydaq s AI0+ and AI0 analog inputs. Observe the correct polarity; in other words, connect the more positive end of the resistor to AI0+ and the more negative end to AI0. Do not connect jumper wires between the mydaq s AGND terminal and any of its other terminals. LabVIEW Program: 3. Create a new VI whose front panel contains a numeric indicator labeled I3. Configure it to display values in engineering notation, rounded to 3 significant digits. 4. On the block diagram place a DAQ Assistant inside a while loop with a 0.5-second delay. This DAQ Assistant s job is to generate the source voltage, so configure it to perform an analog output of 10 V. 5. Inside the loop place another DAQ Assistant, whose job will be to measure the current. In this DAQ Assistant s dialog box, choose Acquire Signals > Analog Input > Current. Then select input channel ai0 and click Finish. a. The dialog box for configuring the DAQ Assistant should look familiar, but notice that it has two boxes you haven t seen before: one labeled Shunt Resistor and one labeled Resistor Value (ohms). The term shunt resistor is another name for a sensing resistor. LabVIEW knows that to measure current, we ll be playing our little trick of inserting a sensing resistor. When we run this VI, LabVIEW will take the measured voltage across this sensing resistor and divide by its resistance, to compute the current. In other words, it will automatically do the Ohm s law calculation (I = V R) for us and then report the answer. b. Make sure that Shunt Resistor is set to External, and set Resistor Value (ohms) to 10. c. As usual, change Acquisition Mode to 1 Sample (On Demand). d. Click the OK button. 6. Wire the DAQ Assistant s data terminal through a From DDT to your numeric indicator. EET 2259 Lab 11 Page 2 Revised 12/18/2017

3 7. Run the VI. The displayed value should be very close to the current that you predicted above. Save this VI as Lab11MeasureDCCurrent.vi and show me your working program. Part 2. Characteristic Curves of Passive Linear Components An electronic component s I-V curve or characteristic curve is a graph plotting the component s current (on the vertical axis) versus the component s voltage (on the horizontal axis). For example, the following figure, taken from your DC Circuits textbook, shows that a resistor s I-V curve is a slant line. On the other hand, a transistor is a more complicated device. A family of characteristic curves for a transistor shows how its collector current (I C ) varies with its collector-emitter voltage (V CE ). The following figure from your Electronics textbook is typical. In your previous courses you have performed labs in which, by taking many measurements by hand, you were able to plot a component s I-V curve. But we can use LabVIEW to automate this process and quickly plot the curve. Here s an outline of the general procedure we ll use to plot a component s characteristic curve. EET 2259 Lab 11 Page 3 Revised 12/18/2017

4 A. Connect a sensing resistor in series with the component. B. Using an analog-out DAQ Assistant, generate a voltage across the series combination (resistor-plus-component). C. Using an analog-in DAQ Assistant, measure the voltage across the component and the current through the sensing resistor (which equals the current through the component). This pair of measurements provides one data point on the characteristic curve. D. Collect additional data points by repeating steps B and C several times, changing the output voltage from the analog-out DAQ Assistant each time. E. Create a table that lists the data values. Also plot the data points on an XY graph (with voltage on the horizontal axis and current on the vertical). Let s start by plotting the characteristic curve of a 4.7-kΩ resistor. Hardware Setup: 1. On a breadboard, place a 4.7-kΩ resistor in series with a 10-Ω sensing resistor. For the DC voltage source across this series combination, use the mydaq s analog output AO0 rather than a power supply. 2. Observing the correct polarity, run wires from the ends of the sensing resistor to the mydaq s AI0+ and AI0 analog inputs. 3. Observing the correct polarity, run wires from the ends of the 4.7-kΩ resistor to the mydaq s AI1+ and AI1 analog inputs. Do not connect jumper wires between the mydaq s AGND terminal and any of its other terminals. LabVIEW program: 4. Create a new VI whose front panel contains a 2-D array of numeric indicators and an Express XY Graph. Resize the array and make its vertical scrollbar visible, as shown below. Also change the labels on the array and graph to match the ones shown below. Also, configure your numeric indicators to display their contents in engineering notation with 3 significant digits. EET 2259 Lab 11 Page 4 Revised 12/18/2017

5 5. Wire the VI s block diagram to look like the one shown below. Most of this should be familiar to you from previous programs, but read on for discussion of a few unfamiliar points. 6. Note that the first DAQ Assistant s error out output is wired to the second DAQ Assistant s error in input. This technique is commonly used in LabVIEW to ensure that two pieces of code execute in a particular order. In this program, we want to make sure that each time through the loop we first set the source voltage (with DAQ Assistant #1), and then make our measurements (with DAQ Assistant #2). A sequence structure is another way to force code to execute in a particular order, but using error wires is considered better programming practice. 7. There s nothing new or unusual about the way DAQ Assistant #1 is configured; it s just set up to perform analog voltage output on channel AO0. 8. DAQ Assistant #2 is configured to perform both a voltage measurement and a current measurement. Here s how to set up this DAQ Assistant: a. Place a DAQ Assistant on the block diagram. When its dialog box comes up, select Acquire Signals > Analog Input > Voltage. Then select channel ai1, and then press the Finish button. b. On the next screen, set Acquisition Mode to 1 Sample (On Demand). But don t press the OK button yet. c. Near the top of this screen, press the blue plus sign labeled Add Channels. d. From the drop-down menu that appears, select Current. Then select channel ai0, and press the OK button. e. In the resulting screen (shown below) notice that the Channel Settings box (halfway down on the left side) lists two measurements: Voltage and Current. In the picture below, Current is highlighted; therefore, the settings visible to the right are for this current measurement. If you wanted to change the settings for the other measurement, you would click the word Voltage. Try switching back and forth between Voltage and Current, and notice how the settings to the right change when you do this. EET 2259 Lab 11 Page 5 Revised 12/18/2017

6 f. For the current measurement, make sure that Shunt Resistor is set to External. Change Resistor Value (ohms) to 10. Then press the OK button to close the DAQ Assistant s configuration screen. 9. Returning to the block diagram shown on the previous page, there s one more new feature. Notice that, although DAQ Assistant #2 is configured to perform two measurements, there s only one data output coming out of the DAQ Assistant. The data for our two measurements are packed together onto a single wire. How do we separate them from each other? We do this by choosing the correct settings in the From DDTs that we connect to the DAQ Assistant. This is why I ve wired a 0 into the Channel input on the first From DDT, but I ve wired a 1 into the Channel input on the second From DDT. (You could do the same thing by changing the value in the Channel box on the From DDT s dialog box, as shown below.) By the way, do not confuse these channel numbers (0 and 1) with the physical channels of the measurements (ai0 and ai1). The From DDT doesn t know or care about physical channels on the mydaq. It only knows that the output from the DAQ EET 2259 Lab 11 Page 6 Revised 12/18/2017

7 Assistant carries data for two measurements. It calls one of these Channel 0 and the other one Channel You should now be able to finish wiring the block diagram shown a couple of pages ago. 11. Run the program, and you should find that the graph of the data points is a line rising to the right, as in the I-V curve for a resistor on page 3 of this lab. You should also find that the 2-D array on the VI s front panel contains 101 pairs of voltage and current values. On most rows in the array (particularly after the array s first 20 or so rows), dividing the voltage by the current should give a result close to your resistor value. (Remember that, for a resistor, V I = R.) Get a printout of the front panel, and turn it in with this lab. 12. Save this VI as Lab11ResistorCharacteristicCurve.vi and show me your working program. Part 3. Characteristic Curves of Diodes As you know from previous courses, a diode is a non-linear device, so its characteristic curve is not a slant line like the one you just obtained for a resistor. But the LabVIEW program that you just wrote for resistors can also be used to plot a diode s characteristic curve. In fact, with a minor modification that we ll make below, this program can be used to plot the characteristic curve of any two-terminal device. Hardware Setup: 1. On a breadboard, build the circuit shown below, using a general-purpose rectifier diode such as a 1N4003. Note that this circuit contains two resistors. One of these is our 10- ohm sensing resistor, which serves the same purpose here as in previous circuits. The other, larger resistor s purpose is to limit the circuit s current so that we don t burn out the diode (and also so that we don t exceed the mydaq s current-producing abilities). As in previous circuits, use the mydaq s analog output AO0, instead of a power supply, for the DC voltage source. 2. Observing the correct polarity, connect wires from the ends of the sensing resistor to the mydaq s AI0+ and AI0 analog inputs. 3. Observing the correct polarity, connect wires from the ends of the diode to the mydaq s AI1+ and AI1 analog inputs. You do not need to connect jumper wires between the mydaq s AGND terminal and any of its other terminals. LabVIEW program: 4. As mentioned above, the same program that we used for our resistor s characteristic curve will also work for the diode. So run the program now. The resulting curve on the graph should look familiar from your study of diodes. EET 2259 Lab 11 Page 7 Revised 12/18/2017

8 5. Show me your working program. 6. Notice that our program starts with a source voltage of 0 V and then gradually increases it to +10 V. It might be interesting to include some negative voltages as well as positive voltages. Before modifying the program to do this, let s think about how this will change the appearance of our plotted curve. Based on your knowledge of diodes, approximately how much current flows through a standard diode when it is reverse-biased (in other words, when its anode is more negative than its cathode)? 7. Based on the answer you just gave, you should be able to picture what the diode curve will look like if we extend it to the left, into negative-voltage territory. Sketch your predicted curve below, including horizontal and vertical axes with labels. 8. Save a copy of your program, naming it Lab11TwoTerminalCharacteristicCurve.vi. Then modify the program so that instead of varying the source voltage from 0 V to 10 V in 0.1 V steps, it varies the source voltage from -10 V to 10 V in 0.1 V steps. 9. Run the program, and see whether it matches your predicted curve. Get a printout of the front panel, and turn it in with this lab. 10. Save this VI as Lab11TwoTerminalCharacteristicCurve.vi and show me your working program. 11. Now replace the 1N4001 general-purpose diode with a 1N4735 zener diode, which has a breakdown voltage of about 6.2 V. Based on your understanding of zener diodes, you should be able to picture what this diode s curve will look like. 12. Run the program. Get a printout of the front panel, and turn it in with this lab. Show me your working program. EET 2259 Lab 11 Page 8 Revised 12/18/2017

9 Part 4. Characteristic Curves of Transistors Before we modify our program to draw transistor characteristic curves like the one on page 3 of this lab, let s think about how such a program will have to differ from the one we ve got right now. The main difference is that in our existing program, there s only one voltage that we need to vary: namely, the voltage across the entire series circuit. So we needed one DAQ Assistant to produce this varying voltage, and another DAQ Assistant to measure the current and voltage values that we plotted as the characteristic curve. To plot a transistor s characteristic curves, we need to vary two voltages independently of each other: the transistor s base supply voltage V BB and its collector supply voltage V CC. This is clear from the figure below from your Electronics textbook, which shows that V BB and V CC are both variable voltage sources. From your previous courses you should recall that by leaving V BB set to a particular value and varying V CC from 0 to some maximum value, we get the data points that make up a single collector curve. Then by setting V BB to another fixed value and again varying V CC from 0 to some maximum value, we get the data points that make up a second collector curve. And so on. For example, the figure below shows seven collector curves, each of which was obtained by varying V CC while V BB was set to a fixed value. Here s an outline of the general procedure we ll use to plot a family of transistor characteristic curve. (Compare this to our earlier, simpler outline on page 4.) EET 2259 Lab 11 Page 9 Revised 12/18/2017

10 A. Build the circuit shown in figure (a) above, inserting a sensing resistor in series with the collector resistor. B. Using an analog-out DAQ Assistant, generate a value for V BB. (This voltage will remain constant through steps C, D, E, and F below.) C. Using another analog-out DAQ Assistant, generate a value for V CC. D. Using an analog-in DAQ Assistant, measure the collector-emitter voltage V CE and the collector current I C. This pair of measurements provides one data point on one collector curve. E. Collect additional data points for this collector curve by repeating steps C and D several times, using the second analog-out DAQ Assistant to vary V CC each time. F. Plot the data points on an XY graph (with V CE on the horizontal axis and I C on the vertical). This completes one collector curve. G. Create and plot additional collector curves by repeating steps B through F several times, using the first analog-out DAQ Assistant to vary V BB each time. If you followed that verbal statement of our task, it should be clear that we ll need a For Loop within a For Loop: steps C through E form an inner loop in which we re varying the value of V CC each time through the loop. Steps B through G form an outer loop in which we re varying the value of V BB each time through the loop. Your existing program called Lab11ResistorCharacteristicCurve.vi already provides the inner loop (steps C through E) and step F. To see that the existing program will plot a single characteristic curve, follow these steps. Hardware Setup: 1. On a breadboard, build the circuit shown on the previous page, using the following values: R B = 470 kω R C = 220 Ω, and also insert your 10 Ω sensing resistor in series with R C V BB = 5 V from the mydaq s +5V terminal V CC = the mydaq s analog output AO0 transistor = 2N Make sure that you haven t shorted either supply voltage to ground. Ask me to check your circuit before proceeding. 3. Observing the correct polarity, connect wires from the ends of the sensing resistor to the mydaq s AI0+ and AI0 analog inputs. 4. Observing the correct polarity, connect wires so that the mydaq s AI1 measures the transistor s V CE. (Connect the collector to AI1+ and connect the emitter to AI1.) Do not connect jumper wires between the mydaq s AGND terminal and any of its other terminals. LabVIEW program: 5. Save a copy of Lab11ResistorCharacteristicCurve.vi, naming this new copy Lab11TransistorCollectorCurves.vi. 6. Run the program, and you should see a single collector curve plotted on the XY graph. EET 2259 Lab 11 Page 10 Revised 12/18/2017

11 7. Show me your working program. Now we need to add a big outer loop to implement steps B and G of the algorithm on the previous page. First, we need to change the hardware so that LabVIEW can vary the base supply voltage V BB, instead of using a fixed 5 V as we did above. Hardware Setup: 1. Remove the wire connecting the transistor s base resistor to the mydaq s +5V terminal. 2. In place of this wire, connect the transistor s base resistor to the mydaq s analog output AO1. 3. Make sure that you haven t shorted either supply voltage to ground. Ask me to check your circuit before proceeding. LabVIEW program: 4. We no longer need to see a list of values on the front panel, so delete the 2-D array of numeric indicators on the front panel, and delete any associated code on the block diagram. 5. On your block diagram, add a For Loop that completely surrounds the existing For Loop (but doesn t surround the XY graph and the To DDTs connected to it). 6. The previous step will break the wires going into the To DDTs. To fix this, edit the To DDTs and change their Input data type to 2D array of scalars rows are channels. By making this change, you re telling the To DDTs that they are being passed a 2D array of numbers, and that each row of this 2D array should be plotted as a separate plot. 7. In the outer loop, place a DAQ Assistant and configure it to produce an analog output voltage on channel ao1. (Recall that this is the output channel connected to the transistor s base resistor.) 8. To ensure that the new DAQ Assistant runs before the inner loop, wire the new DAQ Assistant s error out output to the error in input of the first DAQ Assistant inside the inner loop. 9. Add code that will cause the outer loop to run five times, increasing the new DAQ Assistant s voltage from 1 V to 5 V in 1 V steps. 10. Run the program, and you should get a family of collector curves similar to the ones shown earlier. Get a printout of the front panel, and turn it in with this lab. 11. Save this VI as Lab11TransistorCollectorCurves.vi and show me your working program. *** This lab had 4 named programs for me to check. If you didn t finish all of these during class, finish them after class. Then upload all 4 programs, along with any related subvis, to the website by the due date. Also turn in your lab sheets at the beginning of class.**** EET 2259 Lab 11 Page 11 Revised 12/18/2017

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

Experiment 15: Diode Lab Part 1

Experiment 15: Diode Lab Part 1 Experiment 15: Diode Lab Part 1 Purpose Theory Overview EQUIPMENT NEEDED: Computer and Science Workshop Interface Power Amplifier (CI-6552A) (2) Voltage Sensor (CI-6503) AC/DC Electronics Lab Board (EM-8656)

More information

Auntie Spark s Guide to creating a Data Collection VI

Auntie Spark s Guide to creating a Data Collection VI Auntie Spark s Guide to creating a Data Collection VI Suppose you wanted to gather data from an experiment. How would you create a VI to do so? For sophisticated data collection and experimental control,

More information

Experiment P48: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Amplifier, Voltage Sensor)

Experiment P48: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Amplifier, Voltage Sensor) PASCO scientific Vol. 2 Physics Lab Manual: P48-1 Experiment P48: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Amplifier, Voltage Sensor) Concept Time SW Interface Macintosh file Windows

More information

Activity P55: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Output, Voltage Sensor)

Activity P55: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Output, Voltage Sensor) Activity P55: Transistor Lab 1 The NPN Transistor as a Digital Switch (Power Output, Voltage Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Semiconductors P55 Digital Switch.DS

More information

Activity P56: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Output, Voltage Sensor)

Activity P56: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Output, Voltage Sensor) Activity P56: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Output, Voltage Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Semiconductors P56 Emitter

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

Using Signal Express to Automate Analog Electronics Experiments

Using Signal Express to Automate Analog Electronics Experiments Session 3247 Using Signal Express to Automate Analog Electronics Experiments B.D. Brannaka, J. R. Porter Engineering Technology and Industrial Distribution Texas A&M University, College Station, TX 77843

More information

PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits

PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits Reading Assignment Horowitz, Hill Chap. 1.25 1.31 (p35-44) Data sheets 1N4007 & 1N4735A diodes Laboratory Goals PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits In today s lab activities,

More information

EET 1150 Lab 6 Ohm s Law

EET 1150 Lab 6 Ohm s Law Name EQUIPMENT and COMPONENTS Digital Multimeter Trainer with Breadboard Resistors: 220, 1 k, 1.2 k, 2.2 k, 3.3 k, 4.7 k, 6.8 k Red light-emitting diode (LED) EET 1150 Lab 6 Ohm s Law In this lab you ll

More information

EK 307 Lab: Light-Emitting Diodes

EK 307 Lab: Light-Emitting Diodes 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

Component modeling. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Component modeling. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Component modeling This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Introduction PNP C NPN C

Introduction PNP C NPN C Introduction JT Transistors: A JT (or any transistor) can be used either as a switch with positions of on or off, or an amplifier that controls its output at all levels in between the extreme on or off

More information

Class #9: Experiment Diodes Part II: LEDs

Class #9: Experiment Diodes Part II: LEDs Class #9: Experiment Diodes Part II: LEDs Purpose: The objective of this experiment is to become familiar with the properties and uses of LEDs, particularly as a communication device. This is a continuation

More information

Experiment P49: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Amplifier, Voltage Sensor)

Experiment P49: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Amplifier, Voltage Sensor) PASCO scientific Vol. 2 Physics Lab Manual: P49-1 Experiment P49: Transistor Lab 2 Current Gain: The NPN Emitter-Follower Amplifier (Power Amplifier, Voltage Sensor) Concept Time SW Interface Macintosh

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

2-Terminal Device Characteristics and Diode Characterization

2-Terminal Device Characteristics and Diode Characterization Laboratory-1 2-Terminal Device Characteristics and Diode Characterization Introduction The objectives of this experiment are to learn methods for characterizing 2- terminal devices, such as diodes, observe

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

Electronics. RC Filter, DC Supply, and 555

Electronics. RC Filter, DC Supply, and 555 Electronics RC Filter, DC Supply, and 555 0.1 Lab Ticket Each individual will write up his or her own Lab Report for this two-week experiment. You must also submit Lab Tickets individually. You are expected

More information

Applications of diodes

Applications of diodes Applications of diodes Learners should be able to: (a) describe the I V characteristics of a silicon diode (b) describe the use of diodes for component protection in DC circuits and half-wave rectification

More information

Physics 364, Fall 2014, Lab #12 (transistors I: emitter follower) Monday, October 13 (section 401); Tuesday, October 14 (section 402)

Physics 364, Fall 2014, Lab #12 (transistors I: emitter follower) Monday, October 13 (section 401); Tuesday, October 14 (section 402) Physics 364, Fall 2014, Lab #12 Name: (transistors I: emitter follower) Monday, October 13 (section 401); Tuesday, October 14 (section 402) Course materials and schedule are at positron.hep.upenn.edu/p364

More information

7. Bipolar Junction Transistor

7. Bipolar Junction Transistor 41 7. Bipolar Junction Transistor 7.1. Objectives - To experimentally examine the principles of operation of bipolar junction transistor (BJT); - To measure basic characteristics of n-p-n silicon transistor

More information

University of Utah Electrical & Computer Engineering Department ECE 2100 Experiment No. 7 Transistor Introduction (BJT)

University of Utah Electrical & Computer Engineering Department ECE 2100 Experiment No. 7 Transistor Introduction (BJT) University of Utah Electrical & Computer Engineering Department ECE 2100 Experiment No. 7 Transistor Introduction (BJT) Minimum required points = 38 Grade base, 100% = 57 points Recommend parts = 57 points

More information

Experiment 8: Semiconductor Devices

Experiment 8: Semiconductor Devices Name/NetID: Experiment 8: Semiconductor Devices Laboratory Outline In today s experiment you will be learning to use the basic building blocks that drove the ability to miniaturize circuits to the point

More information

Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET

Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET LABORATORY MANUAL EXPERIMENT NO. ISSUE NO. : ISSUE DATE: REV. NO. : REV. DATE : PAGE:

More information

Figure 1: Diode Measuring Circuit

Figure 1: Diode Measuring Circuit Diodes, Page 1 Diodes V-I Characteristics signal diode Measure the voltage-current characteristic of a standard signal diode, the 1N914, using the circuit shown in Figure 1 below. The purpose of the back-to-back

More information

Unit 3: Introduction to Op- amps and Diodes

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

More information

Laboratory 6 Diodes and Transistors

Laboratory 6 Diodes and Transistors Laboratory 6 page 1 of 6 Laboratory 6 Diodes and Transistors Introduction In this lab, you will build and test circuits using diodes and transistors. You will use a number of different types of diodes,

More information

9 Feedback and Control

9 Feedback and Control 9 Feedback and Control Due date: Tuesday, October 20 (midnight) Reading: none An important application of analog electronics, particularly in physics research, is the servomechanical control system. Here

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 3: Digital Multimeter and Voltage Generator

Lab 3: Digital Multimeter and Voltage Generator Lab 3: Digital Multimeter and Voltage Generator Lab Goals: Learn how to use your mydaq as a Digital Multimeter (DMM) Learn how to output a signal to a specified output port on the mydaq and verify its

More information

Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8. Bipolar Junction Transistor

Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8. Bipolar Junction Transistor Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8 Bipolar Junction Transistor Aim: The aim of this experiment is to investigate the DC behavior

More information

Lab 15: Lock in amplifier (Version 1.4)

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

More information

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION /53 pts Name: Partners: PHYSICS 22 LAB #1: ONE-DIMENSIONAL MOTION OBJECTIVES 1. To learn about three complementary ways to describe motion in one dimension words, graphs, and vector diagrams. 2. To acquire

More information

.dc Vcc Ib 0 50uA 5uA

.dc Vcc Ib 0 50uA 5uA EE 2274 BJT Biasing PreLab: 1. Common Emitter (CE) Transistor Characteristics curve Generate the characteristics curves for a 2N3904 in LTspice by plotting Ic by sweeping Vce over a set of Ib steps. Label

More information

Voltage Current and Resistance II

Voltage Current and Resistance II Voltage Current and Resistance II Equipment: Capstone with 850 interface, analog DC voltmeter, analog DC ammeter, voltage sensor, RLC circuit board, 8 male to male banana leads 1 Purpose This is a continuation

More information

Graphing with Excel. Data Table

Graphing with Excel. Data Table Graphing with Excel Copyright L. S. Quimby There are many spreadsheet programs and graphing programs that you can use to produce very nice graphs for your laboratory reports and homework papers, but Excel

More information

LabVIEW Day 2: Other loops, Other graphs

LabVIEW Day 2: Other loops, Other graphs LabVIEW Day 2: Other loops, Other graphs Vern Lindberg From now on, I will not include the Programming to indicate paths to icons for the block diagram. I assume you will be getting comfortable with the

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

Diodes. Diodes, Page 1

Diodes. Diodes, Page 1 Diodes, Page 1 Diodes V-I Characteristics signal diode Measure the voltage-current characteristic of a standard signal diode, the 1N914, using the circuit shown in Figure 1 below. The purpose of the back-to-back

More information

Lab 2: Diode Characteristics and Diode Circuits

Lab 2: Diode Characteristics and Diode Circuits 1. Learning Outcomes Lab 2: Diode Characteristics and Diode Circuits At the end of this lab, the students should be able to compare the experimental data to the theoretical curve of the diodes. The students

More information

EKT 314/4 LABORATORIES SHEET

EKT 314/4 LABORATORIES SHEET EKT 314/4 LABORATORIES SHEET WEEK DAY HOUR 4 1 2 PREPARED BY: EN. MUHAMAD ASMI BIN ROMLI EN. MOHD FISOL BIN OSMAN JULY 2009 Creating a Typical Measurement Application 5 This chapter introduces you to common

More information

Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Objectives:

Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Objectives: Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Pentium PC with National Instruments PCI-MIO-16E-4 data-acquisition board (12-bit resolution; software-controlled

More information

BME/ISE 3511 Laboratory One - Laboratory Equipment for Measurement. Introduction to biomedical electronic laboratory instrumentation and measurements.

BME/ISE 3511 Laboratory One - Laboratory Equipment for Measurement. Introduction to biomedical electronic laboratory instrumentation and measurements. BME/ISE 3511 Laboratory One - Laboratory Equipment for Measurement Learning Objectives: Introduction to biomedical electronic laboratory instrumentation and measurements. Supplies and Components: Breadboard

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

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

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

More information

Easy Transfer Function Measurements with LabVIEW 6i (Lab Skill Exercise X-1)

Easy Transfer Function Measurements with LabVIEW 6i (Lab Skill Exercise X-1) Easy Transfer Function Measurements with LabVIEW 6i (Lab Skill Exercise X-1) To exploit fully the potential for computer-based measurements offered by LabVIEW 6i, you need to use your computer and its

More information

Experiment 8: An AC Circuit

Experiment 8: An AC Circuit Experiment 8: An AC Circuit PART ONE: AC Voltages. Set up this circuit. Use R = 500 Ω, L = 5.0 mh and C =.01 μf. A signal generator built into the interface provides the emf to run the circuit from Output

More information

Experiment 6: Biasing Circuitry

Experiment 6: Biasing Circuitry 1 Objective UNIVERSITY OF CALIFORNIA AT BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences EE105 Lab Experiments Experiment 6: Biasing Circuitry Setting up a biasing

More information

Federal Urdu University of Arts, Science & Technology Islamabad Pakistan SECOND SEMESTER ELECTRONICS - I

Federal Urdu University of Arts, Science & Technology Islamabad Pakistan SECOND SEMESTER ELECTRONICS - I SECOND SEMESTER ELECTRONICS - I BASIC ELECTRICAL & ELECTRONICS LAB DEPARTMENT OF ELECTRICAL ENGINEERING Prepared By: Checked By: Approved By: Engr. Yousaf Hameed Engr. M.Nasim Khan Dr.Noman Jafri Lecturer

More information

Concepts to be Covered

Concepts to be Covered Introductory Medical Device Prototyping Analog Circuits Part 2 Semiconductors, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Concepts to be Covered Semiconductors

More information

Optical Theremin CDR

Optical Theremin CDR William Cane Wissing James Jones Mackenzie Phelps EE 300w Sec 003 Abstract Optical Theremin CDR For this lab we created an optical theremin. A theremin is an electronic instrument controlled without any

More information

EXPERIMENT NUMBER 4 Examining the Characteristics of Diodes

EXPERIMENT NUMBER 4 Examining the Characteristics of Diodes EXPERIMENT NUMBER 4 Examining the Characteristics of Diodes Preface: Preliminary exercises are to be done and submitted individually and turned in at the beginning of class Laboratory hardware exercises

More information

EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 6 Diodes: Half-Wave and Full-Wave Rectifiers Converting AC to DC

EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 6 Diodes: Half-Wave and Full-Wave Rectifiers Converting AC to DC EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 6 Diodes: Half-Wave and Full-Wave Rectifiers Converting C to DC The process of converting a sinusoidal C voltage to a

More information

Tutorial #5: Emitter Follower or Common Collector Amplifier Circuit

Tutorial #5: Emitter Follower or Common Collector Amplifier Circuit Tutorial #5: Emitter Follower or Common Collector Amplifier Circuit This tutorial will help you to build and simulate a more complex circuit: an emitter follower. The emitter follower or common collector

More information

Experiment #6: Biasing an NPN BJT Introduction to CE, CC, and CB Amplifiers

Experiment #6: Biasing an NPN BJT Introduction to CE, CC, and CB Amplifiers SCHOOL OF ENGINEERING AND APPLIED SCIENCE DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING ECE 2115: ENGINEERING ELECTRONICS LABORATORY Experiment #6: Biasing an NPN BJT Introduction to CE, CC, and CB

More information

ELEC 2210 EXPERIMENT 7 The Bipolar Junction Transistor (BJT)

ELEC 2210 EXPERIMENT 7 The Bipolar Junction Transistor (BJT) ELEC 2210 EXPERIMENT 7 The Bipolar Junction Transistor (BJT) Objectives: The experiments in this laboratory exercise will provide an introduction to the BJT. You will use the Bit Bucket breadboarding system

More information

Practical 2P12 Semiconductor Devices

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

More information

Exercise 8. The Four-Quadrant Chopper EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. The Four-Quadrant Chopper

Exercise 8. The Four-Quadrant Chopper EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. The Four-Quadrant Chopper Exercise 8 The Four-Quadrant Chopper EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the operation of the four-quadrant chopper. DISCUSSION OUTLINE The Discussion of

More information

Figure 1: Diode Measuring Circuit

Figure 1: Diode Measuring Circuit Diodes, Page 1 Diodes V-I Characteristics signal diode Measure the voltage-current characteristic of a standard signal diode, the 1N914, using the circuit shown in Figure 1 below. The purpose of the back-to-back

More information

Lab 7 LEDs to the Rescue!

Lab 7 LEDs to the Rescue! Lab 7 LEDs to the Rescue! Figure 7.0. Stoplights with LabVIEW Indicators Have you ever sat in your car stopped at a city intersection waiting for the stoplight to change and wondering how long the red

More information

29:128 Homework Problems

29:128 Homework Problems 29:128 Homework Problems Revised 22 Feb 2012 29:128 Homework 1 (15 points) references: Sections 1.6-1.7 & 4.8, Meyer Chapter 1 of Horowitz and Hill, 2nd Edition (1) In the circuit shown below, V in = 9

More information

Time-Varying Signals

Time-Varying Signals Time-Varying Signals Objective This lab gives a practical introduction to signals that varies with time using the components such as: 1. Arbitrary Function Generator 2. Oscilloscopes The grounding issues

More information

The version 2.0 of Solve Elec allow you to study circuits in direct current.

The version 2.0 of Solve Elec allow you to study circuits in direct current. Introduction Fonctionalities With Solve Elec you can : - draw a circuit - modify the properties of circuit components - define quantities related to the circuit by theirs formulas - see the circuit solution

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

Lab 2: Introduction to NI ELVIS, Multisim, and LabVIEW

Lab 2: Introduction to NI ELVIS, Multisim, and LabVIEW Page 1 of 19 Lab 2: Introduction to NI ELVIS, Multisim, and LabVIEW Laboratory Goals Familiarize students with the National Instruments hardware ELVIS Learn about the LabVIEW programming environment Demonstrate

More information

UNIVERSITY OF UTAH ELECTRICAL ENGINEERING DEPARTMENT

UNIVERSITY OF UTAH ELECTRICAL ENGINEERING DEPARTMENT UNIVERSITY OF UTAH ELECTRICAL ENGINEERING DEPARTMENT ECE 3110 LAB EXPERIMENT NO. 4 CLASS AB POWER OUTPUT STAGE Objective: In this laboratory exercise you will build and characterize a class AB power output

More information

LAB IV. SILICON DIODE CHARACTERISTICS

LAB IV. SILICON DIODE CHARACTERISTICS LAB IV. SILICON DIODE CHARACTERISTICS 1. OBJECTIVE In this lab you will measure the I-V characteristics of the rectifier and Zener diodes, in both forward and reverse-bias mode, as well as learn what mechanisms

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

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

KOM2751 Analog Electronics :: Dr. Muharrem Mercimek :: YTU - Control and Automation Dept. 1 2 (CONT D - II) DIODE APPLICATIONS

KOM2751 Analog Electronics :: Dr. Muharrem Mercimek :: YTU - Control and Automation Dept. 1 2 (CONT D - II) DIODE APPLICATIONS KOM2751 Analog Electronics :: Dr. Muharrem Mercimek :: YTU - Control and Automation Dept. 1 2 (CONT D - II) DIODE APPLICATIONS Most of the content is from the textbook: Electronic devices and circuit theory,

More information

BJT AC Analysis CHAPTER OBJECTIVES 5.1 INTRODUCTION 5.2 AMPLIFICATION IN THE AC DOMAIN

BJT AC Analysis CHAPTER OBJECTIVES 5.1 INTRODUCTION 5.2 AMPLIFICATION IN THE AC DOMAIN BJT AC Analysis 5 CHAPTER OBJECTIVES Become familiar with the, hybrid, and hybrid p models for the BJT transistor. Learn to use the equivalent model to find the important ac parameters for an amplifier.

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

R 1 R 2. (3) Suppose you have two ac signals, which we ll call signals A and B, which have peak-to-peak amplitudes of 30 mv and 600 mv, respectively.

R 1 R 2. (3) Suppose you have two ac signals, which we ll call signals A and B, which have peak-to-peak amplitudes of 30 mv and 600 mv, respectively. 29:128 Homework Problems 29:128 Homework 0 reference: Chapter 1 of Horowitz and Hill (1) In the circuit shown below, V in = 9 V, R 1 = 1.5 kω, R 2 = 5.6 kω, (a) Calculate V out (b) Calculate the power

More information

The collector terminal is common to the input and output signals and is connected to the dc power supply. Common Collector Circuit

The collector terminal is common to the input and output signals and is connected to the dc power supply. Common Collector Circuit Common Collector Circuit When you have completed this exercise, you will be able to determine the dc operating conditions of a common collector (CC) transistor circuit by using a typical CC circuit. You

More information

EXPERIMENT 10: SINGLE-TRANSISTOR AMPLIFIERS 11/11/10

EXPERIMENT 10: SINGLE-TRANSISTOR AMPLIFIERS 11/11/10 EXPERIMENT 10: SINGLE-TRANSISTOR AMPLIFIERS 11/11/10 In this experiment we will measure the characteristics of the standard common emitter amplifier. We will use the 2N3904 npn transistor. If you have

More information

LABORATORY 3 v3 CIRCUIT ELEMENTS

LABORATORY 3 v3 CIRCUIT ELEMENTS University of California Berkeley Department of Electrical Engineering and Computer Sciences EECS 100, Professor Leon Chua LABORATORY 3 v3 CIRCUIT ELEMENTS The purpose of this laboratory is to familiarize

More information

Class #8: Experiment Diodes Part I

Class #8: Experiment Diodes Part I Class #8: Experiment Diodes Part I Purpose: The objective of this experiment is to become familiar with the properties and uses of diodes. We used a 1N914 diode in two previous experiments, but now we

More information

Basic Electronics Course Part 2

Basic Electronics Course Part 2 Basic Electronics Course Part 2 Simple Projects using basic components Including Transistors & Pots Following are instructions to complete several electronic exercises Image 7. Components used in Part

More information

E84 Lab 3: Transistor

E84 Lab 3: Transistor E84 Lab 3: Transistor Cherie Ho and Siyi Hu April 18, 2016 Transistor Testing 1. Take screenshots of both the input and output characteristic plots observed on the semiconductor curve tracer with the following

More information

Unit/Standard Number. LEA Task # Alignment

Unit/Standard Number. LEA Task # Alignment 1 Secondary Competency Task List 100 SAFETY 101 Demonstrate an understanding of State and School safety regulations. 102 Practice safety techniques for electronics work. 103 Demonstrate an understanding

More information

I1 19u 5V R11 1MEG IDC Q7 Q2N3904 Q2N3904. Figure 3.1 A scaled down 741 op amp used in this lab

I1 19u 5V R11 1MEG IDC Q7 Q2N3904 Q2N3904. Figure 3.1 A scaled down 741 op amp used in this lab Lab 3: 74 Op amp Purpose: The purpose of this laboratory is to become familiar with a two stage operational amplifier (op amp). Students will analyze the circuit manually and compare the results with SPICE.

More information

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert This set of notes describes how to prepare a Bode plot using Mathcad. Follow these instructions to draw Bode plot for any transfer

More information

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph

Step 1: Set up the variables AB Design. Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables AB Design Use the top cells to label the variables that will be displayed on the X and Y axes of the graph Step 1: Set up the variables X axis for AB Design Enter X axis label

More information

Revision: April 18, E Main Suite D Pullman, WA (509) Voice and Fax

Revision: April 18, E Main Suite D Pullman, WA (509) Voice and Fax Lab 1: Resistors and Ohm s Law Revision: April 18, 2010 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview In this lab, we will experimentally explore the characteristics of resistors.

More information

Introduction to NI Multisim & Ultiboard Software version 14.1

Introduction to NI Multisim & Ultiboard Software version 14.1 School of Engineering and Applied Science Electrical and Computer Engineering Department Introduction to NI Multisim & Ultiboard Software version 14.1 Dr. Amir Aslani August 2018 Parts Probes Tools Outline

More information

6. Bipolar Diode. Owing to this one-direction conductance, current-voltage characteristic of p-n diode has a rectifying shape shown in Fig. 2.

6. Bipolar Diode. Owing to this one-direction conductance, current-voltage characteristic of p-n diode has a rectifying shape shown in Fig. 2. 36 6. Bipolar Diode 6.1. Objectives - To experimentally observe temperature dependence of the current flowing in p-n junction silicon and germanium diodes; - To measure current-voltage characteristics

More information

Semiconductor theory predicts that the current through a diode is given by

Semiconductor theory predicts that the current through a diode is given by 3 DIODES 3 Diodes A diode is perhaps the simplest non-linear circuit element. To first order, it acts as a one-way valve. It is important, however, for a wide variety of applications, and will also form

More information

LabVIEW 8" Student Edition

LabVIEW 8 Student Edition LabVIEW 8" Student Edition Robert H. Bishop The University of Texas at Austin PEARSON Prentice Hall Upper Saddle River, NJ 07458 CONTENTS Preface xvii LabVIEW Basics 1.1 System Configuration Requirements

More information

Figure 1 Diode schematic symbol (left) and physical representation (right)

Figure 1 Diode schematic symbol (left) and physical representation (right) Page 1/7 Revision 1 20-Jul-10 OBJECTIVES To reinforce the concepts behind diode circuit analysis Verification of diode theory and operation To understand certain diode applications, such as rectification

More information

Pre-LAB 5 Assignment

Pre-LAB 5 Assignment Name: Lab Partners: Date: Pre-LA 5 Assignment Fundamentals of Circuits III: Voltage & Ohm s Law (Due at the beginning of lab) Directions: Read over the Lab Fundamentals of Circuits III: Voltages :w & Ohm

More information

Analog Circuits Part 2 Semiconductors

Analog Circuits Part 2 Semiconductors Introductory Medical Device Prototyping Analog Circuits Part 2 Semiconductors, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Concepts to be Covered Semiconductors

More information

Chapter 1: DC circuit basics

Chapter 1: DC circuit basics Chapter 1: DC circuit basics Overview Electrical circuit design depends first and foremost on understanding the basic quantities used for describing electricity: voltage, current, and power. In the simplest

More information

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Electronics EECE2412 Spring 2017 Exam #2

Electronics EECE2412 Spring 2017 Exam #2 Electronics EECE2412 Spring 2017 Exam #2 Prof. Charles A. DiMarzio Department of Electrical and Computer Engineering Northeastern University 30 March 2017 File:12198/exams/exam2 Name: : General Rules:

More information

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide

Physics 253 Fundamental Physics Mechanic, September 9, Lab #2 Plotting with Excel: The Air Slide 1 NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 253 Fundamental Physics Mechanic, September 9, 2010 Lab #2 Plotting with Excel: The Air Slide Lab Write-up Due: Thurs., September 16, 2010 Place

More information

University of Michigan EECS 311: Electronic Circuits Fall 2008 LAB 4 SINGLE STAGE AMPLIFIER

University of Michigan EECS 311: Electronic Circuits Fall 2008 LAB 4 SINGLE STAGE AMPLIFIER University of Michigan EECS 311: Electronic Circuits Fall 2008 LAB 4 SINGLE STAGE AMPLIFIER Issued 10/27/2008 Report due in Lecture 11/10/2008 Introduction In this lab you will characterize a 2N3904 NPN

More information

The Discussion of this exercise covers the following points:

The Discussion of this exercise covers the following points: Exercise 1 Power Diode Single-Phase Rectifiers EXERCISE OBJECTIVE When you have completed this exercise, you will know what a diode is, and how it operates. You will be familiar with two types of circuits

More information

University of Minnesota. Department of Electrical and Computer Engineering. EE 3105 Laboratory Manual. A Second Laboratory Course in Electronics

University of Minnesota. Department of Electrical and Computer Engineering. EE 3105 Laboratory Manual. A Second Laboratory Course in Electronics University of Minnesota Department of Electrical and Computer Engineering EE 3105 Laboratory Manual A Second Laboratory Course in Electronics Introduction You will find that this laboratory continues in

More information

A graph is an effective way to show a trend in data or relating two variables in an experiment.

A graph is an effective way to show a trend in data or relating two variables in an experiment. Chem 111-Packet GRAPHING A graph is an effective way to show a trend in data or relating two variables in an experiment. Consider the following data for exercises #1 and 2 given below. Temperature, ºC

More information