More Fun with D/A Converters

Size: px
Start display at page:

Download "More Fun with D/A Converters"

Transcription

1 D/A with a PIC Miroontrollr (rap) Mor Fun with D/A Convrtrs A subroutin to driv this hip follows: void D2A(unsignd int ) { unsignd har i; TRISC0 = 0; TRISC3 = 0; TRISC5 = 0; // Add 0011 to th first four bits to st up th D/A = & 0x0FFF; = + 0x3000; RC0 = 1; RC3 = 1; // CS gos low to slt th D/A hip RC0 = 0; // Snd out 16 bits of data for (i=0; i<16; i++) { if ( & 0x8000) RC5 = 1; ls RC5 = 0; RC3 = 0; = << 1; RC3 = 1; } // CS gos high to trminat th ommuniaitons RC0 = 1; } JSG - 1 -

2 DC Motor Drivr: Driv a DC Motor at 0..20V (Voltag Control) With a D/A, a PIC an output with 4095 stps. With this, you an driv a DC motor at 0..20V with 4095 stps. Hardwar: To amplify th voltag 4x ( boms 0..20V), us a non-invrting amplifir. To amplify th urrnt, us a powr transistor (TIP112) With ngativ fdbak, V+ quals V-. For this to happn, th output must b 4x th input. Th op-amp's output is whatvr it taks to mak V+ qual to V-. With th 1.4V drop aross th transistor's bas to mittr juntion, this rsults in th op-amp outputting 4 tims th input, plus 1.4V (not that w rally ar - but it dos). Th transistor provids a urrnt gain of This mans that to driv a load of 3A, th op-amp only nds to sour 3mA - somthing an LM833 is apabl of doing. 22V D2A Output LM833 Y + 1.4V 4 Ib Y = 4 b I TIP112 NPN 3A max 0..20V 3k M 1k With this iruit, you an vary th voltag to th motor (and hn th spd) from 0V to 20V with 4095 stps using a PIC miroontrollr. JSG - 2 -

3 LED Drivr: Driv an LED at mA (Currnt Control) A slight variation on this iruit is a urrnt amplifir. Again, an op-amp with ngativ fdbak to for V+ to qual V-. To ontrol urrnt, pla a rsistor in sris with th diod. Add a rsistor to st th maximum urrnt (100mA) whn is its maximum voltag (5V) R 5V 100mA 50 Add a transistor to amplify th urrnt from th op-amp. Using a TIP112 (with a urrnt gain of 1000) rsults in th op-amp having to output 0.1mA whn driving 100mA to th load - somthing an LM833 is apabl of doing. Pla th diod in sris with th 50 Ohm rsistor so that any urrnt going through R also gos through th diod (almost: th bas urrnt splits of 1/1000th of th urrnt to th 50 ohm rsistor). 10V 99.9mA + 3V From D/A 5V LM Vb 0.1mA 7V - TIP112 NPN 5V 100mA 50 With this iruit, you an ontrol th urrnt to th LED from 0 to 100mA with 4095 stps. Also not: if you rpla th diod with a DC motor, you'r ontrolling th urrnt to th motor (torqu) rathr than voltag (spd). Also also: Bak in EE 206, you usd urrnt sours. That's what this iruit is: th urrnt to th load is st by th voltag at. JSG - 3 -

4 DC Motor Drivr: Driv a Spakr (or DC Motor) at -10V to +10V If you want to apply positiv and ngativ voltags to th load, you first nd to amplify th output of th D/A onvrtr () so that it's V. To do this, us an instrumntation amplifir: from D/A Y V 2.5V On you hav a V signal, driv a push-pull amplifir +15V from D/A Y +10V +11.4V b 1.25mA TIP112 NPN 1.25A Push -10V +10V 2.5V +10V -10V b -11.4V 1.25mA -10V 1.25A Pull TIP117 PNP 8 Ohm Spakr -15V With this, you an now output -10V.. +10V to th load, Driving a spakr forward and bak, or Driving a motor forward or in rvrs With 4095 stps JSG - 4 -

5 Eltroni Sin Wav Gnrator So far, w'v bn driving a spakr with a squar wav whn making an ltroni piano. This rsults in a harsh buzzing sound. For a lan sound, output a sin wav. To do this, first, approximat a sin wav with N data points. Assum for xampl w want th sin wav to go from -2V to +2V. Using th prvious iruit Numbr to D/A D/A Output Ciruit Output 0 0V -10V 4,095 5V +10V Th output voltag is rlatd to th numbr you snd to th D/A as Volts D/A V 10V To output -2V, you nd to snd th numbr 1638 To output +2V, you nd to snd th numbr 2457 Lt's us 16 points to approximat a sin wav. Us Matlab to gnrat a sin wav whih gos from 1638 to >t = [1:16]' / 16 * 2 * pi; -->y = sin(t) * ; -->y = round(y); This looks lik th following whn you snd ths voltags to th D/A JSG - 5 -

6 It's not a prft sin wav. To do bttr, mor points would hlp - but mor points mans th PIC will hav to output numbrs to th D/A that muh fastr. To play a 220Hz sin wav, On yl = 1/220 sond (4.54ms) Thr ar 16 D/A alls pr yl (w'r rprsnting a sin wav with 16 points) Eah D/A all = 286.1us From bfor, whn w wrot a wait routin, w found that ounting to 620 with an intgr taks about 1ms us should rquir ounting to 177 N s 1ms Th following od should gnrat a 220Hz sin wav: onst unsignd int TABLE[16] = [2204, 2336, 2425, 2456, 2425, 2336, 2204, 2047, 1890, 1758, 1669, 1638, 1669, 1758, 1890, 2047]; // in th main routin unsignd int i, j; whil(1) { i = (i + 1) % 16; D2A(TABLE[i]); for(j=0; j<177; j++); } JSG - 6 -

