Focus in Phys 253. Basic electronics, mechanical design Prototyping skills Independent design

Size: px
Start display at page:

Download "Focus in Phys 253. Basic electronics, mechanical design Prototyping skills Independent design"

Transcription

1 Focus in Phys 253 Basic electronics, mechanical design Prototyping skills Independent design PHYS 253 Introduction to Instrument Design Instructors Andre Marziali, Jon Nakane Tech Bernhard Zender TAs Matt Lam, Theo Pacson, Ryan Wicks 1 Practical problemsolving Team work Prioritization of time, team effort Estimating time, effort for technical tasks 2 Schedule First six weeks: Lecture: Tue 2:00 5:00 Henn 201 Lab: Thurs 2:00? (typically 9:30) Hebb 42 After week 6: Lab: Tue & Thurs 2:00 10pm additional days and evenings as required. Formal Labs (6 weeks) 1 Microcontrollers and digital I/O 2 Analog circuits 3 Analog input 4 PWM and Power circuits 5 Software PID control and servos (2 weeks) Machine Shop Course ALL STUDENTS take the machine shop course (10 hrs lecture) if they have not completed the 40hour shop course. 10hr course for groups of 6 held on two afternoons (M/W/F), signup during Lab 1 Design and design review (1 week) Construction (6 weeks) Individual timetrials (week 12) Wed May 11, 1pm 3pm, Henn201 (attendance required for all students) Machine Shop Intro and Safety Fri May 13, 2pm 3:30pm, Henn201 (attendance required for all students) Intro to Solidworks / OMAX waterjet cutting 3 Competition: Thurs Aug 4th, 10am Cleanup Friday Aug 5 th, 10am 3pm Final Report Friday August 12 th 4 Team Mark Competition results 25% Robot design / construction: 30% Individual timetrials: 25% Design Review 20% Lab practice and Safety Max 20% (parts hoarding, unsafe practice, messy space, etc) Individual Mark Team self evaluation: ± 10% Lab performance: ± 20% References and Other References There is no required text. Lecture notes, labs and data sheets will be posted on web page: refer to Wiring programming website (wiring.org.co) Horowitz and Hill, Sedra and Smith MIT Course Notes (link on course website) Online Component Vendors (Newark, McMaster) Logbooks necessary for labs & construction, but not marked 5 6 1

2 Ph253 final 2011: Climbing Bots! 7 8 Smart instruments Mechanical thermostat The use of microprocessors to replace mechanical systems leads to better performance higher reliability more complex behavior with a mechanically simpler instrument often lower total cost of instrument Eg #1: mechanical vs. electronic thermostats 9 Uses a bimetallic strip to sense temperature, and a mercury switch to turn heat on and off. inaccurate large temperature swings subject to perturbation by mech. damage, friction effects, dirt etc. mechanically complex (and hazardous contains mercury) 10 Electronic thermostat Uses a sensor to sense temperature, makes complex decisions using a microprocessor, and then uses a relay to turn heat on and off. accurate and stable (limited only by sensor) adjustable temperature swings, and accurate control not easily damaged, does not wear out mechanically very simple can react intelligently to large temperature swings can adjust itself based on time of day can learn behavior of house it is heating to correct heat in advance of request (can predict the future)

3 Analog inputs Digital Inputs Some terminology Vcc or V (for example 9V) Motor Outputs Ground (0V) circuit circuit circuit Vee or V (for example 9V) Referred to as Voltage or Power rails and usually not shown. (This does not violate conservation of energy) TINAH microcontroller board Lab 1 Digital Inputs Getting information INTO your microprocessor Leaving highimpedance input lines to float to unspecified voltages when disconnected is bad engineering practice inputs are almost always pulled to an internal voltage reference so they have a clearly defined state. CAREFUL WHAT YOU PULLUP THOUGH some lines are supposed to be left open or grounded: Read the data sheets. Digital input digital(7) J2 V V 47k TINAH board digital inputs Pullup up resistor Buffer U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Ib2 Ib1 Ib0 Yb3 Yb2 Yb1 Yb0 15 Digital input schematic Pullup resistors Digital inputs A digital buffer chip, used to protect the microcontroller from high voltages, currents To microcontroller 16 Digital Inputs Touch sensor Digital Inputs Touch sensor A simple mechanical switch can be used as a collision or touch sensor V 17 switch no nc c J2 V if (digital(7)) printf ( switch closed ) else printf( switch open ) 47k U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Yb3 Ib2 Yb2 Ib1 Yb1 Ib0 Yb0 When switch is pressed, digital input is pulled low (0 V) by the switch. When not pressed it is pulled high () by the resistors 18 3

