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 PHYS 253 Introduction to Instrument Design Focus in Phys 253 Basic electronics, mechanical design Prototyping skills Independent design Practical problemsolving Team work Prioritization of time, team effort Estimating time, effort for technical tasks Instructors Andre Marziali, Jon Nakane Tech Bernhard Zender TAs Matt Lam, Nick Geraedts, Allison Schaap Machine Shop Nick Lemmel Technical Support Sing Chow, Tongkai Huang 1 2 Schedule First six weeks: Lecture: Tue 2:00 4:30 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 Wed May 6, 1 2:30pm, Henn201 (B. Zender) Machine Shop Intro and Safety Intro to Solidworks / OMAX waterjet cutting Mon May 11, 12:30pm, Henn201 (R. Coope) Intro to Structural Design Design and design review (1 week) Construction (6 weeks) Individual timetrials (week 12) Competition: Thurs July 30 th, 10am Cleanup Friday July 31 st, 10am Final Report Friday August 7 th, 10am Review of past 253 robots 3 4 Team Mark Competition results 25% Robot design / construction: 30% Individual timetrials: 25% Design Review 20% Inappropriate lab practice Max 20% (parts hoarding, unsafe practice, messy space, etc) Individual Mark Team self evaluation: ± 10% Lab performance: ± 20% References There is no required text. Lecture notes, labs and data sheets will be posted on web page: Manuals (Interactive C, HandyBoard) Labs, lectures Data Sheets Other Suggested reading Horowitz and Hill, Sedra and Smith MIT Course Notes (link on course website) Catalogues (Newark, McMaster) Logbooks necessary for labs & construction, but not marked 5 6 1

2 2009 Ph253 final: Return of the RESCUE BOTS North Vancouver, 2018: All attempts to regulate access to the Grouse Grind have failed, and throngs of poorly equipped hikers now routinely walk up what has become the world s steepest singles club. As a result, the number of search and rescue operations to retrieve stranded lonely hearts has reached astronomical proportions. A new, less demanding means of recovering the hikers must be found. A new crown corporation, Rescuebots Inc, has asked for tenders to construct robots capable of autonomously searching for and rescuing hikers. You are one of many bidders on a contract to develop a prototype robot to accomplish this task. 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. Sensors Thermocouples RTD Potentiometers TC Encoders Phototransistors Reflectance Capacitive proximity Conductance Photoresistive (CdS) CCD (Video) Photomultipliers Pressure information Strain Piezo Reed switches Mechanical switch Hall effect sensor (B field) Accelerometers Tilt switch Smart instruments Microcontroller AI DI AO DO Actuators DC Motors AC motors Algorithm Servos accurate and stable (limited only by sensor) (CPU) Stepper motors Pneumatic actuators adjustable temperature swings, and accurate control Or action Hydraulic actuators not easily damaged, does not wear out Solenoids FPGA Lights mechanically very simple LEDs can react intelligently to large temperature swings Or Display (Text or video) Heaters can adjust itself based on time of day Digital logic Peltier cooler can learn behavior of house it is heating to correct heat Data link. Sonar in advance of request (can predict the future) Feedback? Data link.. 2

3 Analog inputs Digital Inputs Motor Outputs TINAH microcontroller board Some terminology Vcc or V (for example 9V) Ground (0V) circuit Vee or V (for example 9V) circuit circuit Referred to as Voltage or Power rails and usually not shown. (This does not violate conservation of energy) 15 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 47k TINAH board digital inputs Pullup resistor Buffer U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Ib2 Ib1 Ib0 Yb3 Yb2 Yb1 Yb0 16 Digital input schematic Pullup resistors A digital buffer chip, used to protect the microcontroller from high voltages, currents To microcontroller Digital Inputs Touch sensor Digital inputs

4 Digital Inputs Touch sensor Digital Inputs Touch sensor A simple mechanical switch can be used as a collision or touch sensor switch no nc c J2 if (digital(7)) printf ( switch closed ) else printf( switch open ) 47k U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Ib2 Ib1 Ib0 Yb3 Yb2 Yb1 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 19 #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() ; } } 20 LM311 comparator open collector output Comparators and other chips are sometimes provided with Open Collector outputs for easy interfacing to digital inputs. Vcc V LM 311 Output pin LM311 comparator Tour of a data sheet V NPN 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 Background info and application suggestions disconnected wire! LM311 comparator Example of a data sheet LM311 comparator Example of a data sheet DANGER LEVELS: Exceeding these voltages / currents will blow up the chip. 23 The most often used page how to hook up the chip. 24 4

