Physics 222. Lab 5: Characterizing a transistor, and using it to control motor speeds. Objectives:

Size: px
Start display at page:

Download "Physics 222. Lab 5: Characterizing a transistor, and using it to control motor speeds. Objectives:"

Transcription

1 Fresh page; your name, your partners full names, date, title. You may copy the objectives, introduction, equipment, safety and procedure sections, or you may print this handout and neatly tape in these sections into the appropriate pages in your lab notebook. Note that there are three sections you need to prepare: The introduction/relevant calculation/code section has a schematic, the voltage divider calculation and the pseudocode that you will prepare ahead of time. Leave a page blank for the circuit diagram section Set up a data table as prescribed in the data section part A, then leave enough space to include your working Arduino code for part B. The writeup to this lab is due 4 p.m., Friday, February 23, in my mailbox, though you may submit it earlier in class. The writeup consists of a photocopy of your lab notebook pages for Lab 5, from the title page to the conclusion section. Physics 222 Lab 5: Characterizing a transistor, and using it to control motor speeds Objectives: Determining the type of transistor from multimeter information Building a circuit with a voltage divider Building a circuit with a transistor controlling the speed of a motor Determining b and operation mode for a transistor Introduction and relevant calculations/code: The junction transistor is closely related to the semiconductor junction diode whose I-V characteristics you have already studied. A bipolar junction transistor consists of a three-layer "sandwich" of doped semiconductor materials, either P-N- P (positively doped silicon negatively doped silicon positively doped silicon) or N- P-N. Each layer forming the transistor has a specific name, and each layer is provided with a wire contact for connection to a circuit. Shown here are schematic symbols and physical diagrams of these two transistor types: PNP transistor NPN transistor P N P N P N

2 The only functional difference between a PNP transistor and an NPN transistor is the proper biasing (polarity) of the junctions when operating. For any given state of operation, the current directions and voltage polarities for each type of transistor are exactly opposite each other. Bipolar transistors work as current-controlled current regulators. In other words, they restrict the amount of current that can go through them according to a smaller, controlling current. The main current that is controlled goes from to for a NPN transistor; the small current that controls the main current goes from to. The arrow in the schematic above points in the direction of the current remember that electrons are really flowing the opposite way: B C E = small controlling current = large controlled current Bipolar transistors are called bipolar because the main flow of electrons through them takes place in two types of semiconductor material: P and N, as the main current goes from to. In other words, two types of charge carriers electrons and holes comprise this main current through the transistor. As you can see, the controlling current and the controlled current are always together in the wire, and their electrons always flow against the direction of the transistor's arrow. This is the first and foremost rule in the use of transistors: all currents must be going in the proper directions for the device to work as a current regulator. The small, controlling current is usually referred to simply as the current because it is the only current that goes through the wire of the transistor. Conversely, the large, controlled current is referred to as the current because it is the only current that goes through the wire. The current is the sum of the and currents, in compliance with Kirchhoff's Current Law (KCL). If there is no current through the of the transistor, it shuts off like an open switch and prevents current through the. If there is a current, then the transistor turns on like a closed switch and allows a proportional amount of current through the. For a typical NPN transistor like the 2N2222, the ratio of the current to the current in the active mode is roughly (this ratio is called b or hfe ). Collector current is primarily limited by the current, regardless of the amount of voltage available to push it. Another way of describing how this type of transistor works is to say that it turns on (allows a to current) when the voltage of the with respect to ground is about 0.6 V (assuming the is grounded). Note that you can damage a transistor like this if you give it too large of a current or have too large of a