7 Eltroni Tuba Not that if you hang th look-up tabl, you hang th signal snt to th spakr. Th signal dtrmins what typ of instrumnt you'r mimiking: JSG - 7 -

ECEN3250 Lab 8 Audio Power Amplifier

ECEN3250 Lab 8 Audio Power Amplifier Lab 8 Audio Powr Amplifir ECE Dpartmnt Univrsity of Colorado, Bouldr 1 Prlab assignmnt Rad txtbook stions 5.1, 5., 5., 5., and 1. Introdution An audio powr amplifir taks audio signal v i from a sour (.g.

More information

Lab 12. Speed Control of a D.C. motor. Controller Design

Lab 12. Speed Control of a D.C. motor. Controller Design Lab. Spd Control of a D.C. motor Controllr Dsign Motor Spd Control Projct. Gnrat PWM wavform. Amplify th wavform to driv th motor 3. Masur motor spd 4. Masur motor paramtrs 5. Control spd with a PD controllr

More information

Common Collector & Common Base Amplifier Circuits

Common Collector & Common Base Amplifier Circuits xprimnt (6): ommon ollctor & as Amplification ircuit xprimnt No. (6) ommon ollctor & ommon as Amplifir ircuits Study Objctiv: (1) To comput and masur th basic charactristics of & amplification. (2) To

More information

Lecture 19: Common Emitter Amplifier with Emitter Degeneration.

Lecture 19: Common Emitter Amplifier with Emitter Degeneration. Whits, EE 320 Lctur 19 Pag 1 of 10 Lctur 19: Common Emittr Amplifir with Emittr Dgnration. W ll continu our discussion of th basic typs of BJT smallnal amplifirs by studying a variant of th CE amplifir

More information

Logic Design 2013/9/26. Outline. Implementation Technology. Transistor as a Switch. Transistor as a Switch. Transistor as a Switch

Logic Design 2013/9/26. Outline. Implementation Technology. Transistor as a Switch. Transistor as a Switch. Transistor as a Switch 3/9/6 Logic Dsign Implmntation Tchnology Outlin Implmntation o logic gats using transistors Programmabl logic dvics Compl Programmabl Logic Dvics (CPLD) Fild Programmabl Gat Arrays () Dynamic opration

More information

IMP528 IMP528. High-Volt 220 V PP Driv. ive. Key Features. Applications. Block Diagram

IMP528 IMP528. High-Volt 220 V PP Driv. ive. Key Features. Applications. Block Diagram POWER POWER MANAGEMENT MANAGEMENT High-Volt oltag E amp p Driv ivr 220 V PP Driv iv Th is an Elctroluminscnt (E) lamp drivr with th four E lamp driving functions on-chip. Ths ar th switch-mod powr supply,

More information

4.5 COLLEGE ALGEBRA 11/5/2015. Property of Logarithms. Solution. If x > 0, y > 0, a > 0, and a 1, then. x = y if and only if log a x = log a y.

4.5 COLLEGE ALGEBRA 11/5/2015. Property of Logarithms. Solution. If x > 0, y > 0, a > 0, and a 1, then. x = y if and only if log a x = log a y. /5/05 0 TH EDITION COLLEGE ALGEBRA 4.5 Eponntial and Logarithmic Equations Eponntial Equations Logarithmic Equations Applications and Modling LIAL HORNSBY SCHNEIDER 4.5-4.5 - Proprty of Logarithms If >

More information

WPCA AMEREN ESP. SEMINAR Understanding ESP Controls. By John Knapik. 2004, General Electric Company

WPCA AMEREN ESP. SEMINAR Understanding ESP Controls. By John Knapik. 2004, General Electric Company WPCA AMEREN ESP SEMINAR Undrstanding ESP Controls By John Knapik 2004, Gnral Elctric Company Efficincy vs. Spcific Corona Powr KNOW WHERE YOUR ESP RUNS ON THE CURVE 99.9 99.0 Collction Efficincy (Prcnt)

More information

Characteristics of BJT-2

Characteristics of BJT-2 PLEASE S HP://ENGNEERS.N/ ENGNEERS- ONSULANS LEURE NOES SERES ELERONS ENGNEERNG 1 YEAR UPU haractristics of J-2 Output haractristics for ommon Emittr configuration: h output charactristic for transistor

More information

Graph coloring. Kempe s algorithm removes nodes with < K edges

Graph coloring. Kempe s algorithm removes nodes with < K edges Graph oloring Kmp s algorithm rmovs nods with < K dgs Fin This stp is alld simpliia1on Simpliia9on ithr nds with an mpty graph or a graph suh that ah nod has K dgs Now w hav to do somthing Eithr try out

More information

DTA123E series V CC I C(MAX.) R 1 R 2. 50V 100mA 2.2k 2.2k. Datasheet. PNP -100mA -50V Digital Transistors (Bias Resistor Built-in Transistors)

DTA123E series V CC I C(MAX.) R 1 R 2. 50V 100mA 2.2k 2.2k. Datasheet. PNP -100mA -50V Digital Transistors (Bias Resistor Built-in Transistors) DT123 sris PNP -100m -50V Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Paramtr V CC I C(MX.) R 1 R 2 Valu 50V 100m 2.2k 2.2k Faturs 1) Built-In Biasing Rsistors, R 1 = R 2 = 2.2k. Outlin

More information

DTD114GK V CEO I C R. 50V 500mA 10kW. Datasheet. NPN 500mA 50V Digital Transistors (Bias Resistor Built-in Transistors) Outline Parameter Value SMT3