4 Digital Inputs Touch sensor #include <phys253.h> #include <LiquidCrystal.h> #include <Servo253.h> /////////////////////////////////////// // Physics 253 Lecture 1 // 2009 May 4 /////////////////////////////////////// void setup() { while(!startbutton()) { LCD.clear(); LCD.home(); LCD.print("Welcome to 253!"); delay(0) ; LCD.clear(); LCD.home(); LCD.print("Come down to"); LCD.setCursor(0,1) ; LCD.print("pickup kits..."); delay(0) ; } } void loop() { while (!stopbutton()) { LCD.clear(); LCD.home(); if (digitalread(0)) { LCD.print("switch pressed."); } else { LCD.print("switch NOT pressed."); } delay() ; } while (!startbutton()) { LCD.clear(); LCD.home(); if (digitalread(0)) { LCD.print("object detected."); } else { LCD.print("object NOT detected."); } delay() ; } } 19 LM311 comparator open collector output Comparators and other chips are sometimes provided with Open Collector outputs for easy interfacing to digital inputs. Vcc V V LM 311 NPN Output pin When V < V, is turned on (conducting). Output pin is grounded through. When V >V, is off, and output pin floats unless externally pulled up!!!. (but cannot sink any current to ground). Remember: it takes very little charge to change the voltage of a disconnected wire! 20 LM311 comparator Tour of a data sheet Background info and application suggestions 21 DANGER LEVELS: Exceeding these voltages / currents will blow up the chip. 22 The most often used page how to hook up the chip. 23 Important operating characteristics: these numbers will tell you how the chip will behave. 24 4

5 V LM 311 J2 V 47k V NPN V How much power is dissipating when V is < V? 1) 2 mw 4) mw 2) 10 mw 5) 300 mw 3) 30 mw Some characteristics cannot be expressed with one number, so graphs are provided. 25 (A 9V battery holds ~ 500mAh) 26 V V LM311 comparator open collector Vcc output LM 311 NPN J2 V V 47k U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Yb3 Ib2 Yb2 Ib1 Yb1 Ib0 Yb0 The best part: example circuits designed by the pros who manufactured the chip in the first place. 27 Unlike an OPamp, the 311 is NOT a source of power! You cannot drive a load with the output pin. Now, when is off, digital input J2 is pulled high by. When is on, J2 is pulled low (~ 0.1 or 0.2 V) by. Note that the LM311 and the TINAH must share ground for this to work, but DO NOT NEED TO SHARE POWER RAILS Hz square wave ( pp ) 10 Hz square wave ( pp ) Example: QRD1114 reflectance sensor A 311 B 311 C Hz square wave (3V pp ) (all 311 are powered to GND) (square wave : 0 for a,b 1 4Vforc) Which of these circuits will turn the lamp on / off at 10 Hz? 1. A 2. B 3. A and B 4. C 5. all the above

6 Example: QRD1114 reflectance sensor Discrete devices: diodes V1 V V6 V 330 QRD1114 R4 47K R3 V5 V k 40% V2 V U1A LM311 LM339 J2 V V 47k U2 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Yb3 Ib2 Yb2 Ib1 Ib0 Yb1 Yb0 V = 0.7 V Treat as conductor I V 2 TINAH Board I = 0 A Treat as open circuit Typical ~ 0.7 V 31 Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland 32 V in = DC, V out is connected to scope only. a) V out = 5 V if = 1K b) V out = 4.3 V regardless of c) V out = 4.3 V if = 1K d) V out = 5 V if is removed e) V out = 4.3 V if is removed The following are true: 1. a 2. b,c,e Vin D1 DIODE 1k Vout Discrete devices: Transistors Transistors are semiconductor devices used to amplify a signal (e.g. small current/voltage to large current/voltage). In Phys 253, we use transistors as switches to turn on and off larger amounts of current. Two major types of transistors: 3. c,d 4. a,e MOSFETs 5. c b ~ 20 or more Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland 35 Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland 36 6

7 37 38 BJT circuit BJT circuit 3.3K V1 9V D1 LED1 3.3K NPN Typical circuit (NPN): When is closed, lamp lights up. I B = (50.7)/1k = 4.3 ma = 30 I c = (30)4.3 ma = 130 ma V BE = 0.7 V V CE = 0.3 V V2 I B 1k V BE V1 V 2N3904 I c ebc V2 I B 1k V BE V1 V 2N3904 I c Checking V BE is a quick way to test a transistor. If V BE >> 0.7 V, the transistor is dead. 41 GND 42 7

8 V1 V Typical circuit (PNP): When S2 is closed, lamp lights up. V1 V I c S2 1k V BE 2N3906 ebc V2 I B 1k V BE 2N3904 I B L2 I c GND Field Effect Transistors Gate voltage either ENHANCES or DEPLETES the conduction channel. JFET = Junction FET MOSFET = Metal Oxide Semiconductor FET MOSFETS have an insulating layer at gate so draw less current. Field Effect Transistors There are FOUR kinds of MOSFETs: Enhancement Mode: N type P type Q7 2N3906 R6 R5 V gs I d MTP3055 HUF V Q8 2N3904 V V gs Q3 IRF5305 MTP2955 I d M1 MT Current passing from source to drain now controlled by VOLTAGE at the gate (rather than by CURRENT into the base as in a BJT). 45 Increasing V gs increases I d. Depletion : Increasing V gs decreases I d 46 FET circuit