3 to current. Refer to the manufacturer s data sheet to see what these maximum currents are. Identifying wires on a transistor Before you can use a transistor you need to decide which wire lead is the, which is the and which is the. This is important because transistor packaging, unfortunately, is not standardized. All bipolar transistors have three wires, of course, but the positions of the three wires on the actual physical package are not arranged in any universal, standardized order. Bipolar transistors are constructed of a three-layer semiconductor "sandwich," either PNP or NPN. As such, they register as two diodes connected back-to-back when tested with a multimeter's "resistance" or "diode check" functions ( ). Use a meter has a designated "diode check" function; the meter will display the actual forward voltage of the PN junction and not just whether or not it conducts current. The Fluke meters seem to work better for this. Note that the actual forward voltage will be shown only when the + lead on the multimeter is on a P wire, and the (ground) lead is on an N wire. The other direction (the leads reversed) will not conduct a current and thus will read OL for overload. If a multimeter with a "diode check" function is used in this test, it will be found that the - junction possesses a slightly greater forward voltage drop than the - junction. This forward voltage difference is due to the disparity in doping concentration between the and regions of the transistor: the is a much more heavily doped piece of semiconductor material than the, causing its junction with the to produce a higher forward voltage drop. This voltage drop can be seen when the meter is placed in the diode check mode this is what allows you to tell apart the from the. Controlling a DC motor with software The DC motor requires a transistor which acts like a solid-state switch, because the Arduino digital and analog out pins produce current strong enough to light small LEDs (up to ma, or so), but they're not strong enough to run motors and other power-hungry parts (this motor needs ma). Because the motor needs more current than an Arduino pin can provide, a transistor like the 2N2222 can switch up to 200 ma, when we give it a small amount of current. The DC motors in this lab can handle 4.5 V at most so this circuit will need a voltage divider to ensure 5 V (the + in the Arduino) is not sent to the motor, which could fry it. Use 10.0 W and W resistors to construct a voltage divider so that the voltage across one of the resistors is about 4.5 V with no load (no circuit attached to the

4 voltage divider). Show the voltage divider schematic and voltage divider calculation below. In actuality, when the motor is connected, the voltage going through it will likely be around 3.5 V since the load resistance is in parallel with one of your voltage divider resistors and that lowers the resistance which lowers the output voltage under load ideally, you should pick resistors that are much lower than the load resistance. However, since the voltage across the motor is low enough, go with your schematic. One other point about motors: When a motor stops, a small amount of current might be generated as the shaft continues spinning. A diode placed in parallel with the motor leads will keep any generated electricity from damaging your circuit. Of course, place it in such a way as to prevent current from going backwards through the circuit. On the Arduino software side, you will need to write code to control the flow of current from either a digital power pin or an analog power pin to the of the transistor. The goal is to get the motor to spin at two different speeds for three seconds each, then stop. These two different speeds may be accomplished using HIGH and LOW from the digital pin, or two suitable numbers between 0 and 1023 from the analog pin. The analogwrite command will be invaluable here; this command requires a number between 0 and 255, and outputs an appropriate PWM signal to an analog pin (like pin 9, just saying). For instance, analogwrite(255) outputs 100% of the PWM voltage (i.e., always on) and analogwrite(127) outputs 50% of the PWM voltage (i.e., half the time on). Below, write code or pseudo-code for the key parts of running the motor. Equipment 2N2222 bipolar junction transistor Fluke multimeter Arduino kit and laptop 4.5V motor Circuit diagrams

5 Part A Rather than a circuit diagram, draw the transistor as distinctly as you can, identifying the, and wires. Part B Draw a schematic of the transistor/motor/arduino circuit. Use the pin numbers on the Arduino and use the transistor symbol above (including the little arrow). Safety The 2N2222 transistor is low-power, so it is extremely sensitive to short-circuiting due to static charge. Please take the appropriate precautions. Procedure Part A (Identifying the wires on a transistor) 1. Obtain the transistor and place it upright on the breadboard, taking care not to stress the wires too much. 2. Using the Fluke multimeter, perform the tests suggested in the introduction above. Record six measurements in the data section. 3. Deduce the identity of each wire and record it in Part A of the circuit diagram section; it will be critical for Part B to know this correctly (check with the instructor before proceeding). Part B (Controlling a motor using a transistor) 4a. Write a simple program that will make the motor spin at two different speeds for three seconds each, and then stop. Make sure the two speeds are such that the casual observer can easily tell that the motor is spinning at two different rates. 4b. On the breadboard, connect the transistor s pin through a 470 W resistor to a PWM digital pin (like 9 ) or analog pin (like A0 ) on your microcontroller, depending on how you wrote the Arduino code. Connect the transistor s pin to GND (0 V). 5b. Connect the black wire on the motor to the transistor s pin. Connect the red wire on the motor to 4.5 V from your voltage divider. 6b. You will also need a flyback diode: When the motor is spinning and then is suddenly turned off, the magnetic field inside it collapses, generating a voltage spike according to Faraday s Law, which you won t see until Chapter 30 in the text. Faraday s law says that a voltage will be created whenever the magnetism changes in a circuit, like when a motor is turned off. This voltage spike can damage the

6 transistor and possibly the microcontroller. To prevent this from happening, we use a "flyback diode", which diverts the voltage spike around the motor. Connect the side of the diode with the band (cathode) to 4.5V and connect the other side of the diode (anode) to the black wire on the motor: 470 W 7b. Place a small piece of tape on your motor s shaft so you can see it spin. 8. Show your working circuit to the instructor and include your entire code in the data section. Part C (Measuring b) 9. Modify the Arduino code slightly to have the motor run continually at a single speed. 10. With the power off, put the current meter in series with the motor and the of the transistor to measure the current (IC). Make sure you have it hooked up correctly before connecting the power! Record IC, and estimate the uncertainty in IC. 11. To measure the current (IB), either: connect your meter in series with the 470 W resistor or measure the voltage across the resistor and use Ohm s law to calculate the current Record your result (IB) and show work, if needed. Estimate the uncertainty in IB. 12. While the motor is running, measure the potential difference from the to the (VBC) and from the to the (VBE) on the transistor, along with their uncertainties. These measurements will help determine what operation mode this transistor is in.