5 LM311 comparator Example of a data sheet LM311 comparator Example of a data sheet Important operating characteristics: these numbers will tell Some characteristics cannot be expressed with one number, you how the chip will behave. so graphs are provided LM311 comparator Example of a data sheet LM311 comparator Example of a data sheet V LM 311 J2 Ω 47k V NPN How much power is dissipating when V is < V? 1) 2 mw 4) mw 2) 10 mw 5) 300 mw 3) 30 mw (A 9V battery holds ~ 500mAh) 27 The best part: example circuits designed by the pros who manufactured the chip in the first place. 28 V V LM311 comparator open collector cc output LM 311 NPN J2 U1 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Ib2 Ib1 Ib0 Yb3 Yb2 Yb1 Yb0 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. 47k Unlike an OPamp, the 311 is NOT a source of power! You cannot drive a load with the output pin. 29 A C 10 Hz square wave ( pp ) Hz square wave (3V pp ) 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 B 10 Hz square wave ( pp ) 311 (all 311 are powered to GND) (square wave : 0 for a,b 1 4 V for c) 30 5

6 Example: QRD1114 reflectance sensor Example: QRD1114 reflectance sensor V1 V6 330 QRD1114 R4 47K R3 V5 k 40% V2 U1A LM311 LM339 J2 R2 47k U2 74LS244 OEa Ia3 Ya3 Ia2 Ya2 Ia1 Ya1 Ia0 Ya0 OEb Ib3 Ib2 Ib1 Ib0 Yb3 Yb2 Yb1 Yb0 Handy Board Discrete devices: diodes Diode circuit I ;V 2 V = 0.7 V Treat as conductor I = 0 A Treat as open circuit Typical ~ 0.7 V Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland Discrete devices: diodes V in = DC, V out is connected to scope only. Vin D1 DIODE Vout V = 0.7 V Treat as conductor Vin D1 DIODE Vout 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 3. c,d 4. a,e Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland c 36 6

7 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: MOSFETs 37 Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland 38 b ~ 20 or more Diagrams courtesy of: University of St. Andrews, St Andrews, Fife KY16 9SS, Scotland BJT circuit

8 Typical circuit (NPN): When is closed, lamp lights up. I B = (50.7)/ = 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 V BE V1 R2 2N3904 I c ebc V2 I B V BE V1 R2 2N3904 I c Checking V BE is a quick way to test a transistor. If V BE >> 0.7 V, the transistor is dead. 43 GND 44 V1 R2 Typical circuit (PNP): When S2 is closed, lamp lights up. V1 I c S2 R2 V BE 2N3906 ebc V2 I B 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 MTP3055 HUF I d Q8 2N3904 V gs Q3 MTP2955 IRF5305 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). 47 Increasing V gs increases I d. Depletion : Increasing V gs decreases I d 48 8

9 FET circuit Enhancement: N type P type MTP305 HUF Q3 IRF5305 MTP2955 gds GND MTP305 HUF 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 MTP305 HUF GND

10 For Lab #1: Design a circuit with a LM311 to interface the QRD1114 reflectance sensor to the Handy Board. MTP305 TINAH digital input GND Gate is floating, but lamp is still lit!! Common errors in Lab1 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. Bring a Lab Notebook! 57 10

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

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 http://projectlab.engphys.ubc.ca/phys253/ Instructors Andre Marziali,

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

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

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

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

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

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

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

CRN: MET-487 Instrumentation and Automatic Control June 28, 2010 August 5, 2010 Professor Paul Lin

CRN: MET-487 Instrumentation and Automatic Control June 28, 2010 August 5, 2010 Professor Paul Lin CRN: 32030 MET-487 Instrumentation and Automatic Control June 28, 2010 August 5, 2010 Professor Paul Lin Course Description: Class 2, Lab 2, Cr. 3, Junior class standing and 216 Instrumentation for pressure,

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

PART 1: DESCRIPTION OF THE DIGITAL CONTROL SYSTEM

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

More information

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

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

Mechatronics 421/780. Department of Mechanical and Aeronautical Engineering. Page 1 of 10

Mechatronics 421/780. Department of Mechanical and Aeronautical Engineering. Page 1 of 10 Mechatronics 421/780 Department of Mechanical and Aeronautical Engineering Page 1 of 10 OVERVIEW AND OBJECTIVES 1. Course Overview Mechatronics (MEG 421 or MEG 780) is a multidisciplinary field of engineering

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Device Technologies. Yau - 1

Device Technologies. Yau - 1 Device Technologies Yau - 1 Objectives After studying the material in this chapter, you will be able to: 1. Identify differences between analog and digital devices and passive and active components. Explain

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

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

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

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

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

Final Exam: Electronics 323 December 14, 2010

Final Exam: Electronics 323 December 14, 2010 Final Exam: Electronics 323 December 4, 200 Formula sheet provided. In all questions give at least some explanation of what you are doing to receive full value. You may answer some questions ON the question

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

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

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

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

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin

2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control. October 5, 2009 Dr. Harrison H. Chin 2.017 DESIGN OF ELECTROMECHANICAL ROBOTIC SYSTEMS Fall 2009 Lab 4: Motor Control October 5, 2009 Dr. Harrison H. Chin Formal Labs 1. Microcontrollers Introduction to microcontrollers Arduino microcontroller

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

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

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

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

Lecture 4. Integrated Electronics

Lecture 4. Integrated Electronics Lecture 4 Integrated Electronics P, N is the doping of silicon to carry P (+) or N (-) charge) DIODES -> Recitifier I P N If V > V ON of diode, V V ON I = R Forward bias, conducting I Von ~ 0.6 V Example:

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