9 Enhancement: N type P type V V V V MTP305 HUF V V Q3 IRF5305 MTP2955 gds GND MTP305 HUF V V MTP305 HUF If after closing (and turning on the LED) we cut the circuit at the red line: 1. The LED will stay lit 2. The LED will go off V V MTP305 HUF GND V V For Lab #1: Design a circuit with a LM311 to interface the QRD1114 reflectance sensor to the TINAH board, with an adjustable threshold. MTP305 TINAH digital input GND Gate is floating, but lamp is still lit!!

10 Things to keep in mind for Lab 1 Bring a Lab Notebook! Common problems: Circuit (LM311) and TINAH are not connected to a common ground. The LM311 comparator output pin is not pulled up. The power rail break in the proto board is not bridged. The strobe pin of the LM311 is pulled low. The ground pin of the LM311 is not grounded. Blowing up the TINAH. Please use LM311 to interface to the frequency generator

Focus in Phys 253. Basic electronics, mechanical design Prototyping skills Independent design

Focus in Phys 253. Basic electronics, mechanical design Prototyping skills Independent design PHYS 253 Introduction to Instrument Design www.engphys.ubc.ca/phys253 Focus in Phys 253 Basic electronics, mechanical design Prototyping skills Independent design Practical problemsolving Team work Prioritization

More information

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding

Phys Lecture 3. Power circuits how to control your motors Noise and Shielding Phys 253 - Lecture 3 Power circuits how to control your motors Noise and Shielding Digital-to-Analog Conversion PWM 2 D/A Conversion and power circuits When would you like to produce an output signal that

More information

LM311 comparator open collector output. LM311 comparator open collector output. LM311 comparator open collector output

LM311 comparator open collector output. LM311 comparator open collector output. LM311 comparator open collector output 00k 40% LM3 comparator open collector output LM3 comparator open collector output ON OFF LM3 comparator open collector output Example: QRD4 reflectance sensor V V V6 V 330 R4 47K V V V QRD4 R3 V5 V LM3

More information

Lecture 2 Analog circuits. Seeing the light..

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

More information

Lab 1 - Revisited. Oscilloscope demo IAP Lecture 2 1

Lab 1 - Revisited. Oscilloscope demo IAP Lecture 2 1 Lab 1 - Revisited Display signals on scope Measure the time, frequency, voltage visually and with the scope Voltage measurement* Build simple circuits on a protoboard.* Oscilloscope demo 6.091 IAP Lecture

More information

Sonoma State University Department of Engineering Science Fall 2017

Sonoma State University Department of Engineering Science Fall 2017 ES-110 Laboratory Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 7 Introduction to Transistors Introduction As we mentioned before, diodes have many applications which are

More information

Lecture 2 Analog circuits...or How to detect the Alarm beacon

Lecture 2 Analog circuits...or How to detect the Alarm beacon Lecture 2 Analog circuits..or How to detect the Alarm beacon I t IR light generates collector current V1 9V +V I c Q1 OP805 IR detection Vout Noise sources: Electrical (60Hz, 120Hz, 180Hz.) Other electrical

More information

Field Effect Transistors

Field Effect Transistors Field Effect Transistors Purpose In this experiment we introduce field effect transistors (FETs). We will measure the output characteristics of a FET, and then construct a common-source amplifier stage,

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

Physics 364, Fall 2012, reading due your answers to by 11pm on Thursday

Physics 364, Fall 2012, reading due your answers to by 11pm on Thursday Physics 364, Fall 2012, reading due 2012-10-25. Email your answers to ashmansk@hep.upenn.edu by 11pm on Thursday Course materials and schedule are at http://positron.hep.upenn.edu/p364 Assignment: (a)

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

ME 4447 / 6405 Student Lecture. Transistors. Abiodun Otolorin Michael Abraham Waqas Majeed

ME 4447 / 6405 Student Lecture. Transistors. Abiodun Otolorin Michael Abraham Waqas Majeed ME 4447 / 6405 Student Lecture Transistors Abiodun Otolorin Michael Abraham Waqas Majeed Lecture Overview Transistor? History Underlying Science Properties Types of transistors Bipolar Junction Transistors

More information

Dr. Charles Kim ELECTRONICS I. Lab 5 Bipolar Junction Transistor (BJT) I TRADITIONAL LAB

Dr. Charles Kim ELECTRONICS I. Lab 5 Bipolar Junction Transistor (BJT) I TRADITIONAL LAB ELECTRONICS I Lab 5 Bipolar Junction Transistor (BJT) I TRADITIONAL LAB MOBILE STUDIO LAB Before We Start A transistor is a 3-terminal device available in two configurations, NPN and PNP. The transistor

More information

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

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

More information

4 Transistors. 4.1 IV Relations