7 Data and Analysis Part A Label the transistor wires 1, 2 and 3, arbitrarily; then 1+ will mean the + (red) lead on the multimeter is placed on the 1 pin of the transistor. Make a table that shows the six possible permutations of the leads, and their results: use OL to indicate overload. Explain, using the data above, which numbered wire is the, then do the same for the and. Make sure to draw the transistor with the properlylabeled wires in the circuit diagram section. Part B Don t forget to draw a schematic of the entire circuit, including the voltage divider, in the circuit diagram section. Include the working Arduino code here. Make sure the key steps are fully documented (it s also good to have a comment at the top of the code that identifies the author(s) of the code and the date). Part C Measured IC ± u(ic) (units?) Measured IB ± u(ib) (units?) Calculate b (= IC/IB), and u(b), using GUM. Note this is a unitless number. Measured VBC ± u(vbc) (units?) Measured VBE ± u(vbe) (units?) Discussion and conclusion Clearly state b ± u(b). Go to and determine which operation mode the transistor was running on, when the motor was on. Use your data to explain your determination. In the active mode, b is between 100 and 300. When saturated, b is about 10. Does your calculation support your conclusion about the transistor s operation mode? If there is a discrepancy, give a plausible explanation.

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

Transistor Characteristics

Transistor Characteristics Transistor Characteristics Topics covered in this presentation: Transistor Construction Transistor Operation Transistor Characteristics 1 of 15 The Transistor The transistor is a semiconductor device that

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

Chapter 3 Bipolar Junction Transistors (BJT)

Chapter 3 Bipolar Junction Transistors (BJT) Chapter 3 Bipolar Junction Transistors (BJT) Transistors In analog circuits, transistors are used in amplifiers and linear regulated power supplies. In digital circuits they function as electrical switches,

More information

o Semiconductor Diode Symbol: The cathode contains the N-type material and the anode contains the P-type material.

o Semiconductor Diode Symbol: The cathode contains the N-type material and the anode contains the P-type material. Cornerstone Electronics Technology and Robotics I Week 16 Diodes and Transistor Switches Administration: o Prayer o Turn in quiz Review: o Design and wire a voltage divider that divides your +9 V voltage

More information

DISCUSSION The best way to test a transistor is to connect it in a circuit that uses the transistor.

DISCUSSION The best way to test a transistor is to connect it in a circuit that uses the transistor. Exercise 1: EXERCISE OBJECTIVE When you have completed this exercise, you will be able to test a transistor by forward biasing and reverse biasing the junctions. You will verify your results with an ohmmeter.

More information

HANDS-ON LAB INSTRUCTION SHEET MODULE 3 CAPACITORS, TIME CONSTANTS AND TRANSISTOR GAIN

HANDS-ON LAB INSTRUCTION SHEET MODULE 3 CAPACITORS, TIME CONSTANTS AND TRANSISTOR GAIN HANDS-ON LAB INSTRUCTION SHEET MODULE 3 CAPACITORS, TIME CONSTANTS AND TRANSISTOR GAIN NOTES: 1) To conserve the life of the Multimeter s 9 volt battery, be sure to turn the meter off if not in use for

More information

An Introduction to Bipolar Junction Transistors. Prepared by Dr Yonas M Gebremichael, 2005

An Introduction to Bipolar Junction Transistors. Prepared by Dr Yonas M Gebremichael, 2005 An Introduction to Bipolar Junction Transistors Transistors Transistors are three port devices used in most integrated circuits such as amplifiers. Non amplifying components we have seen so far, such as

More information

The Semiconductor Diode

The Semiconductor Diode Physics Topics The Semiconductor Diode If necessary, review the following topics and relevant textbook sections from Neamen Semiconductor Physics and Devices, 4th Ed. Section 8.1.5, especially equation

More information

10 Semiconductors - Transistors

10 Semiconductors - Transistors 10 Semiconductors - Transistors The transistor was invented in the late 1940s. Credit for its invention is given to three Bell Laboratories scientists, John Bardeen, Walter Brattain, and William Shockley.

More information

14. Transistor Characteristics Lab

14. Transistor Characteristics Lab 1 14. Transistor Characteristics Lab Introduction Transistors are the active component in various devices like amplifiers and oscillators. They are called active devices since transistors are capable of

More information

Physics of Bipolar Transistor

Physics of Bipolar Transistor Physics of Bipolar Transistor Motivations - In many electronic applications, amplifier is the most fundamental building block. Ex Audio amplifier: amplifies electric signal to drive a speaker RF Power

More information

Binary Outputs: Transistors Used as a Switch

Binary Outputs: Transistors Used as a Switch Binary Outputs: Transistors Used as a Switch Background A is able to output 5V at 25mA. Some devices require too much power for a to drive these directly. These include: A stepper motor which draws 1A

More information

Lecture 24: Bipolar Junction Transistors (1) Bipolar Junction Structure, Operating Regions, Biasing

Lecture 24: Bipolar Junction Transistors (1) Bipolar Junction Structure, Operating Regions, Biasing Lecture 24: Bipolar Junction Transistors (1) Bipolar Junction Structure, Operating Regions, Biasing BJT Structure the BJT is formed by doping three semiconductor regions (emitter, base, and collector)

More information

5.1 BJT Device Structure and Physical Operation

5.1 BJT Device Structure and Physical Operation 11/28/2004 section 5_1 BJT Device Structure and Physical Operation blank 1/2 5.1 BJT Device Structure and Physical Operation Reading Assignment: pp. 377-392 Another kind of transistor is the Bipolar Junction

More information

COE/EE152: Basic Electronics. Lecture 5. Andrew Selasi Agbemenu. Outline