Linear Voltage Regulators Power supplies and chargers SMM Alavi, SBU, Fall2017

Linear Voltage Regulators Power supplies and chargers SMM Alavi, SBU, Fall2017 Linear Voltage Regulator LVRs can be classified based on the type of the transistor that is used as the pass element. The bipolar junction transistor (BJT), field effect transistor (FET), or metal oxide

More information

Figure 1.1 Mechatronic system components (p. 3)

Figure 1.1 Mechatronic system components (p. 3) Figure 1.1 Mechatronic system components (p. 3) Example 1.2 Measurement System Digital Thermometer (p. 5) Figure 2.2 Electric circuit terminology (p. 13) Table 2.2 Resistor color band codes (p. 18) Figure

More information

Quantity available (A) Quantity required (R) Sl. No. Deficiency (R - A) Description of Equipment

Quantity available (A) Quantity required (R) Sl. No. Deficiency (R - A) Description of Equipment . 2. 3. 4. 5. 6. (R 203) Semester II EE62 Electric Circuits Laboratory Regulated Power Supply: 0 5 V D.C Function Generator ( MHz) Single Phase Energy Meter Oscilloscope (20 MHz). Digital Storage Oscilloscope

More information

EE 332 Design Project

EE 332 Design Project EE 332 Design Project Variable Gain Audio Amplifier TA: Pohan Yang Students in the team: George Jenkins Mohamed Logman Dale Jackson Ben Alsin Instructor s Comments: Lab Grade: Introduction The goal of

More information

Actuators. DC Motor Servo Motor Stepper Motor. Sensors

Actuators. DC Motor Servo Motor Stepper Motor. Sensors Actuators Sensors 2 Actuators DC Motor Servo Motor Stepper Motor Sensors 3 1. The stator generates a stationary magnetic field surrounding the rotor. 2. The rotor/armature is composed of a coil which generates

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

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

MOSFET as a Switch. MOSFET Characteristics Curves

MOSFET as a Switch. MOSFET Characteristics Curves MOSFET as a Switch MOSFET s make very good electronic switches for controlling loads and in CMOS digital circuits as they operate between their cut-off and saturation regions. We saw previously, that the

More information

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE 9S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE In this sequence of three labs you will learn to use the 9S12 S hardware sybsystem. WEEK 1 PULSE WIDTH MODULATION

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

.dc Vcc Ib 0 50uA 5uA

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

More information

ECE 2010 Laboratory # 5 J.P.O Rourke

ECE 2010 Laboratory # 5 J.P.O Rourke ECE 21 Laboratory # 5 J.P.O Rourke Prelab: Simulate the circuit used in parts 1 and 2 of the Lab and record the simulated results. Your Prelab is due at the beginning of lab and will be checked off by

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

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

PHYS225 Lecture 6. Electronic Circuits

PHYS225 Lecture 6. Electronic Circuits PHYS225 Lecture 6 Electronic Circuits Transistors History Basic physics of operation Ebers-Moll model Small signal equivalent Last lecture Introduction to Transistors A transistor is a device with three

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

Physics 309 Lab 3 Bipolar junction transistor

Physics 309 Lab 3 Bipolar junction transistor Physics 39 Lab 3 Bipolar junction transistor The purpose of this third lab is to learn the principles of operation of a bipolar junction transistor, how to characterize its performances, and how to use

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

Integrated circuits: linear voltage regulator

Integrated circuits: linear voltage regulator Integrated circuits: linear voltage regulator Linear voltage regulator Circuits and electronic systems to work properly must be fed with a determined power in dc. The power supply has to provide to the

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

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning SENSORS AND TRANSDUCERS TRAINER IT.MLD900 The s and Instrumentation Trainer introduces students to input sensors, output actuators, signal conditioning circuits, and display devices through a wide range

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

EE223 Laboratory #4. Comparators

EE223 Laboratory #4. Comparators EE223 Laboratory #4 Comparators Objectives 1) Learn how to design using comparators 2) Learn how to breadboard circuits incorporating integrated circuits (ICs) 3) Learn how to obtain and read IC datasheets

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

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER

LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER LS7362 BRUSHLESS DC MOTOR COMMUTATOR / CONTROLLER FEATURES: Speed control by Pulse Width Modulating (PWM) only the low-side drivers reduces switching losses in level converter circuitry for high voltage

More information

Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 12, 2017

Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 12, 2017 Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 12, 2017 1 Purpose To measure and understand the common emitter transistor characteristic curves. To use the base current gain

More information

Homework Assignment 12

Homework Assignment 12 Homework Assignment 12 Question 1 Shown the is Bode plot of the magnitude of the gain transfer function of a constant GBP amplifier. By how much will the amplifier delay a sine wave with the following

More information

Figure 1: Motor model

Figure 1: Motor model EE 155/255 Lab #4 Revision 1, October 24, 2017 Lab 4: Motor Control In this lab you will characterize a DC motor and implement the speed controller from homework 3 with real hardware and demonstrate that

More information