4 Transistors. 4.1 IV Relations 4 Transistors Due date: Sunday, September 19 (midnight) Reading (Bipolar transistors): HH sections 2.01-2.07, (pgs. 62 77) Reading (Field effect transistors) : HH sections 3.01-3.03, 3.11-3.12 (pgs. 113

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

COLLECTOR DRAIN BASE GATE EMITTER. Applying a voltage to the Gate connection allows current to flow between the Drain and Source connections.

COLLECTOR DRAIN BASE GATE EMITTER. Applying a voltage to the Gate connection allows current to flow between the Drain and Source connections. MOSFETS Although the base current in a transistor is usually small (< 0.1 ma), some input devices (e.g. a crystal microphone) may be limited in their output. In order to overcome this, a Field Effect Transistor

More information

Experiment (1) Principles of Switching

Experiment (1) Principles of Switching Experiment (1) Principles of Switching Introduction When you use microcontrollers, sometimes you need to control devices that requires more electrical current than a microcontroller can supply; for this,

More information

Electronics, Sensors, and Actuators

Electronics, Sensors, and Actuators Electronics, Sensors, and Actuators 4/14/15 David Flicker BE107 Overview Basic electronics and components Sensors Actuators Electronics 101 Voltage, V, is fundamentally how much energy is gained or lost

More information

Reading. Lecture 17: MOS transistors digital. Context. Digital techniques:

Reading. Lecture 17: MOS transistors digital. Context. Digital techniques: Reading Lecture 17: MOS transistors digital Today we are going to look at the analog characteristics of simple digital devices, 5. 5.4 And following the midterm, we will cover PN diodes again in forward

More information

Dr. Charles Kim ELECTRONICS I. Lab 6 Bipolar Junction Transistor (BJT) II TRADITIONAL LAB

Dr. Charles Kim ELECTRONICS I. Lab 6 Bipolar Junction Transistor (BJT) II TRADITIONAL LAB ELECTRONICS I Lab 6 Bipolar Junction Transistor (BJT) II TRADITIONAL LAB MOBILE STUDIO LAB Before We Start As the title of this lab says, this lab is about designing a Common-Emitter Amplifier, and this

More information

Carleton University. Faculty of Engineering, Department of Electronics ELEC 2507 / PLT 2006A - Electronic - I Winter Term 2016

Carleton University. Faculty of Engineering, Department of Electronics ELEC 2507 / PLT 2006A - Electronic - I Winter Term 2016 Carleton University Faculty of Engineering, Department of Electronics ELEC 2507 / PLT 2006A - Electronic - I Winter Term 2016 Instructor: Name Sections Office/hours Email Prof. Ram Achar A&B 3036 MC Tue:

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

Assignments from last week

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

More information

Lecture 9 Transistors

Lecture 9 Transistors Lecture 9 Transistors Physics Transistor/transistor logic CMOS logic CA 1947 http://www.extremetech.com/extreme/164301-graphenetransistors-based-on-negative-resistance-could-spell-theend-of-silicon-and-semiconductors

More information

I E I C since I B is very small

I E I C since I B is very small Figure 2: Symbols and nomenclature of a (a) npn and (b) pnp transistor. The BJT consists of three regions, emitter, base, and collector. The emitter and collector are usually of one type of doping, while

More information

Electronics: Design and Build Training Session. Presented By: Dr. Shakti Singh Hazem Elgabra Amna Siddiqui

Electronics: Design and Build Training Session. Presented By: Dr. Shakti Singh Hazem Elgabra Amna Siddiqui Electronics: Design and Build Training Session Presented By: Dr. Shakti Singh Hazem Elgabra Amna Siddiqui Basic prototyping and measurement tools Breadboard basics Back View VCC GND VSS Breadboard basics

More information

Other Electronic Devices

Other Electronic Devices Other Electronic Devices 1 Contents Field-Effect Transistors(FETs) - JFETs - MOSFETs Insulate Gate Bipolar Transistors(IGBTs) H-bridge driver and PWM Silicon-Controlled Rectifiers(SCRs) TRIACs Device Selection

More information

ECE 363 FINAL (F16) 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts)

ECE 363 FINAL (F16) 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts) ECE 363 FINAL (F16) NAME: 6 problems for 100 pts Problem #1: Fuel Pump Controller (18 pts) You are asked to design a high-side switch for a remotely operated fuel pump. You decide to use the IRF9520 power

More information

TRANSISTOR TRANSISTOR

TRANSISTOR TRANSISTOR It is made up of semiconductor material such as Si and Ge. Usually, it comprises of three terminals namely, base, emitter and collector for providing connection to the external circuit. Today, some transistors

More information

Carleton University. Faculty of Engineering and Design, Department of Electronics. ELEC 2507 Electronic - I Summer Term 2017

Carleton University. Faculty of Engineering and Design, Department of Electronics. ELEC 2507 Electronic - I Summer Term 2017 Carleton University Faculty of Engineering and Design, Department of Electronics Instructors: ELEC 2507 Electronic - I Summer Term 2017 Name Section Office Email Prof. Q. J. Zhang Section A 4148 ME qjz@doe.carleton.ca

More information

55:041 Electronic Circuits

55:041 Electronic Circuits 55:041 Electronic Circuits Output Stages and Power Amplifiers Sections of Chapter 8 A. Kruger Power + Output Stages1 Power Amplifiers, Power FETS & BJTs Audio (stereo) MP3 Players Motor controllers Servo

More information

4-bit counter circa bit counter circa 1990