COE/EE152: Basic Electronics. Lecture 5. Andrew Selasi Agbemenu. Outline COE/EE152: Basic Electronics Lecture 5 Andrew Selasi Agbemenu 1 Outline Physical Structure of BJT Two Diode Analogy Modes of Operation Forward Active Mode of BJTs BJT Configurations Early Effect Large

More information

Electronic Circuits - Tutorial 07 BJT transistor 1

Electronic Circuits - Tutorial 07 BJT transistor 1 Electronic Circuits - Tutorial 07 BJT transistor 1-1 / 20 - T & F # Question 1 A bipolar junction transistor has three terminals. T 2 For operation in the linear or active region, the base-emitter junction

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

EXPERIMENT 6 REPORT Bipolar Junction Transistor (BJT) Characteristics

EXPERIMENT 6 REPORT Bipolar Junction Transistor (BJT) Characteristics Name & Surname: ID: Date: EXPERIMENT 6 REPORT Bipolar Junction Transistor (BJT) Characteristics Objectives: 1. To determine transistor type (npn, pnp),terminals, and material using a DMM 2. To graph the

More information

LAB MODULES. MSCI 222C Introduction to Electronics. Charles Rubenstein, Ph. D. Professor of Engineering & Information Science

LAB MODULES. MSCI 222C Introduction to Electronics. Charles Rubenstein, Ph. D. Professor of Engineering & Information Science MSCI 222C Introduction to Electronics Charles Rubenstein, Ph. D. Professor of Engineering & Information Science LAB MODULES Copyright 2015-2019 C.P.Rubenstein Electronics Hands-On Lab - Module 01 MSCI

More information

Lecture 12. Bipolar Junction Transistor (BJT) BJT 1-1

Lecture 12. Bipolar Junction Transistor (BJT) BJT 1-1 Lecture 12 Bipolar Junction Transistor (BJT) BJT 1-1 Course Info Lecture hours: 4 Two Lectures weekly (Saturdays and Wednesdays) Location: K2 Time: 1:40 pm Tutorial hours: 2 One tutorial class every week

More information

BJT. Bipolar Junction Transistor BJT BJT 11/6/2018. Dr. Satish Chandra, Assistant Professor, P P N College, Kanpur 1

BJT. Bipolar Junction Transistor BJT BJT 11/6/2018. Dr. Satish Chandra, Assistant Professor, P P N College, Kanpur 1 BJT Bipolar Junction Transistor Satish Chandra Assistant Professor Department of Physics P P N College, Kanpur www.satish0402.weebly.com The Bipolar Junction Transistor is a semiconductor device which

More information

ECE 442 Solid State Devices & Circuits. 6. Bipolar Transistors

ECE 442 Solid State Devices & Circuits. 6. Bipolar Transistors ECE 442 Solid State Devices & Circuits 6. Bipolar Transistors Jose E. Schutt-Aine Electrical & Computer Engineering University of Illinois jschutt@emlab.uiuc.edu ECE 342 Jose Schutt Aine 1 Bipolar Junction

More information

Basic Electronics Learning by doing Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras

Basic Electronics Learning by doing Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Basic Electronics Learning by doing Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture 38 Unit junction Transistor (UJT) (Characteristics, UJT Relaxation oscillator,

More information

UNIT-III Bipolar Junction Transistor

UNIT-III Bipolar Junction Transistor DC UNT-3.xplain the construction and working of JT. UNT- ipolar Junction Transistor A bipolar (junction) transistor (JT) is a three-terminal electronic device constructed of doped semiconductor material

More information

Chapter 3-2 Semiconductor devices Transistors and Amplifiers-BJT Department of Mechanical Engineering

Chapter 3-2 Semiconductor devices Transistors and Amplifiers-BJT Department of Mechanical Engineering MEMS1082 Chapter 3-2 Semiconductor devices Transistors and Amplifiers-BJT Bipolar Transistor Construction npn BJT Transistor Structure npn BJT I = I + E C I B V V BE CE = V = V B C V V E E Base-to-emitter

More information

Autonomous Robot Control Circuit

Autonomous Robot Control Circuit Autonomous Robot Control Circuit - Theory of Operation - Written by: Colin Mantay Revision 1.07-06-04 Copyright 2004 by Colin Mantay No part of this document may be copied, reproduced, stored electronically,

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

PHYS 3152 Methods of Experimental Physics I E2. Diodes and Transistors 1

PHYS 3152 Methods of Experimental Physics I E2. Diodes and Transistors 1 Part I Diodes Purpose PHYS 3152 Methods of Experimental Physics I E2. In this experiment, you will investigate the current-voltage characteristic of a semiconductor diode and examine the applications of

More information

ME430 Mechatronics. Lab 2: Transistors, H Bridges, and Motors. Name. Name. The lab team has demonstrated:

ME430 Mechatronics. Lab 2: Transistors, H Bridges, and Motors. Name. Name. The lab team has demonstrated: Name Name ME430 Mechatronics Lab 2: Transistors, H Bridges, and Motors The lab team has demonstrated: Part (A) Driving DC Motors using a PIC and Transistors NPN BJT transistor N channel MOSFET transistor

More information

Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links

Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links 1 of 7 7/3/2010 10:15 μμ Home Map Projects Construction Soldering Study Components 555 Symbols FAQ Links This page explains the operation of transistors in circuits. Practical matters such as testing,

More information

Real Analog - Circuits 1 Chapter 1: Lab Projects

Real Analog - Circuits 1 Chapter 1: Lab Projects Real Analog Circuits 1 Chapter 1: Lab Projects 1.4.1: DusktoDawn Light Overview: In this lab, we will create our first circuit which appears to do something which is readily perceivable without instrumentation.

More information

ECEN 325 Lab 7: Characterization and DC Biasing of the BJT

ECEN 325 Lab 7: Characterization and DC Biasing of the BJT ECEN 325 Lab 7: Characterization and DC Biasing of the BJT 1 Objectives The purpose of this lab is to characterize NPN and PNP bipolar junction transistors (BJT), and to analyze and design DC biasing circuits

More information

Figure1: Basic BJT construction.

Figure1: Basic BJT construction. Chapter 4: Bipolar Junction Transistors (BJTs) Bipolar Junction Transistor (BJT) Structure The BJT is constructed with three doped semiconductor regions separated by two pn junctions, as in Figure 1(a).

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

ECE 310 Microelectronics Circuits

ECE 310 Microelectronics Circuits ECE 310 Microelectronics Circuits Bipolar Transistors Dr. Vishal Saxena (vishalsaxena@boisetstate.edu) Jan 20, 2014 Vishal Saxena 1 Bipolar Transistor n the chapter, we will study the physics of bipolar

More information

Lecture 3: Transistors

Lecture 3: Transistors Lecture 3: Transistors Now that we know about diodes, let s put two of them together, as follows: collector base emitter n p n moderately doped lightly doped, and very thin heavily doped At first glance,

More information

Exercises 6.1, 6.2, 6.3 (page 315 on 7 th edition textbook)

Exercises 6.1, 6.2, 6.3 (page 315 on 7 th edition textbook) Exercises 6.1, 6.2, 6.3 (page 315 on 7 th edition textbook) Recapitulation and Equivalent Circuit Models Previous slides present first order BJT model. Assumes npn transistor in active mode. Basic relationship

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

Figure 1. Block diagram of system incorporating power amplification.

Figure 1. Block diagram of system incorporating power amplification. It is often necessary use a circuit which has very low power capabilities to drive a system which has relatively high power requirements. This is typically accomplished by using an amplifier as an intermediate

More information

ET215 Devices I Unit 4A

ET215 Devices I Unit 4A ITT Technical Institute ET215 Devices I Unit 4A Chapter 3, Section 3.1-3.2 This unit is divided into two parts; Unit 4A and Unit 4B Chapter 3 Section 3.1 Structure of Bipolar Junction Transistors The basic

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

Electronics II Lecture 2(a): Bipolar Junction Transistors

Electronics II Lecture 2(a): Bipolar Junction Transistors Lecture 2(a): Bipolar Junction Transistors A/Lectr. Khalid Shakir Dept. Of Engineering Engineering by Pearson Transistor! Transistor=Transfer+Resistor. When Transistor operates in active region its input

More information

Module 2. B.Sc. I Electronics. Developed by: Mrs. Neha S. Joshi Asst. Professor Department of Electronics Willingdon College, Sangli

Module 2. B.Sc. I Electronics. Developed by: Mrs. Neha S. Joshi Asst. Professor Department of Electronics Willingdon College, Sangli Module 2 B.Sc. I Electronics Developed by: Mrs. Neha S. Joshi Asst. Professor Department of Electronics Willingdon College, Sangli BIPOLAR JUNCTION TRANSISTOR SCOPE OF THE CHAPTER- This chapter introduces

More information

ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline:

ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline: ECE 440 Lecture 29 : Introduction to the BJT-I Class Outline: Narrow-Base Diode BJT Fundamentals BJT Amplification Things you should know when you leave Key Questions How does the narrow-base diode multiply

More information

Laboratory No. 01: Small & Large Signal Diode Circuits. Electrical Enginnering Departement. By: Dr. Awad Al-Zaben. Instructor: Eng.

Laboratory No. 01: Small & Large Signal Diode Circuits. Electrical Enginnering Departement. By: Dr. Awad Al-Zaben. Instructor: Eng. Laboratory No. 01: Small & Large Signal Diode Circuits Electrical Enginnering Departement By: Dr. Awad Al-Zaben Instructor: Eng. Tamer Shahta Electronics Laboratory EE 3191 February 23, 2014 I. OBJECTIVES

More information

PHY405F 2009 EXPERIMENT 6 SIMPLE TRANSISTOR CIRCUITS

PHY405F 2009 EXPERIMENT 6 SIMPLE TRANSISTOR CIRCUITS PHY405F 2009 EXPERIMENT 6 SIMPLE TRANSISTOR CIRCUITS Due Date (NOTE CHANGE): Thursday, Nov 12 th @ 5 pm; Late penalty in effect! Most active electronic devices are based on the transistor as the fundamental

More information

FIELD- EFFECT TRANSISTORS: MOSFETS

FIELD- EFFECT TRANSISTORS: MOSFETS FIELD- EFFECT TRANSISTORS: MOSFETS LAB 8: INTRODUCTION TO FETS AND USING THEM AS CURRENT CONTROLLERS As discussed in the last lab, transistors are the basic devices providing control of large currents

More information

EECE 2413 Electronics Laboratory

EECE 2413 Electronics Laboratory EECE 2413 Electronics Laboratory Lab #2: Diode Circuits Goals In this lab you will become familiar with several different types of pn-junction diodes. These include silicon and germanium junction diodes,

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

EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT

EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT EXPERIMENT 12: SIMULATION STUDY OF DIFFERENT BIASING CIRCUITS USING NPN BJT AIM: 1) To study different BJT DC biasing circuits 2) To design voltage divider bias circuit using NPN BJT SOFTWARE TOOL: PC

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