DTD114GK V CEO I C R. 50V 500mA 10kW. Datasheet. NPN 500mA 50V Digital Transistors (Bias Resistor Built-in Transistors) Outline Parameter Value SMT3 NPN 500mA 50V Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Outlin Paramtr Valu SMT3 V CEO I C R 50V 500mA 10kW Bas Emittr Collctor DTD114GK SOT-346 (SC-59) Faturs 1) Built-In Biasing

More information

Push-Pull Amplifiers

Push-Pull Amplifiers NDSU PushPull Amplifiers ECE 321 JSG Background: PushPull Amplifiers The amplifiers we have been looking at are termed CassA amplifiers. They bias the transistor in the active region, and vary the operating

More information

EMA5 / UMA5N / FMA5A. V CC -50V -100mA 2.2kW 47kW I C(MAX.) R 1 R 2. Datasheet

EMA5 / UMA5N / FMA5A. V CC -50V -100mA 2.2kW 47kW I C(MAX.) R 1 R 2. Datasheet M5 / UM5N / FM5 PNP -100m -50V Complx Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Faturs Paramtr V CC -50V -100m 2.2kW 47kW I C(MX.) R 1 R 2 1) Built-In Biasing Rsistors. 2) Two DT123J

More information

Analog Integrations Corporation 4F, 9 Industry E. 9th Rd, Science-Based Industrial Park, Hsinchu, Taiwan DS-385B

Analog Integrations Corporation 4F, 9 Industry E. 9th Rd, Science-Based Industrial Park, Hsinchu, Taiwan DS-385B Adjustabl Micropowr Voltag Rfrnc FEATURES Adjustabl from.v to.v. Oprating urrnt from µa to ma. Low Tmpratur officint. % and % Initial Tolranc. Low Dynamic Impdanc. APPLIATIONS Portabl, BattryPowrd Equipmnt.

More information

Introduction to Medical Imaging. Signal Processing Basics. Strange Effects. Ever tried to reduce the size of an image and you got this?

Introduction to Medical Imaging. Signal Processing Basics. Strange Effects. Ever tried to reduce the size of an image and you got this? Strang Effcts Introduction to Mdical Imaging Evr trid to rduc th siz of an imag and you got this? Signal Procssing Basics Klaus Mullr Computr Scinc Dpartmnt Stony Brook Univrsity W call this ffct aliasing

More information

UMH8N / IMH8A V CEO I C R 1. 50V 100mA 10k. Datasheet. Outline. Inner circuit

UMH8N / IMH8A V CEO I C R 1. 50V 100mA 10k. Datasheet. Outline. Inner circuit NPN 100m 50V Complx Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Outlin Paramtr V CO I C Tr1 and Tr2 50V 100m 10k UMT6 UMH8N SOT-363 (SC-88) SMT6 IMH8 SOT-457 (SC-74) Faturs 1) Built-In

More information

The Trouton Rankine Experiment and the End of the FitzGerald Contraction

The Trouton Rankine Experiment and the End of the FitzGerald Contraction Th Trouton Rankin Exprimnt and th End of th FitzGrald Contraction Dr. Adrian Sfarti 1. Abstract Assuming that FitzGrald was right in his contraction hypothsis, Trouton sought for mor positiv vidnc of its

More information

ENCODER1 XXX LED POWER LED POWER GROUND CHAN A INDEX INPUT INPUT GROUND GROUND CHAN B +5V TTL XXX PWM XXX STATUS LED LED POWER DIR XXX INPUT XXX XXX

ENCODER1 XXX LED POWER LED POWER GROUND CHAN A INDEX INPUT INPUT GROUND GROUND CHAN B +5V TTL XXX PWM XXX STATUS LED LED POWER DIR XXX INPUT XXX XXX POWR N RS85 OMMUNITION +V TO +8V RS85 RS85 NOR INX HN +5V HN L POWR L POWR PRLIMINRY STTUS L L POWR TTL PWM MOTOR IR ONTROL STP +V MOTOR + MOTOR - MOTOR MOTOR + RIV MOTOR - TTL IGITL I/O ONNTOR POWR OUTPUT

More information

EMD3 / UMD3N / IMD3A V CC I C(MAX.) R 1 R 2. 50V 100mA. 10k. 10k. 50V 100mA. 10k. 10k. Datasheet

EMD3 / UMD3N / IMD3A V CC I C(MAX.) R 1 R 2. 50V 100mA. 10k. 10k. 50V 100mA. 10k. 10k. Datasheet NPN + PNP Complx Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Outlin Paramtr Valu MT6 UMT6 V CC I C(MX.) Paramtr V CC I C(MX.) 50V 100m 10k 10k Valu 50V

More information

Engineering 1620: High Frequency Effects in BJT Circuits an Introduction Especially for the Friday before Spring Break

Engineering 1620: High Frequency Effects in BJT Circuits an Introduction Especially for the Friday before Spring Break Enginring 162: High Frquncy Efcts in BJT ircuits an Introduction Espcially for th Friday bfor Spring Brak I hav prpard ths nots bcaus on th day bfor a major vacation brak som popl find it ncssary to lav

More information

US6H23 / IMH23 V CEO 20V V EBO 12V. 600mA R k. Datasheet. Outline Parameter Tr1 and Tr2 TUMT6 SMT6

US6H23 / IMH23 V CEO 20V V EBO 12V. 600mA R k. Datasheet. Outline Parameter Tr1 and Tr2 TUMT6 SMT6 NPN 600m 20V Digital Transistors (Bias Rsistor Built-in Transistors) For Muting. Datasht Outlin Paramtr Tr1 and Tr2 TUMT6 SMT6 V CO 20V V BO 12V I C 600m R US6H23 1 4.7k IMH23 SOT-457 (SC-74) Faturs 1)