4-bit counter circa bit counter circa 1990 Digital Logic 4-bit counter circa 1960 8-bit counter circa 1990 Logic gates Operates on logical values (TRUE = 1, FALSE = 0) NOT AND OR XOR 0-1 1-0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0 0 0

More information

ECE:3410 Electronic Circuits

ECE:3410 Electronic Circuits ECE:3410 Electronic Circuits Output Stages and Power Amplifiers Sections of Chapter 8 A. Kruger Power + Output Stages1 Power Amplifiers, Power FETS & BJTs Audio (stereo) MP3 Players Motor controllers Servo

More information

Physics 481 Experiment 3

Physics 481 Experiment 3 Physics 481 Experiment 3 LAST Name (print) FIRST Name (print) TRANSISTORS (BJT & FET) npn BJT n-channel MOSFET 1 Experiment 3 Transistors: BJT & FET In this experiment transistor properties and transistor

More information

Figure 1: JFET common-source amplifier. A v = V ds V gs

Figure 1: JFET common-source amplifier. A v = V ds V gs Chapter 7: FET Amplifiers Switching and Circuits The Common-Source Amplifier In a common-source (CS) amplifier, the input signal is applied to the gate and the output signal is taken from the drain. The

More information

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

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

More information

Physics 335 Lab 1 Intro to Digital Logic

Physics 335 Lab 1 Intro to Digital Logic Physics 33 Lab 1 Intro to Digital Logic We ll be introducing you to digital logic this quarter. Some things will be easier for you than analog, some things more difficult. Digital is an all together different

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

Analog and Telecommunication Electronics

Analog and Telecommunication Electronics Politecnico di Torino - ICT School Analog and Telecommunication Electronics F3 - Actuator driving» Driving BJT switches» Driving MOS-FET» SOA and protection» Smart switches 29/06/2011-1 ATLCE - F3-2011

More information

55:041 Electronic Circuits

55:041 Electronic Circuits 55:041 Electronic Circuits Output Stages and Power Amplifiers Sections of Chapter 8 A. Kruger Power + Output Stages1 Power Amplifiers, Power FETS & BJTs Audio (stereo) MP3 Players Motor controllers Servo

More information

Chapter 11 Output Stages

Chapter 11 Output Stages 1 Chapter 11 Output Stages Learning Objectives 2 1) The classification of amplifier output stages 2) Analysis and design of a variety of output-stage types 3) Overview of power amplifiers Introduction

More information

PreLab 7: LED Blinker (Due Oct 30)

PreLab 7: LED Blinker (Due Oct 30) GOAL PreLab 7: LED Blinker (Due Oct 30) The overall goal of Lab 7 is to demonstrate a two-led blinker with adjustable frequency. This is a two-week lab. The first week involves designing and testing a

More information

ES 330 Electronics II Homework # 2 (Fall 2016 Due Wednesday, September 7, 2016)

ES 330 Electronics II Homework # 2 (Fall 2016 Due Wednesday, September 7, 2016) Page1 Name ES 330 Electronics II Homework # 2 (Fall 2016 Due Wednesday, September 7, 2016) Problem 1 (15 points) You are given an NMOS amplifier with drain load resistor R D = 20 k. The DC voltage (V RD

More information

The Common Source JFET Amplifier

The Common Source JFET Amplifier The Common Source JFET Amplifier Small signal amplifiers can also be made using Field Effect Transistors or FET's for short. These devices have the advantage over bipolar transistors of having an extremely

More information

EE 320 L LABORATORY 9: MOSFET TRANSISTOR CHARACTERIZATIONS. by Ming Zhu UNIVERSITY OF NEVADA, LAS VEGAS 1. OBJECTIVE 2. COMPONENTS & EQUIPMENT

EE 320 L LABORATORY 9: MOSFET TRANSISTOR CHARACTERIZATIONS. by Ming Zhu UNIVERSITY OF NEVADA, LAS VEGAS 1. OBJECTIVE 2. COMPONENTS & EQUIPMENT EE 320 L ELECTRONICS I LABORATORY 9: MOSFET TRANSISTOR CHARACTERIZATIONS by Ming Zhu DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS 1. OBJECTIVE Get familiar with MOSFETs,

More information

Prof. Steven S. Saliterman Introductory Medical Device Prototyping

Prof. Steven S. Saliterman Introductory Medical Device Prototyping Introductory Medical Device Prototyping Department of Biomedical Engineering, University of Minnesota http://saliterman.umn.edu/ Solid state power switching: Silicon controlled rectifiers (SCR or Thyristor).

More information

Analog and Telecommunication Electronics

Analog and Telecommunication Electronics Politecnico di Torino - ICT School Analog and Telecommunication Electronics F2 Active power devices»mos»bjt» IGBT, TRIAC» Safe Operating Area» Thermal analysis 30/05/2012-1 ATLCE - F2-2011 DDC Lesson F2:

More information

visit website regularly for updates and announcements

visit website regularly for updates and announcements ESE 372: Electronics Spring 2013 Web site: www.ece.sunysb.edu/~oe/leon.html visit website regularly for updates and announcements Prerequisite: ESE 271 Corequisites: ESE 211 Text Books: A.S. Sedra, K.C.