Emitter base bias. Collector base bias Active Forward Reverse Saturation forward Forward Cut off Reverse Reverse Inverse Reverse Forward

Emitter base bias. Collector base bias Active Forward Reverse Saturation forward Forward Cut off Reverse Reverse Inverse Reverse Forward SEMICONDUCTOR PHYSICS-2 [Transistor, constructional characteristics, biasing of transistors, transistor configuration, transistor as an amplifier, transistor as a switch, transistor as an oscillator] Transistor

More information

Lecture (06) Bipolar Junction Transistor

Lecture (06) Bipolar Junction Transistor Lecture (06) Bipolar Junction Transistor By: Dr. Ahmed lshafee ١ Agenda BJT structure BJT operation BJT characteristics ٢ BJT structure The BJT is constructed with three doped semiconductor regions One

More information

Electronic Components

Electronic Components Electronic Components Arduino Uno Arduino Uno is a microcontroller (a simple computer), it has no way to interact. Building circuits and interface is necessary. Battery Snap Battery Snap is used to connect

More information

Module 04.(B1) Electronic Fundamentals

Module 04.(B1) Electronic Fundamentals 1.1a. Semiconductors - Diodes. Module 04.(B1) Electronic Fundamentals Question Number. 1. What gives the colour of an LED?. Option A. The active element. Option B. The plastic it is encased in. Option

More information

Chapter Two "Bipolar Transistor Circuits"

Chapter Two Bipolar Transistor Circuits Chapter Two "Bipolar Transistor Circuits" 1.TRANSISTOR CONSTRUCTION:- The transistor is a three-layer semiconductor device consisting of either two n- and one p-type layers of material or two p- and one

More information

Home Map Projects Construction Soldering Study Components Symbols Membership FAQ Links

Home Map Projects Construction Soldering Study Components Symbols Membership FAQ Links Home Map Projects Construction Soldering Study Components Symbols Membership FAQ Links Multimeters Choosing Digital Analogue Voltage & Current Resistance Diode Transistor Next Page: Resistance Also See:

More information

Semiconductors, ICs and Digital Fundamentals

Semiconductors, ICs and Digital Fundamentals Semiconductors, ICs and Digital Fundamentals The Diode The semiconductor phenomena. Diode performance with ac and dc currents. Diode types: General purpose LED Zener The Diode The semiconductor phenomena

More information

Bipolar Junction Transistors

Bipolar Junction Transistors Bipolar Junction Transistors Invented in 1948 at Bell Telephone laboratories Bipolar junction transistor (BJT) - one of the major three terminal devices Three terminal devices more useful than two terminal

More information

Chapter 1: Semiconductor Diodes

Chapter 1: Semiconductor Diodes Chapter 1: Semiconductor Diodes Diodes The diode is a 2-terminal device. A diode ideally conducts in only one direction. 2 Diode Characteristics Conduction Region Non-Conduction Region The voltage across

More information

Basic Electronics Prof. Dr. Chitralekha Mahanta Department of Electronics and Communication Engineering Indian Institute of Technology, Guwahati

Basic Electronics Prof. Dr. Chitralekha Mahanta Department of Electronics and Communication Engineering Indian Institute of Technology, Guwahati Basic Electronics Prof. Dr. Chitralekha Mahanta Department of Electronics and Communication Engineering Indian Institute of Technology, Guwahati Module: 2 Bipolar Junction Transistors Lecture-1 Transistor

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

Physics 160 Lecture 5. R. Johnson April 13, 2015

Physics 160 Lecture 5. R. Johnson April 13, 2015 Physics 160 Lecture 5 R. Johnson April 13, 2015 Half Wave Diode Rectifiers Full Wave April 13, 2015 Physics 160 2 Note that there is no ground connection on this side of the rectifier! Output Smoothing

More information

4.2.2 Metal Oxide Semiconductor Field Effect Transistor (MOSFET)

4.2.2 Metal Oxide Semiconductor Field Effect Transistor (MOSFET) 4.2.2 Metal Oxide Semiconductor Field Effect Transistor (MOSFET) The Metal Oxide Semitonductor Field Effect Transistor (MOSFET) has two modes of operation, the depletion mode, and the enhancement mode.

More information

Bipolar Junction Transistors (BJTs) Overview