More information

1.1 Transmission line basic concepts: Introduction to narrow-band matching networks

1.1 Transmission line basic concepts: Introduction to narrow-band matching networks . Transmission lin basic concpts: ntroduction to narrow-band matching ntworks March Francsc Torrs, luís Pradll, Jorg Miranda oltag and currnt in th transmission lin For any losslss transmission lin: whr

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 301 Signals & Systms Prof. Mark Fowlr ot St #25 D-T Signals: Rlation btwn DFT, DTFT, & CTFT Rading Assignmnt: Sctions 4.2.4 & 4.3 of Kamn and Hck 1/22 Cours Flow Diagram Th arrows hr show concptual

More information

EMD4 / UMD4N V CC I C(MAX.) R 1 R 2. 50V 100mA. 47kW. V CC -50V -100mA 10kW. Datasheet

EMD4 / UMD4N V CC I C(MAX.) R 1 R 2. 50V 100mA. 47kW. V CC -50V -100mA 10kW. Datasheet NPN + PNP Complx Digital Transistors (Bias Rsistor Built-in Transistors) Datasht Outlin Paramtr Valu EMT6 UMT6 V CC I C(MAX.) R 1 R 2 50V 100mA 47kW 47kW (1) (2) (3) (6) (5) (4) EMD4 (SC-107C)

More information

2SA1579 / 2SA1514K. V CEO -120V -50mA I C. Datasheet. PNP -50mA -120V High-Voltage Amplifier Transistors. Outline

2SA1579 / 2SA1514K. V CEO -120V -50mA I C. Datasheet. PNP -50mA -120V High-Voltage Amplifier Transistors. Outline PNP -50mA 20V High-Voltag Amplifir Transistors Datasht Paramtr Valu V CEO 20V -50mA I C Outlin UMT3 SMT3 Collctor Bas Bas Emittr Emittr Collctor Faturs 1) High Brakdown Voltag (BV CEO = 20V) 2) Complmntary

More information

CSE 554 Lecture 1: Binary Pictures

CSE 554 Lecture 1: Binary Pictures CSE 554 Lctur 1: Binary Picturs Fall 2016 CSE554 Binary Picturs Sli 1 Gomtric Forms Continuous forms Dfin by mathmatical functions Curvs Surfacs E.g.: parabolas, splins, subivision surfacs 2 y x z Sin[

More information

SGM8621/2/3/4 250µA, 3MHz, Rail-to-Rail I/O CMOS Operational Amplifiers

SGM8621/2/3/4 250µA, 3MHz, Rail-to-Rail I/O CMOS Operational Amplifiers PRODUCT DESCRIPTION Th SGM86(singl), SGM86(dual), SGM86(singl with shutdown) and SGM864(quad) ar low nois, low voltag, and low powr oprational amplifirs, that can b dsignd into a wid rang of applications.

More information

In this project you ll learn how to create a game in which you have to save the Earth from space monsters.

In this project you ll learn how to create a game in which you have to save the Earth from space monsters. Clon Wars Introduction In this projct you ll larn how to crat a gam in which you hav to sav th Earth from spac monstrs. Stp 1: Making a Spacship Lt s mak a spacship that will dfnd th Earth! Activity Chcklist

More information

Migration ATV11 - ATV12

Migration ATV11 - ATV12 Th ATV12 is compatibl with th ATV11 (latst vrsion), nvrthlss som diffrncs can xist btwn both drivs. Both modls (ATV11 and ATV12) ar availabl in hatsink or bas plat vrsions. Attntion: ATV11 "E" Dimnsions

More information

Agamem Microelectronics Inc.

Agamem Microelectronics Inc. OVRVIW Th is a BJT intgratd circuit using in srvo motor control applications. Th uilt-in voltag rgulator provids th with xtrmly stal output voltag. It also incorporats a linar on-shot and puls-width dmodulator

More information

RClamp2451ZA. Ultra Small RailClamp 1-Line, 24V ESD Protection

RClamp2451ZA. Ultra Small RailClamp 1-Line, 24V ESD Protection - RailClamp Dscription RailClamp TVS diods ar ultra low capacitanc dvics dsignd to protct snsitiv lctronics from damag or latch-up du to ESD, EFT, and EOS. Thy ar dsignd for us on high spd ports in applications

More information

Defeating a Scarcity Mindset

Defeating a Scarcity Mindset Dfating a Scarcity Mindst From an arly ag, you ar bombardd with mssags concrning what to think about mony. Many of thm ar wrong. For instanc, w r taught that to b rich, you hav to mak a lot of mony. But,

More information

Discrete Op-Amp Kit MitchElectronics 2019

Discrete Op-Amp Kit MitchElectronics 2019 Discrete Op-Amp Kit MitchElectronics 2019 www.mitchelectronics.co.uk CONTENTS Introduction 3 Schematic 4 How It Works 5 Materials 9 Construction 10 Important Information 11 Page 2 INTRODUCTION Even if

More information

Hardware Manual. STR4 & STR8 Step Motor Drives

Hardware Manual. STR4 & STR8 Step Motor Drives Hardwar Manual STR4 & STR8 Stp Motor Drivs 92-3E 2/3/21 92-3E 2/3/21 STR Hardwar Manual Contnts Introduction... 3 Faturs... 3 Block Diagram... 4 Gtting Startd... 5 Mounting th Driv... 6 Conncting th Powr

More information

Model Answer Electronics I. Final - Fall 2017 ECE201. MCQ Problems Total Q1 Q2 Q3 Q4

Model Answer Electronics I. Final - Fall 2017 ECE201. MCQ Problems Total Q1 Q2 Q3 Q4 Model Answer Course name: Eletronis I Exam number: Final - Fall 2017 Course Code: ECE201 Exam Date: Jan 2018 Leturer: Dr. Ahmed ElShafee Time Allowed: 120 minutes ID:... Name:.... MCQ Problems Total Q1

More information

For the op amp circuit above, how is the output voltage related to the input voltage? = 20 k R 2

For the op amp circuit above, how is the output voltage related to the input voltage? = 20 k R 2 Golden Rules for Ideal Op Amps with negative feedback: 1. The output will adjust in any way possible to make the inverting input and the noninverting input terminals equal in voltage. 2. The inputs draw

More information

PHYS225 Lecture 10. Electronic Circuits

PHYS225 Lecture 10. Electronic Circuits PHYS225 Lecture 10 Electronic Circuits Last lecture Operational Amplifiers Many applications Use feedback for control Negative feedback Ideal case rules Output is whatever is needed to make inputs equal

More information

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2)

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2) EE 368 Electronics Lab Experiment 10 Operational Amplifier Applications (2) 1 Experiment 10 Operational Amplifier Applications (2) Objectives To gain experience with Operational Amplifier (Op-Amp). To