More information

Student Lecture by: Giangiacomo Groppi Joel Cassell Pierre Berthelot September 28 th 2004

Student Lecture by: Giangiacomo Groppi Joel Cassell Pierre Berthelot September 28 th 2004 Student Lecture by: Giangiacomo Groppi Joel Cassell Pierre Berthelot September 28 th 2004 Lecture outline Historical introduction Semiconductor devices overview Bipolar Junction Transistor (BJT) Field

More information

Electronic Component Applications

Electronic Component Applications Western Technical College 10660124 Electronic Component Applications Course Outcome Summary Course Information Description Career Cluster Instructional Level Total Credits 2.00 Total Hours 60.00 Solid

More information

Use the fixed 5 volt supplies for your power in digital circuits, rather than the variable outputs.

Use the fixed 5 volt supplies for your power in digital circuits, rather than the variable outputs. Physics 33 Lab 1 Intro to Digital Logic We ll be introducing you to digital logic this quarter. Some things will be easier for you than analog, some things more difficult. Digital is an all together different

More information

EIE209 Basic Electronics. Transistor Devices. Contents BJT and FET Characteristics Operations. Prof. C.K. Tse: T ransistor devices

EIE209 Basic Electronics. Transistor Devices. Contents BJT and FET Characteristics Operations. Prof. C.K. Tse: T ransistor devices EIE209 Basic Electronics Transistor Devices Contents BJT and FET Characteristics Operations 1 What is a transistor? Three-terminal device whose voltage-current relationship is controlled by a third voltage

More information

ANALOG FUNDAMENTALS C. Topic 4 BASIC FET AMPLIFIER CONFIGURATIONS

ANALOG FUNDAMENTALS C. Topic 4 BASIC FET AMPLIFIER CONFIGURATIONS AV18-AFC ANALOG FUNDAMENTALS C Topic 4 BASIC FET AMPLIFIER CONFIGURATIONS 1 ANALOG FUNDAMENTALS C AV18-AFC Overview This topic identifies the basic FET amplifier configurations and their principles of

More information

UNIT-1 Bipolar Junction Transistors. Text Book:, Microelectronic Circuits 6 ed., by Sedra and Smith, Oxford Press

UNIT-1 Bipolar Junction Transistors. Text Book:, Microelectronic Circuits 6 ed., by Sedra and Smith, Oxford Press UNIT-1 Bipolar Junction Transistors Text Book:, Microelectronic Circuits 6 ed., by Sedra and Smith, Oxford Press Figure 6.1 A simplified structure of the npn transistor. Microelectronic Circuits, Sixth

More information

Chapter 6: Field-Effect Transistors

Chapter 6: Field-Effect Transistors Chapter 6: Field-Effect Transistors FETs vs. BJTs Similarities: Amplifiers Switching devices Impedance matching circuits Differences: FETs are voltage controlled devices. BJTs are current controlled devices.

More information

Semiconductor analyser AS4002P User Manual

Semiconductor analyser AS4002P User Manual Semiconductor analyser AS4002P User Manual Copyright Ormelabs (C) 2010 http://www.ormelabs.com 1 CONTENTS SECTION Page SECTION 1: Introduction... 3 SECTION 2: Features... 3 SECTION 3: Component analysis...

More information

Technological Studies. - Applied Electronics (H) TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS. Transistors. Craigmount High School 1

Technological Studies. - Applied Electronics (H) TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS. Transistors. Craigmount High School 1 TECHNOLOGICAL STUDIES HIGHER APPLIED ELECTRONICS Transistors Craigmount High School 1 APPLIED ELECTRONICS Outcome 1 - Design and construct electronic systems to meet given specifications When you have

More information

Lecture 14. Field Effect Transistor (FET) Sunday 26/11/2017 FET 1-1

Lecture 14. Field Effect Transistor (FET) Sunday 26/11/2017 FET 1-1 Lecture 14 Field Effect Transistor (FET) Sunday 26/11/2017 FET 1-1 Outline Introduction to FET transistors Types of FET Transistors Junction Field Effect Transistor (JFET) Characteristics Construction

More information

Name: Date: Score: / (75)

Name: Date: Score: / (75) Name: Date: Score: / (75) This lab MUST be done in your normal lab time NO LATE LABS Bring Textbook to Lab. You don t need to use your lab notebook, just fill in the blanks, you ll be graded when you re

More information

4-bit counter circa bit counter circa 1990

4-bit counter circa bit counter circa 1990 Digital Logic 4-bit counter circa 1960 8-bit counter circa 1990 Logic gates Operates on logical values (TRUE = 1, FALSE = 0) NOT AND OR XOR 0-1 1-0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0 0 0

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

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

Lecture - 18 Transistors

Lecture - 18 Transistors Electronic Materials, Devices and Fabrication Dr. S. Prarasuraman Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras Lecture - 18 Transistors Last couple of classes

More information

Logic Families. Describes Process used to implement devices Input and output structure of the device. Four general categories.