Bipolar Junction Transistors (BJTs) Overview 1 Bipolar Junction Transistors (BJTs) Asst. Prof. MONTREE SIRIPRUCHYANUN, D. Eng. Dept. of Teacher Training in Electrical Engineering, Faculty of Technical Education King Mongkut s Institute of Technology

More information

LABORATORY MODULE. Analog Electronics. Semester 2 (2005/2006)

LABORATORY MODULE. Analog Electronics. Semester 2 (2005/2006) LABORATORY MODULE ENT 162 Analog Electronics Semester 2 (2005/2006) EXPERIMENT 1 : Introduction to Diode Name Matric No. : : PUSAT PENGAJIAN KEJURUTERAAN MEKATRONIK KOLEJ UNIVERSITI KEJURUTERAAN UTARA

More information

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY

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

More information

Source: IC Layout Basics. Diodes

Source: IC Layout Basics. Diodes Source: IC Layout Basics C HAPTER 7 Diodes Chapter Preview Here s what you re going to see in this chapter: A diode is a PN junction How several types of diodes are built A look at some different uses

More information

The shape of the waveform will be the same, but its level is shifted either upward or downward. The values of the resistor R and capacitor C affect

The shape of the waveform will be the same, but its level is shifted either upward or downward. The values of the resistor R and capacitor C affect Diode as Clamper A clamping circuit is used to place either the positive or negative peak of a signal at a desired level. The dc component is simply added or subtracted to/from the input signal. The clamper

More information

Chapter 6: Transistors and Gain

Chapter 6: Transistors and Gain I. Introduction Chapter 6: Transistors and Gain This week we introduce the transistor. Transistors are three-terminal devices that can amplify a signal and increase the signal s power. The price is that

More information

Shankersinh Vaghela Bapu Institute of Technology INDEX

Shankersinh Vaghela Bapu Institute of Technology INDEX Shankersinh Vaghela Bapu Institute of Technology Diploma EE Semester III 3330905: ELECTRONIC COMPONENTS AND CIRCUITS INDEX Sr. No. Title Page Date Sign Grade 1 Obtain I-V characteristic of Diode. 2 To

More information

Transistors and Applications

Transistors and Applications Chapter 17 Transistors and Applications DC Operation of Bipolar Junction Transistors (BJTs) The bipolar junction transistor (BJT) is constructed with three doped semiconductor regions separated by two

More information

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches Cornerstone Electronics Technology and Robotics II H-Bridges and Electronic Motor Control 4 Hour Class Administration: o Prayer o Debriefing Botball competition Four States of a DC Motor with Terminals

More information

Bipolar Junction Transistor (BJT)

Bipolar Junction Transistor (BJT) Bipolar Junction Transistor (BJT) - three terminal device - output port controlled by current flow into input port Structure - three layer sandwich of n-type and p-type material - npn and pnp transistors

More information

BETWEEN SCAN TOOL & SUCCESSFUL DIAGNOSIS FILLING IN THE GAPS

BETWEEN SCAN TOOL & SUCCESSFUL DIAGNOSIS FILLING IN THE GAPS ETWEEN SCAN TOOL & SUCCESSFUL DIAGNOSIS FILLING IN THE GAPS 38 April 0 Y ERNIE THOMPSON A scan tool is an invaluable aid to vehicle diagnostics, but you may need to rely on other methods as well when vital

More information

Structure of Actual Transistors

Structure of Actual Transistors 4.1.3. Structure of Actual Transistors Figure 4.7 shows a more realistic BJT cross-section Collector virtually surrounds entire emitter region This makes it difficult for electrons injected into base to

More information

Basic Electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras

Basic Electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Basic Electronics Prof. T.S. Natarajan Department of Physics Indian Institute of Technology, Madras Lecture 39 Silicon Controlled Rectifier (SCR) (Construction, characteristics (Dc & Ac), Applications,

More information

Electronics Components and Schema3cs

Electronics Components and Schema3cs Electronics Components and Schema3cs J.R. Leeman and C. Marone Techniques of Geoscien3fic Experimenta3on October 11, 2016 Today we will cover components, schema3cs, and basic circuit analysis - which is

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

Chapter 3. Bipolar Junction Transistors

Chapter 3. Bipolar Junction Transistors Chapter 3. Bipolar Junction Transistors Outline: Fundamental of Transistor Common-Base Configuration Common-Emitter Configuration Common-Collector Configuration Introduction The transistor is a three-layer

More information

Lecture 4. Reading: Chapter EE105 Fall 2007 Lecture 4, Slide 1 Prof. Liu, UC Berkeley

Lecture 4. Reading: Chapter EE105 Fall 2007 Lecture 4, Slide 1 Prof. Liu, UC Berkeley Lecture 4 OUTLNE Bipolar Junction Transistor (BJT) General considerations Structure Operation in active mode Large-signal model and - characteristics Reading: Chapter 4.1-4.4.2 EE105 Fall 2007 Lecture

More information

Lab no. 4 Bipolar Transistor (NPN and PNP)

Lab no. 4 Bipolar Transistor (NPN and PNP) Lab no. 4 Bipolar Transistor (NPN and PNP) Transistors are semiconductor devices that enable to control the flow of large current by much smaller current. Bipolar transistor consists of three areas of

More information

Analog & Digital Electronics Course No: PH-218

Analog & Digital Electronics Course No: PH-218 Analog & Digital Electronics Course No: PH-218 Lec-5: Bipolar Junction Transistor (BJT) Course nstructors: Dr. A. P. VAJPEY Department of Physics, ndian nstitute of Technology Guwahati, ndia 1 Bipolar

More information

ES330 Laboratory Experiment No. 9 Bipolar Differential Amplifier [Reference: Sedra/Smith (Chapter 9; Section 9.2; pp )]

ES330 Laboratory Experiment No. 9 Bipolar Differential Amplifier [Reference: Sedra/Smith (Chapter 9; Section 9.2; pp )] ES330 Laboratory Experiment No. 9 Bipolar Differential Amplifier [Reference: Sedra/Smith (Chapter 9; Section 9.2; pp. 614-627)] Objectives: 1. Explore the operation of a bipolar junction transistor differential

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

HOW DIODES WORK CONTENTS. Solder plated Part No. Lot No Cathode mark. Solder plated 0.

HOW DIODES WORK CONTENTS.  Solder plated Part No. Lot No Cathode mark. Solder plated 0. www.joeknowselectronics.com Joe Knows, Inc. 1930 Village Center Circle #3-8830 Las Vegas, NV 89134 How Diodes Work Copyright 2013 Joe Knows Electronics HOW DIODES WORK Solder plated 0.4 1.6 There are several

More information

EEE225: Analogue and Digital Electronics

EEE225: Analogue and Digital Electronics EEE225: Analogue and Digital Electronics Lecture I James E. Green Department of Electronic Engineering University of Sheffield j.e.green@sheffield.ac.uk Introduction This Lecture 1 Introduction Aims &

More information

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

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

More information

Laboratory Four - Bipolar Junction Transistor (BJT)

Laboratory Four - Bipolar Junction Transistor (BJT) M/IS 3512 ioelectronics Laboratory Four - ipolar Junction Transistor (JT) Learning Objectives: Know how to differentiate between PNP & NPN JT transistors using a multimeter. e familiar with the operation

More information

Gechstudentszone.wordpress.com

Gechstudentszone.wordpress.com Unit 1: Transistor, UJT s, and Thyristors In the Diode tutorials we saw that simple diodes are made up from two pieces of semiconductor material, either silicon or germanium to form a simple PN-junction

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

Electronics Laboratory And Students kits For Self-Study And Distant Learning. By: Charbel T. Fahed

Electronics Laboratory And Students kits For Self-Study And Distant Learning. By: Charbel T. Fahed Electronics Laboratory And Students kits For Self-Study And Distant Learning By: Charbel T. Fahed Table of Contents I. DC and AC fundamentals 1) Color Code 2) Ohm s Law 3) Series Circuits 4) Parallel Circuits

More information

AIM:-To observe and draw the Forward bias V-I Characteristics of a P-N Junction diode and study of L.E.D characteristics.

AIM:-To observe and draw the Forward bias V-I Characteristics of a P-N Junction diode and study of L.E.D characteristics. KARNAL INSTITUTE OF TECHNOLOGY & MANAGEMENT KUNJPURA, KARNAL LAB MANUAL OF ------- SUBJECT CODE DATE OF ISSUE: SEMESTER: BRANCH: REV NO EXPERIMENT NO 1 P-N JUNCTION DIODE CHARACTERISTICS AIM:-To observe

More information

Semiconductor 9/21/2015

Semiconductor 9/21/2015 Semiconductor Electronics 9/21/2015 Starting simple the diode. The diode is one of the simplest semiconductor devices. It is comprised of two layers of semiconductor. One is impregnated with an electron

More information

EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 0: Course Introduction

EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 0: Course Introduction EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 0: Course Introduction The primary goal of the one-unit EE110 course is to serve as a small window to allow the freshman

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

ชาว ศวกรรมคอมพ วเตอร คณะว ศวกรรมศาสตร มหาว ทยาล ยเทคโนโลย ราชมงคลพระนคร

ชาว ศวกรรมคอมพ วเตอร คณะว ศวกรรมศาสตร มหาว ทยาล ยเทคโนโลย ราชมงคลพระนคร EN2042102 วงจรไฟฟ าและอ เล กทรอน กส Circuits and Electronics บทท 7 ทรานซ สเตอร Bipolar Junction Transistor สาขาว ชาว ศวกรรมคอมพ วเตอร คณะว ศวกรรมศาสตร มหาว ทยาล ยเทคโนโลย ราชมงคลพระนคร Objectives Describe

More information

The silicon controlled rectifier (SCR)

The silicon controlled rectifier (SCR) The silicon controlled rectifier (SCR) Shockley diodes are curious devices, but rather limited in application. Their usefulness may be expanded, however, by equipping them with another means of latching.

More information

JFET and MOSFET Characterization

JFET and MOSFET Characterization Laboratory-3 JFET and MOSFET Characterization Introduction Precautions The objectives of this experiment are to observe the operating characteristics of junction field-effect transistors (JFET's) and metal-oxide-semiconductor

More information