More information

Embedded Systems. Oscillator and I/O Hardware. Eng. Anis Nazer First Semester

Embedded Systems. Oscillator and I/O Hardware. Eng. Anis Nazer First Semester Embedded Systems Oscillator and I/O Hardware Eng. Anis Nazer First Semester 2016-2017 Oscillator configurations Three possible configurations for Oscillator (a) using a crystal oscillator (b) using an

More information

More Fun with A/D Converters

More Fun with A/D Converters More Fun with A/D Converters The A/D input allows you to input numbers (0 to 1023) into the PIC processor with a potentiometer. This illustrates some of the things this allows you to do: Electronic Trombone:

More information

QUAD PRECISION CMOS VOLTAGE COMPARATOR WITH PUSH-PULL DRIVER

QUAD PRECISION CMOS VOLTAGE COMPARATOR WITH PUSH-PULL DRIVER DVNCD INR DVICS, INC. D43/D43 QUD PRCISION CMOS VOTG COMPRTOR WITH PUSHPU DRIVR GNR DSCRIPTION Th D43/D43 is a monolithic high prformanc quad voltag comparator uilt with advancd silicon gat CMOS tchnology.

More information

REET Energy Conversion. 1 Electric Power System. Electric Power Systems

REET Energy Conversion. 1 Electric Power System. Electric Power Systems REET 2020 Energy Conversion 1 Eletri Power System Eletri Power Systems An Eletri Power System is a omplex network of eletrial omponents used to reliably generate, transmit and distribute eletri energy

More information

Motor Control Center with DIN Rail Industrial patch panel mounted in wireway, enabling Ethernet/IP devices across multiple sections

Motor Control Center with DIN Rail Industrial patch panel mounted in wireway, enabling Ethernet/IP devices across multiple sections INP SEN OUT GN O HG ON To Zon / IF /, s sparat pags for mor. otor ontrol ntr with IN Rail Industrial patch panl mountd in wirway, nabling Ethrnt/IP dvics across multipl sctions aintnanc-fr No battry V

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

Audio Amplifier. November 27, 2017

Audio Amplifier. November 27, 2017 Audio Amplifier November 27, 2017 1 Pre-lab No pre-lab calculations. 2 Introduction In this lab, you will build an audio power amplifier capable of driving a 8 Ω speaker the way it was meant to be driven...

More information

DETERMINATION OF ELECTRONIC DISTANCE MEASUREMENT ZERO ERROR USING KALMAN FILTER

DETERMINATION OF ELECTRONIC DISTANCE MEASUREMENT ZERO ERROR USING KALMAN FILTER Europan Scintific Journal Sptmbr 24 dition vol., No.27 ISSN: 87 788 (rint) - ISSN 87-743 DETERMINATION OF ELECTRONIC DISTANCE MEASUREMENT ZERO ERROR USING KALMAN FILTER Onuwa Owuashi, hd Dpartmnt of Goinformatics

More information

Control System Circuits with Opamps

Control System Circuits with Opamps Control System Circuits with Opamps 27.04.2009 Purpose To introduce opamps, transistors and their usage To apply a control system with analog circuit elements. Difference Amplifier Figure 1 Basic Difference

More information

SGM8631/2/3/4 470µA, 6MHz, Rail-to-Rail I/O CMOS Operational Amplifiers

SGM8631/2/3/4 470µA, 6MHz, Rail-to-Rail I/O CMOS Operational Amplifiers PRODUCT DESCRIPTION Th SGM86(singl), SGM86(dual), SGM86(singl with shutdown) and SGM864(quad) ar low nois, low voltag, and low powr oprational amplifirs, that can b dsignd into a wid rang of applications.

More information

SGM721/2/3/4 970µA, 10MHz, Rail-to-Rail I/O CMOS Operational Amplifiers

SGM721/2/3/4 970µA, 10MHz, Rail-to-Rail I/O CMOS Operational Amplifiers PRODUCT DESCRIPTION Th SGM7 (singl), SGM7 (dual), SGM7 (singl with shutdown) and SGM74 (quad) ar low nois, low voltag, and low powr oprational amplifirs, that can b dsignd into a wid rang of applications.

More information

ECE 454 Homework #1 Due 11/28/2018 This Wednesday In Lab

ECE 454 Homework #1 Due 11/28/2018 This Wednesday In Lab ECE 454 Homework #1 Due 11/28/2018 This Wednesday In Lab Design the Darlington push-pull amplifier specified in Lab 1: You will build this amplifier for Lab 1 so use parts that are available in the lab.

More information