Logic Families. Describes Process used to implement devices Input and output structure of the device. Four general categories. Logic Families Characterizing Digital ICs Digital ICs characterized several ways Circuit Complexity Gives measure of number of transistors or gates Within single package Four general categories SSI - Small

More information

Radivoje Đurić, 2015, Analogna Integrisana Kola 1

Radivoje Đurić, 2015, Analogna Integrisana Kola 1 OTA-output buffer 1 According to the types of loads, the driving capability of the output stages differs. For switched capacitor circuits which have high impedance capacitive loads, class A output stage

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

Field - Effect Transistor

Field - Effect Transistor Page 1 of 6 Field - Effect Transistor Aim :- To draw and study the out put and transfer characteristics of the given FET and to determine its parameters. Apparatus :- FET, two variable power supplies,

More information

IFB270 Advanced Electronic Circuits

IFB270 Advanced Electronic Circuits IFB270 Advanced Electronic Circuits Chapter 9: FET amplifiers and switching circuits Prof. Manar Mohaisen Department of EEC Engineering Review of the Precedent Lecture Review of basic electronic devices

More information

ECE 203 LAB 6: INVERTED PENDULUM

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

More information

ELECTRONIC GIANT. EG3012 Datasheet. Half-Bridge Driver. Copyright 2012 by EGmicro Corporation REV 1.0

ELECTRONIC GIANT. EG3012 Datasheet. Half-Bridge Driver. Copyright 2012 by EGmicro Corporation REV 1.0 ELECTRONIC GIANT EG32 Datasheet Copyright 22 by EGmicro Corporation REV. EG32 datasheet Contents. Features... 2 2. General Description... 2 3. Applications... 2 4. Device Information... 3 4.. Pin map...

More information

Lecture 17. Field Effect Transistor (FET) FET 1-1

Lecture 17. Field Effect Transistor (FET) FET 1-1 Lecture 17 Field Effect Transistor (FET) FET 1-1 Outline ntroduction to FET transistors Comparison with BJT transistors FET Types Construction and Operation of FET Characteristics Of FET Examples FET 1-2

More information

L MOSFETS, IDENTIFICATION, CURVES. PAGE 1. I. Review of JFET (DRAW symbol for n-channel type, with grounded source)

L MOSFETS, IDENTIFICATION, CURVES. PAGE 1. I. Review of JFET (DRAW symbol for n-channel type, with grounded source) L.107.4 MOSFETS, IDENTIFICATION, CURVES. PAGE 1 I. Review of JFET (DRAW symbol for n-channel type, with grounded source) 1. "normally on" device A. current from source to drain when V G = 0 no need to

More information

Field Effect Transistors (npn)

Field Effect Transistors (npn) Field Effect Transistors (npn) gate drain source FET 3 terminal device channel e - current from source to drain controlled by the electric field generated by the gate base collector emitter BJT 3 terminal

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

FET, BJT, OpAmp Guide

FET, BJT, OpAmp Guide FET, BJT, OpAmp Guide Alexandr Newberry UCSD PHYS 120 June 2018 1 FETs 1.1 What is a Field Effect Transistor? Figure 1: FET with all relevant values labelled. FET stands for Field Effect Transistor, it

More information

Page 1 of 7. Power_AmpFal17 11/7/ :14

Page 1 of 7. Power_AmpFal17 11/7/ :14 ECE 3274 Power Amplifier Project (Push Pull) Richard Cooper 1. Objective This project will introduce two common power amplifier topologies, and also illustrate the difference between a Class-B and a Class-AB

More information

ECE/CoE 0132: FETs and Gates

ECE/CoE 0132: FETs and Gates ECE/CoE 0132: FETs and Gates Kartik Mohanram September 6, 2017 1 Physical properties of gates Over the next 2 lectures, we will discuss some of the physical characteristics of integrated circuits. We will

More information

Conventional transistor overview and special transistors

Conventional transistor overview and special transistors Conventional transistor overview and special transistors 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

More information

Current Mirrors. Basic BJT Current Mirror. Current mirrors are basic building blocks of analog design. Figure shows the basic NPN current mirror.

Current Mirrors. Basic BJT Current Mirror. Current mirrors are basic building blocks of analog design. Figure shows the basic NPN current mirror. Current Mirrors Basic BJT Current Mirror Current mirrors are basic building blocks of analog design. Figure shows the basic NPN current mirror. For its analysis, we assume identical transistors and neglect

More information

Three Terminal Devices

Three Terminal Devices Three Terminal Devices - field effect transistor (FET) - bipolar junction transistor (BJT) - foundation on which modern electronics is built - active devices - devices described completely by considering

More information

Lab 2: Discrete BJT Op-Amps (Part I)

Lab 2: Discrete BJT Op-Amps (Part I) Lab 2: Discrete BJT Op-Amps (Part I) This is a three-week laboratory. You are required to write only one lab report for all parts of this experiment. 1.0. INTRODUCTION In this lab, we will introduce and

More information

Lecture 16. Complementary metal oxide semiconductor (CMOS) CMOS 1-1