3A High Current, Low Dropout Voltage Regulator Adjustable & Fixed Output, Fast Response Time

3A High Current, Low Dropout Voltage Regulator Adjustable & Fixed Output, Fast Response Time SPX29300/01/02/03 3 High Currnt, ow ropout Voltag Rgulator djustal & Fixd Output, Fast Rspons Tim FTURS djustal Output own To 1.25V 1% Output uray Output Currnt of 3 ow ropout Voltag of 450mV @ 3 xtrmly

More information

4NPA. Low Frequency Interface Module for Intercom and Public Address Systems. Fig. 4NPA (L- No )

4NPA. Low Frequency Interface Module for Intercom and Public Address Systems. Fig. 4NPA (L- No ) ow Frquncy Intrfac Modul for Intrcom and Public ddrss ystms Fig. ( No. 2.320) t a Glanc: ow frquncy (F) control of thirdparty amplifirs in intrcom systms onncting call stations with lin control in public

More information

CH 7. Synchronization Techniques for OFDM Systems

CH 7. Synchronization Techniques for OFDM Systems CH 7. Synchronization Tchnius for OFDM Systms 1 Contnts [1] Introduction Snsitivity to Phas Nois Snsitivity to Fruncy Offst Snsitivity to Timing Error Synchronization Using th Cyclic Extnsion l Tim synchronization

More information

HSMS-2823 RF mixer/detector diode

HSMS-2823 RF mixer/detector diode Products > RF Is/iscrts > Schottky iods > Surfac Mount > HSMS-282 HSMS-282 RF mixr/dtctor diod scription ifcycl status: ctiv Faturs Th HSMS-282x family of schottky diods ar th bst all-round choic for most

More information

Package: H: TO-252 P: TO-220 S: TO-263. Output Voltage : Blank = Adj 12 = 1.2V 15 = 1.5V 18 = 1.8V 25 = 2.5V 33 = 3.3V 50 = 5.0V 3.3V/3A.

Package: H: TO-252 P: TO-220 S: TO-263. Output Voltage : Blank = Adj 12 = 1.2V 15 = 1.5V 18 = 1.8V 25 = 2.5V 33 = 3.3V 50 = 5.0V 3.3V/3A. Faturs Advancd Powr 3-Trminal ustabl or Fixd.V,.5V,.8V,.5V, 3.3V or 5.V Output Maximum Dropout.4V at Full Load Currnt Fast Transint Rspons Built-in Thrmal Shutdown Output Currnt Limiting Good Nois Rjction

More information

Transient Voltage Suppressors / ESD Protectors

Transient Voltage Suppressors / ESD Protectors Transint Voltag Supprssors / ES Protctors PACN04/4/44/45/46 Faturs Two, thr, four, fiv, or six transint voltag supprssors Compact SMT packag savs board spac and facilitats layout in spac-critical applications

More information

Stepper Motors in C. Unipolar (5 lead) stepper motorr. $1.95 from 100 steps per rotation. 24V / 160mA / 600 gm cm holding 160mA

Stepper Motors in C. Unipolar (5 lead) stepper motorr. $1.95 from  100 steps per rotation. 24V / 160mA / 600 gm cm holding 160mA U tepper Motors ugust 22, 2017 tepper Motors in Unipolar (5 lead) stepper motorr. $1.95 from www.mpja.com 100 steps per rotation. 24V / 160m / 600 gm cm holding torque @ 160m stepper motor is a digital

More information

Introduction to Digital Signal Processing

Introduction to Digital Signal Processing Chaptr Introduction to. Introduction.. Signal and Signal Procssing A signal is dfind as any physical quantity which varis with on or mor indpndnt variabls lik tim, spac. Mathmatically it can b rprsntd

More information

Low Voltage, High Current Time Delay Circuit

Low Voltage, High Current Time Delay Circuit Low Voltage, High Current Time Delay Circuit In this circuit a LM339 quad voltage comparator is used to generate a time delay and control a high current output at low voltage. Approximatey 5 amps of current

More information

m., r». I 11I 411.1ME

m., r». I 11I 411.1ME I I 4 'Á Í ( m, r» I I 4ME A PUBLICATION OF THE TUBE DEPARTMENT RCA HARRISON, N J Volum 3, No January Marh, 953 GEORGE M ROSE, K2AH, AND HIS HISTORY MAKING, 46 MC TRANSISTOR TRANSMITTER (S pag 3 or story)

More information

Performance Analysis of BLDC Motor for Sinusoidal and Trapezoidal Back-Emf using MATLAB/SIMULINK Environment

Performance Analysis of BLDC Motor for Sinusoidal and Trapezoidal Back-Emf using MATLAB/SIMULINK Environment Prformanc Analysis of BLDC Motor for Sinusoidal and Trapzoidal Back-Emf using MATLAB/SIMULINK Environmnt Pramod Pal Dpartmnt of Elctrical Enginring Maulana AzadNational Institut of Tchnology Bhopal, India

More information

HSMP-482B RF power limiter diode

HSMP-482B RF power limiter diode Products > RF Is/iscrts > PIN iods > Surfac Mount > HSMP-482 HSMP-482 RF powr limitr diod scription ifcycl status: ctiv Faturs Th HSMP-482x family of low rsistanc PIN diods ar optimizd for switch applications

More information

CAUTION: Do not install damaged parts!!!

CAUTION: Do not install damaged parts!!! Your satisfaction is important to us, plas lt us hlp! If you hav any qustions or concrns during th installation, our support rprsntativs ar availabl to assist you. Plas call: 1-877-769-3765 or Liv Chat

More information

F9 Differential and Multistage Amplifiers

F9 Differential and Multistage Amplifiers Lars Ohlsson 018-10-0 F9 Differential and Multistage Amplifiers Outline MOS differential pair Common mode signal operation Differential mode signal operation Large signal operation Small signal operation