Lecture 16. Complementary metal oxide semiconductor (CMOS) CMOS 1-1 Lecture 16 Complementary metal oxide semiconductor (CMOS) CMOS 1-1 Outline Complementary metal oxide semiconductor (CMOS) Inverting circuit Properties Operating points Propagation delay Power dissipation

More information

Phy 335, Unit 4 Transistors and transistor circuits (part one)

Phy 335, Unit 4 Transistors and transistor circuits (part one) Mini-lecture topics (multiple lectures): Phy 335, Unit 4 Transistors and transistor circuits (part one) p-n junctions re-visited How does a bipolar transistor works; analogy with a valve Basic circuit

More information

6. Field-Effect Transistor

6. Field-Effect Transistor 6. Outline: Introduction to three types of FET: JFET MOSFET & CMOS MESFET Constructions, Characteristics & Transfer curves of: JFET & MOSFET Introduction The field-effect transistor (FET) is a threeterminal

More information

ES 330 Electronics II Fall 2016

ES 330 Electronics II Fall 2016 ES 330 Electronics II Fall 2016 Sect Lectures Location Instructor Office Office Hours Email Tel 001 001 9:00 am to 9:50 am Wednesday 10:00 am to 10 :50 am 2001 2001 Dr. Donald Estreich Dr. Donald Estreich

More information

Electronics 101 v2.0

Electronics 101 v2.0 Electronics 101 v2.0 Jean-François Duval (jfduval@mit.edu) & Palash Nandy (palash@media.mit.edu) MIT MAS863: How To Make (almost) Anything, 10/15/2015 Recitation Plan Introduction & goal Essential Laws

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

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: 3 Field Effect Transistors Lecture-7 High Frequency

More information

Interfacing the isppac-powr1208 with Modular DC-to-DC Converters

Interfacing the isppac-powr1208 with Modular DC-to-DC Converters with Modular s January 2003 Application Note AN6046 Introduction The isppac -POWR1208 is a single-chip, fully integrated solution to supervisory and control problems encountered when implementing on-board

More information

Design cycle for MEMS

Design cycle for MEMS Design cycle for MEMS Design cycle for ICs IC Process Selection nmos CMOS BiCMOS ECL for logic for I/O and driver circuit for critical high speed parts of the system The Real Estate of a Wafer MOS Transistor

More information

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts)

ECE 363 EXAM #2 (F18) 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) ECE 363 EXAM #2 (F18) NAME: 4 problems for 100 pts Problem #1: Amplifier Output Error (25 pts) Consider an optical communication link for an infrared remote control. A transmitter sends a train of infrared

More information

ELECTRONIC GIANT. EG3013 Datasheet. Half-Bridge Driver. Copyright 2012 by EGmicro Corporation REV 1.0

ELECTRONIC GIANT. EG3013 Datasheet. Half-Bridge Driver. Copyright 2012 by EGmicro Corporation REV 1.0 ELECTRONIC GIANT EG33 Datasheet Copyright 22 by EGmicro Corporation REV. EG33 datasheet Contents. Features... 2 2. General Description... 2 3. Applications... 2 4. Device Information... 3 4.. Pin map...

More information

EECE 2413 Electronics Laboratory

EECE 2413 Electronics Laboratory EECE 2413 Electronics Laboratory Lab #5: MOSFETs and CMOS Goals This lab will introduce you to MOSFETs (metal-oxide-semiconductor field effect transistors). You will build a MOSFET inverter and determine

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

Application Note CDIAN003

Application Note CDIAN003 Application Note CDIAN003 CDI GaN Bias Board User s Guide Revision 4.0 February 20, 2015 Quick Start Guide Shown below are the essential connections, controls, and indicators for the GaN Bias Control Board.

More information

Name & SID 1 : Name & SID 2:

Name & SID 1 : Name & SID 2: EE40 Final Project-1 Smart Car Name & SID 1 : Name & SID 2: Introduction The final project is to create an intelligent vehicle, better known as a robot. You will be provided with a chassis(motorized base),

More information

PreLab 6 PWM Design for H-bridge Driver (due Oct 23)

PreLab 6 PWM Design for H-bridge Driver (due Oct 23) GOAL PreLab 6 PWM Design for H-bridge Driver (due Oct 23) The overall goal of Lab6 is to demonstrate a DC motor controller that can adjust speed and direction. You will design the PWM waveform and digital

More information

PREVIEW COPY. Amplifiers. Table of Contents. Introduction to Amplifiers...3. Single-Stage Amplifiers...19

PREVIEW COPY. Amplifiers. Table of Contents. Introduction to Amplifiers...3. Single-Stage Amplifiers...19 Amplifiers Table of Contents Lesson One Lesson Two Lesson Three Introduction to Amplifiers...3 Single-Stage Amplifiers...19 Amplifier Performance and Multistage Amplifiers...35 Lesson Four Op Amps...51

More information

Basic Microprocessor Interfacing Trainer Lab Manual

Basic Microprocessor Interfacing Trainer Lab Manual Basic Microprocessor Interfacing Trainer Lab Manual Control Inputs Microprocessor Data Inputs ff Control Unit '0' Datapath MUX Nextstate Logic State Memory Register Output Logic Control Signals ALU ff

More information