More information

4.1 Structure and Operation of IGBT Module

4.1 Structure and Operation of IGBT Module 4. Using IGBT Modules Powerex IGBT modules are designed to be rugged, low loss and easy to use. Use of advanced processing technologies gives low on-state saturation voltages while maintaining the high

More information

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

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

More information

Application Note. I C s f o r M o t o r C o n t r o l. Current Limiter for the Motor Control ICs of the TDA514x-family. Report No: EIE/AN93008

Application Note. I C s f o r M o t o r C o n t r o l. Current Limiter for the Motor Control ICs of the TDA514x-family. Report No: EIE/AN93008 Application Note I C s f o r M o t o r C o n t r o l Current Limiter for the Motor Control ICs of the TDA514x-family Report No: R. Galema Product Concept & Application Laboratory Eindhoven, the Netherlands.

More information

YB mA, Low Power, High PSRR LDO Regulator

YB mA, Low Power, High PSRR LDO Regulator scription Th is a sris of ultra-low-nois, high PSRR, and low quiscnt currnt low dropout (O) linar rgulators with 2.0% output voltag accuracy. Th rgulators achiv a low 300m dropout at 300m load currnt of

More information

IEEE Broadband Wireless Access Working Group <

IEEE Broadband Wireless Access Working Group < IEEE C802.16j-07/409 Projct Titl IEEE 802.16 Broadband Wirlss Accss Working Group A Proposal for Transmission of FCH, MAP, R-FCH, R-MAP in Non-transparnt Rlay Systm with Cntralizd

More information

1 Second Time Base From Crystal Oscillator

1 Second Time Base From Crystal Oscillator 1 Second Time Base From Crystal Oscillator The schematic below illustrates dividing a crystal oscillator signal by the crystal frequency to obtain an accurate (0.01%) 1 second time base. Two cascaded 12

More information

Binary Outputs: Transistors Used as a Switch

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

More information

Output Stage and Power Amplifiers

Output Stage and Power Amplifiers Microelectronic Circuits Output Stage and ower Amplifiers Slide 1 ntroduction Most of the challenging requirement in the design of the output stage is ower delivery to the load. ower consumption at the

More information

QUAD PRECISION MICROPOWER CMOS VOLTAGE COMPARATOR WITH DRIVER

QUAD PRECISION MICROPOWER CMOS VOLTAGE COMPARATOR WITH DRIVER DVNCD INR DVICS, INC. D433/D433 QUD PRCISION MICROPOWR CMOS VOTG COMPRTOR WITH DRIVR GNR DSCRIPTION Th D433/D433 is a prcision monolithic high prformanc quad voltag comparator with opn drain output uilt

More information

3-Dimensions. 3-Dimensions. 3D Shapes. Recognise 3-D Shapes and know their properties. 2 Dimensional. 3 Dimensional. Exercise 1

3-Dimensions. 3-Dimensions. 3D Shapes. Recognise 3-D Shapes and know their properties. 2 Dimensional. 3 Dimensional. Exercise 1 3-imnsions Ronis 3- Shaps an know thir proprtis 3 Shaps FLAT shaps, rawn on papr, lik squars, irls or trianls ar all 2-imnsional. 2 imnsional rath Thy hav 2 imnsions or 2 sizs :(lnth an rath). lnth 3 imnsional

More information

Operational Amplifiers

Operational Amplifiers Operational Amplifiers November 23, 2017 1 Pre-lab Calculations 1) Calculate the gain for all four circuits in Fig. 3. 2 Introduction Operational Amplifiers? They should call them fun amplifiers. Because,

More information

Making the Leap: Achieving Centimeter-Range Accuracy with UAVs. Francois Gervaix Product Manager, Surveying

Making the Leap: Achieving Centimeter-Range Accuracy with UAVs. Francois Gervaix Product Manager, Surveying Making th Lap: Achiving Cntimtr-Rang Accuracy with UAVs Francois Grvaix Product Managr, Survying About snsfly A tam of ovr 150 passionat popl 100-200 units/month #1 in fixd-wing mapping drons (worldwid

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

POWERHOUSE Digital Command Control

POWERHOUSE Digital Command Control Tehnial eferene TM POWEHOUSE Digital Command Control P2K-SW9 Drop-In Deoder AUTO-EVESING HEADIGHT Dimensions: 1.95.830.120 inhes 50 21 3.0 mm $29.95 This deoder is designed for easy installation in ifelike

More information

Motor Control Center (MCC) with DIN Rail Industrial Patch Panel Mounted in Pathway, Enabling Ethernet Devices Across Multiple Sections

Motor Control Center (MCC) with DIN Rail Industrial Patch Panel Mounted in Pathway, Enabling Ethernet Devices Across Multiple Sections INP SEN OUT GN O HG ON To Zon / IF /, s sparat pags for mor. otor ontrol ntr () with IN Rail Industrial Patch Panl ountd in Pathway, Enabling Ethrnt vics cross ultipl Sctions aintnanc-fr No battry V s

More information

The entire devices are built in housings that are protected against liquids and dust without need to be installed in hazloc certified cabinets.

The entire devices are built in housings that are protected against liquids and dust without need to be installed in hazloc certified cabinets. Cod for typ of protction Typ cod -TX- altrn. altrn. II 3 (2/3) G Ex d ia mb na [ Gb] [ic] IIC T4 Gc II 3 (2/3) G Ex db b ia mb na [ ic] IIC T4 II 3 (2/3) D Ex ia tc [ Db] [ic] IIIC T80 C Dc IP66 II 3 (2/3)

More information

Final Project Stereo Audio Amplifier Final Report

Final Project Stereo Audio Amplifier Final Report The George Washington University School of Engineering and Applied Science Department of Electrical and Computer Engineering Final Project Stereo Audio Amplifier Final Report Daniel S. Boucher ECE 20-32,

More information

Power Amplifiers. Class B Class AB

Power Amplifiers. Class B Class AB ower Amplifiers Class B Class AB Class B he circuit each transistor conducts for a half of every signal period complementary pair push-pull arrangement peration vi ( 0.6; 0.6) (off), (off) v 0 vi v 0.6

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

Learning Objectives:

Learning Objectives: Learning Objectives: At the end of this topic you will be able to; recall the conditions for maximum voltage transfer between sub-systems; analyse a unity gain op-amp voltage follower, used in impedance

More information

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER

CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 65 CHAPTER 4 CONTROL ALGORITHM FOR PROPOSED H-BRIDGE MULTILEVEL INVERTER 4.1 INTRODUCTION Many control strategies are available for the control of IMs. The Direct Torque Control (DTC) is one of the most

More information

OpenAFM. Electronics

OpenAFM. Electronics OpenAFM Electronics Voice Coils Each coil is controlled by a pair of push-pull amplifiers. One of each pair has a constant output voltage of 2.5v The other member of the pair is controlled by the output

More information

Copyright 2014

Copyright 2014 Thanks for downloading this booklet with five simple and fun circuits to build with electronics. In the following pages you will be presented with five circuits that you can build and have fun with. If

More information

Electronics I Circuit Drawings. Robert R. Krchnavek Rowan University Spring, 2018

Electronics I Circuit Drawings. Robert R. Krchnavek Rowan University Spring, 2018 Electronics I Circuit Drawings Robert R. Krchnavek Rowan University Spring, 2018 Ideal Diode Piecewise Linear Models of a Diode Piecewise Linear Models of a Diode 1 r d Piecewise Linear Models of a Diode

More information

LM391 Audio Power Driver

LM391 Audio Power Driver LM391 Audio Power Driver General Description The LM391 audio power driver is designed to drive external power transistors in 10 to 100 watt power amplifier designs High power supply voltage operation and

More information

SPECIFICATIONS. AUDIO POWER SPECIFICATIONS (US model)

SPECIFICATIONS. AUDIO POWER SPECIFICATIONS (US model) SRVIC MANUAL Ver.. 2008.02 US Model AP Model UK Model Wood color type is the subwoofer in HT-DDW890/ DDWG800. Black color type is the subwoofer in HT-7200DH. SPCIFICATIONS AUDIO POWR SPCIFICATIONS (US

More information

Experiment 7: PID Motor Speed Control

Experiment 7: PID Motor Speed Control Experiment 7: PID Motor Speed Control Introduction The error output, Ve, of the tachometer circuit from experiment 6 will be connected to the input of a PID controller. The output of the PID controller,

More information

1A Low Dropout Voltage Regulator Fixed Output, Fast Response

1A Low Dropout Voltage Regulator Fixed Output, Fast Response A Low Dropout Voltag Rgulator Fixd Output, Fast Rspons SPX3940 FEATURES % Output Accuracy SPX3940A Guarantd.5A Pak Currnt Low Quiscnt Currnt Low Dropout Voltag of 280mV at A Extrmly Tight Load and Lin

More information

3A High Current, Low Dropout Voltage Regulator Adjustable, Fast Response Time

3A High Current, Low Dropout Voltage Regulator Adjustable, Fast Response Time SPX29302 3 High Currnt, ow Dropout Voltag Rgulator djustabl, Fast Rspons Tim FTURS djustabl Output Down To 1.25V 1% Output ccuracy Output Currnt of 3 ow Dropout Voltag of 370mV @ 3 xtrmly Fast Transint

More information

Introduction to Electronics and Breadboarding Circuits

Introduction to Electronics and Breadboarding Circuits Introduction to Electronics and Breadboarding Circuits What we're going to learn today: What is an electronic circuit? What kind of power is needed for these projects? What are the fundamental principles

More information

CATTLE FINISHING RETURN

CATTLE FINISHING RETURN CATTLE FINISHING RETURN S E R I E S Novmbr 2011 CATTLE FINISHING NET RETURNS This articl discusss rcnt trnds in fding cost of gain and cattl finishing profitability. Svral sourcs of data wr usd to comput

More information

Notes on Experiment #11. You should be able to finish this experiment very quickly.

Notes on Experiment #11. You should be able to finish this experiment very quickly. Notes on Experiment #11 You should be able to finish this experiment very quikly. This week we will do experiment 11 almost A I. Your data will be the graphial images on the display of the sope. o, BRING

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

QM400HA-H HIGH POWER SWITCHING USE

QM400HA-H HIGH POWER SWITCHING USE QMH-H QMH-H IC Collector current... CX Collector-emitter voltage... hf current gain... Insulated Type UL Recognized Yellow Card No. 86 (N) File No. 8 PPLICTION C motor controllers, UPS, motor controllers,

More information

Transistors, so far. I c = βi b. e b c. Rules 1. Vc>Ve 2. b-e and b-e circuits ~ diodes 3. max values of Ic, Ib, Vce 4. if rules are obeyed,

Transistors, so far. I c = βi b. e b c. Rules 1. Vc>Ve 2. b-e and b-e circuits ~ diodes 3. max values of Ic, Ib, Vce 4. if rules are obeyed, Transistors, so far 2N3904 e b c b npn c e ules 1. Vc>Ve 2. b-e and b-e circuits ~ diodes 3. max values of Ic, Ib, Vce 4. if rules are obeyed, β I c = βi b ~100, but variable c b Ic conservation of current:

More information