Lecture 9: Digital Electronics Introduction: ● We Can Classify the Building Blocks of a Circuit Or System As Being Either Analog Or Digital in Nature

Total Page:16

File Type:pdf, Size:1020Kb

Lecture 9: Digital Electronics Introduction: ● We Can Classify the Building Blocks of a Circuit Or System As Being Either Analog Or Digital in Nature Lecture 9: Digital Electronics Introduction: ● We can classify the building blocks of a circuit or system as being either analog or digital in nature. ◆ If we focus on voltage as the circuit parameter of interest: ■ Analog: The voltage can take on a range of voltages, e.g. any value between 0.1 and 2 Volts. ■ Digital: The voltage can have only two values, e.g. 0 or 5 Volts ❑ We say the voltage is either on or off ☞ Digital circuits are useful when we don’t need a continuous range of voltage or current. ❑ Examples: Representing numbers, binary logic, counting circuits. ❑ Example: Represent base 10 numbers using the binary system: 1 0 2|10 = 10|2 = 1 x 2 + 0 x 2 3 2 1 0 10|10 = 1010|2 = 1 x 2 + 0 x 2 + 1 x 2 + 0 x 2 ● Digital circuits use standard voltages (or currents) to denote ON (high, 1) or OFF (low, 0). ◆ These standards are called “Logic Families” and there are several families. ◆ Two of the most popular families are: ■ TTL (Transistor-Transistor-Logic): ON = 5 Volts, OFF = 0 Volts ■ ECL (Emitter-Coupled-Logic): ON = -1 Volt, OFF = -1.6 Volts ☞ For practical reasons both ON and OFF are given by a range of voltages or currents. ◆ ON for an input to a circuit might have slightly different voltage than ON for an output to a circuit. K.K. Gan L9: Digital Electronics 1 ● A description of several logic families is given in the table below: Delay Max. FF Rate Power/Gate High Low (ns) (MHz) (mW) (V) (V) Standard TTL 10 35 15 3.5 0.2 (7400) Low-power Schottky 9.0 33 2 3.5 0.2 (74LS00) Fast TTL 3.5 125 5.5 2.7 0.5 (74F00) CMOS 25 @ 10 V 10 @ 10 V 0.01 5-15 0 (74C00) 50 @ 25 V 3.5 @ 5 V High-speed CMOS 8.0 40 0.01 2-6 0.1 (74HC00) ECL 2 250 25 -0.9 -1.8 100k ECL 0.75 500 40 -1.0 -1.7 ◆ Advantages of Digital: ■ only deal with two voltage levels (either ON or OFF) ■ voltages (or currents) are standardized ■ do not deal with individual transistors… ◆ Disadvantages of Digital: ■ too many “black” boxes ■ need good power supplies, clocks etc. for circuits to work properly K.K. Gan L9: Digital Electronics 2 Logic Gates: ● We want to make decisions based on digital information. ◆ For now consider the basic building blocks with one or two inputs and one output. ● The basic logic units (gates) are: AND, OR, NOT. ◆ These functions are defined by their truth tables. AND OR NOT (inverter) A A Y Y A ↓ Y B B invert symbol A B Y A B Y A Y 0 0 0 0 0 0 A and B stand for the inputs 0 1 1 0 0 1 0 1 Y stands for the output 1 0 0 1 0 0 1 1 0: low input or output 1 1 1 1 1 1 A = Y 1: high input or output A B = Y A + B = Y +V D0 +V VA D0 R VA Vout Vout D1 Q1 VB VA D1 VB Vout Q Vout = +V if both diodes off Vout = V A or V B if either VA > 0.6 V, 1 is on, Vout ~ 0 = 0 if one or more diodes conduct VA < 0.6 V, Q1 is off, Vout = +V diodes conduct = 0 if both diodes are off K.K. Gan L9: Digital Electronics 3 Boolean Algebra or the Algebra of 1’s and 0’s ● Circuits consisting of logic gates are described by Boolean algebra. ◆ Use of this algebra can greatly simplify circuit design, e.g. minimize the number of components. ● The following theorems can be proved using a truth table and the definition of OR, AND, and NOT. 1) A + A = A, A +1 =1, A + 0 = A 2) AA = A 3) AB = BA 4) ABC = (AB)C = A(BC) See Simpson page 540 for more theorems. 5) A(B+ C) = AB+ AC 6) 1 = 0, 0 =1 For clarity “·” (AND) is not shown in some theorems. 7) A + A =1, AA = 0, A ⋅1 = A 8) A = A 9) A + B = A ⋅ B DeMorgan’s Theorem 10) AB = A + B ● Example using Boolean algebra: ◆ Prove: X + YZ = (X + Y)(X + Z) (X+ Y)(X+ Z) = XX+ XZ + YX+ YZ by 5) € = X+ X(Z + Y)+ YZ by 2) and 5) € = X(1+ Z + Y)+ YZ by 5) = X+ YZ by 1) K.K. Gan L9: Digital Electronics 4 € ◆ We could also have proven the above using a truth table. ■ There are 8 (23) possible combinations of X, Y, Z. ■ For a large number of inputs using a truth table becomes unwieldy. ■ Example, if there are 10 inputs ☞ 210 = 1024 possible combinations! ● Example: Exclusive OR = XOR = A⊕B. ◆ Output is high if inputs are different. A B Y 0 0 0 XOR 1 0 1 A Y 0 1 1 B 1 1 0 AB + AB =Y ◆ How do we make an exclusive OR with AND, OR, and NOT gates? A AB AB + AB Brute force method AB B K.K. Gan L9: Digital Electronics 5 ◆ Can we simplify this circuit with the use of less parts? ■ Use logical theorems: A ⊕ B = AB + A B A A+B = AA + AB + AB + BB 7) and 1) = A(A + B )+ B(A + B ) 5) (A+B)(AB) = A(AB)+ B(AB) 10) AB = (A + B)(AB) 5) B ■ The circuit uses only 3 parts (OR, NAND, AND), but each of them is different! ■ Usually there are many ways to synthesize the same function (circuit). ■ Must decide if you want to minimize: € ❑ number of components ❑ types of components ❑ number of connections ❑ power consumption ■ For example we can make an XOR using only 4 NAND gates: A A⊕ B B K.K. Gan L9: Digital Electronics 6 ● Final example: Suppose you have a light controlled by 3 switches. ◆ You want the light to be on if any one of the 3 switches is on or if all 3 switches are on. A B C Light 1 1 1 1 1 0 0 1 B 1 1 0 0 C L 0 1 1 0 A 0 1 0 1 0 0 1 1 1 0 1 0 1 = ON 0 0 0 0 0 = OFF L = ABC + AB C + A BC + A B C = A(BC + B C )+ A (BC + B C) = A(B + C )(B + C)+ A (B ⊕ C) = AB CBC + A (B ⊕ C) = AB C + BC + A (B ⊕ C) = AB ⊕ C + A (B ⊕ C) = A ⊕ (B ⊕ C) € K.K. Gan L9: Digital Electronics 7 Flip-Flops: ● Basic counting unit in computer: ◆ counters ◆ shift registers ◆ memory ● Circuit whose output depends on the history of its inputs. ● Can make a flip-flop with just 2 transistors (or 2 vacuum tubes 1919!). ● Lots of different types of flip-flops (e.g. RS, JK, T, D). ● Example: RS flip-flop or Reset-Set flip-flop ◆ Flip-flops, like logic gates are defined by their truth table. ◆ Flip-flops are controlled by an external clock pulse. ◆ All inputs and outputs are logic levels (e.g. TTL, ECL). ◆ Can make an RSFF out of NOR gates: C R R S Q Q n+1 0 0 Qn R Q 1 0 0 0 1 1 Q S Q S 1 1 undefined ■ Qn is the present state of the FF. ■ Qn+1 will be the output after the clock enables the FF to look at its inputs (R and S). ■ Many FF change state (Qn → Qn+1) on the trailing edge of the clock. The state with R = S =1 is undefined. The output is not predictable! K.K. Gan L9: Digital Electronics 8 ● Example: D flip-flop (Like RS but only one input) D Q Qnext 0 0 0 D Q 0 1 0 Q 1 0 1 1 1 1 Clock ● Example: JK flip-flop ◆ JKFF is like the RSFF except that both inputs (J and K) can be high (1). C J K Q n+1 0 0 Qn J Q 1 0 1 0 1 0 K Q 1 1 Qn ◆ Most JKFF’s have a connection for forcing Q = 0 (clear) or forcing Q = 1 (preset). ● Example: T (Toggle) flip-flop ◆ T flip-flop is like the JKFF with both inputs (J and K) tied to each other. T Q Qnext T Q 0 0 0 0 1 1 Q 1 0 1 1 1 0 Clock K.K. Gan L9: Digital Electronics 9 ● Flip-Flops are a class of circuits called “multivibrators” ◆ Multivibrators are circuits with one or more stable states. ■ Monostable multivibrators (one shot) have one stable state. ❑ If the circuit is forced out of its stable state (e.g. by an input pulse) ☞ it eventually returns back to the stable state by itself. ■ Bistable multivibrators have two stable states. ❑ Transitions between states occur only by an external action (e.g. voltage pulse for flip-flops). ❑ Transition voltages can be different for the two states (e.g. Schmitt trigger). ■ Astable multivibrators are two-state devices which switch on their own accord. ☞ Commonly used as oscillators. K.K. Gan L9: Digital Electronics 10 ◆ Example: Bistable Multivibrator. ■ This circuit has two stable states. ■ When either transistor conducts there is 4 mA flowing (by design) in the collector (IC1 or IC2). ■ State 1: transistor 1 off, transistor 2 on ❑ VC1 ≈ 11 V, VB1 ≈ 2 V, VE1 ≈ 4 V ❑ VC2 ≈ 4 V, VB2 ≈ 5.5 V, VE2 ≈ 4 V T2 is saturated (VCE ≈ 0) ■ Transition from state 1 to state 2: ❑ Input pulse forces T1 to conduct, T1 conducting means that VC1 drops.
Recommended publications
  • Electronics Ii Curriculum Guide January 2012
    PASSAIC COUNTY TECHNICAL INSTITUTE ELECTRONICS II CURRICULUM GUIDE JANUARY 2012 I. Course Description – Electronics Technology II Electronics II is designed to provide the student with enhanced skills and understanding of the electronics industry and changing career opportunities. Course goals are to provide the student with an augmented comprehension of advanced digital circuits and applications based on sound electrical fundamentals. Lab applications and projects are combined with theory based learning to provide the learner with a program which emulates industry standards and practices. II. Course Outline and Objectives UNIT 1: ELECTRONICS SHOP SAFETY (5.1.12.C.1, 5.1.4.D.3, 5.1.P.B.3) Students will: 1. develop a clear understanding of things that conduct electricity 2. understand lab and electrical hazards 3. know the dangers of electricity and how it affects the human body 4. learn how to report lab hazards to school personnel 5. develop a positive attitude about safe environments 6. learn proper use of tools in a safe manner 7. operate test equipment safely and effectively 8. avoid and report obstructions in the lab which can lead to injury 9. identify elements in the lab which can potentially cause injury 10. create and document a personal safety plan 11. know where to access safety standards posted in the lab 12. learn to ask appropriate questions when concerned about safety 13. operate and maintain all lab computers and peripherals efficiently 14. wear hand and eye protection as instructed 15. pass the program safety test with a 100% score UNIT 2: WORK ENVIRONMNETS IN ELECTRONICS (9.2.8.A.1, 9.4.12.O.
    [Show full text]
  • Design & Performance Analysis of DG-MOSFET for Reduction of Short
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Directory of Open Access Journals Ankita Wagadre Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 7( Version 1), July 2014, pp.30-34 RESEARCH ARTICLE OPEN ACCESS Design & Performance Analysis of DG-MOSFET for Reduction of Short Channel Effect over Bulk MOSFET at 20nm Ankita Wagadre*, Shashank Mane** *(Research scholar, Department of Electronics & Communication, SBITM, Betul-460001) ** (Assistant Professor, Department of Electronics & Communication, SBITM, Betul-460001) ABSTRACT An aggressive scaling of conventional MOSFETs channel length reduces below 100nm and gate oxide thickness below 3nm to improved performance and packaging density. Due to this scaling short channel effect (SCEs) like threshold voltage, Subthreshold slope, ON current and OFF current plays a major role in determining the performance of scaled devices. The double gate (DG) MOSFETS are electro-statically superior to a single gate (SG) MOSFET and allows for additional gate length scaling. Simulation work on both devices has been carried out and presented in paper. The comparative study had been carried out for threshold voltage (VT), Subthreshold slope (Sub VT), ION and IOFF Current. It is observed that DG MOSFET provide good control on leakage current over conventional Bulk (Single Gate) MOSFET. The VT (Threshold Voltage) is 2.7 times greater than & ION of DG MOSFET is 2.2 times smaller than the conventional Bulk (Single Gate) MOSFET. Keywords - DG MOSFET (Double Gate Metal oxide Field Effect Transistor), Short Channel Effect (SCE), Bulk (Single Gate) MOSFET.
    [Show full text]
  • Digital Electronics Syllabus
    Digital Electronics Mrs. Carlson – D102 Pathway to Engineering Project Lead the Way CTE Academy Sioux Falls, SD [email protected] DE Course Description Digital electronics is the foundation of all modern electronic devices such as cellular phones, MP3 players, laptop computers, digital cameras, and high-definition televisions. The major focus of Digital Electronics is to expose students to the design process of combinational and sequential logic design, key elements of careers in engineering. Students design circuits to solve problems, export their designs to a printed circuit auto-routing program that generates printed circuit boards, and use appropriate components to build their designs. DE Expectations Project Lead the Way’s Pathway to Engineering program is a pre-professional program. Participants in this program will be held to the highest academic and behavior standards. Academic expectations include: Preparing for class and having all required materials on hand: pen/pencil, calculator, engineering notebook, 3-ring binder Completing activities and meeting project deadlines Working cooperatively with others Submitting ALL assignments on or before the assigned due date Using the PLTW Learning Management System to review course materials, receive messages and keep track of due dates Behavior expectations include: Being punctual for all class meeting times Maintaining a clean and SAFE working environment Speaking respectfully to others Using all equipment SAFELY and for its intended purpose only Late work policy:
    [Show full text]
  • Chapter 1 Computers and Digital Basics Computer Concepts 2014 1 Your Assignment…
    Chapter 1 Computers and Digital Basics Computer Concepts 2014 1 Your assignment… Prepare an answer for your assigned question. Use Chapter 1 in the book and this PowerPoint to procure information. Prepare a PowerPoint presentation to: 1. Show your answer and additional information/facts – make sure you understand and can explain your answer. Provide as must information and detail as possible. Add graphics to enhance. 2. Where in the book did you find your information? Include the page number. 3. What more do you need to find out to help you better understand this question? Be prepared to share your information with the class. Chapter 1: Computers and Digital Basics 2 1 The Digital Revolution The digital revolution is an ongoing process of social, political, and economic change brought about by digital technology, such as computers and the Internet The technology driving the digital revolution is based on digital electronics and the idea that electrical signals can represent data, such as numbers, words, pictures, and music Chapter 1: Computers and Digital Basics 6 1 The Digital Revolution Digitization is the process of converting text, numbers, sound, photos, and video into data that can be processed by digital devices The digital revolution has evolved through four phases, beginning with big, expensive, standalone computers, and progressing to today’s digital world in which small, inexpensive digital devices are everywhere Chapter 1: Computers and Digital Basics 7 1 The Digital Revolution Chapter 1: Computers and Digital Basics
    [Show full text]
  • Lecture Notes for Digital Electronics
    Lecture Notes for Digital Electronics Raymond E. Frey Physics Department University of Oregon Eugene, OR 97403, USA [email protected] March, 2000 1 Basic Digital Concepts By converting continuous analog signals into a finite number of discrete states, a process called digitization, then to the extent that the states are sufficiently well separated so that noise does create errors, the resulting digital signals allow the following (slightly idealized): • storage over arbitrary periods of time • flawless retrieval and reproduction of the stored information • flawless transmission of the information Some information is intrinsically digital, so it is natural to process and manipulate it using purely digital techniques. Examples are numbers and words. The drawback to digitization is that a single analog signal (e.g. a voltage which is a function of time, like a stereo signal) needs many discrete states, or bits, in order to give a satisfactory reproduction. For example, it requires a minimum of 10 bits to determine a voltage at any given time to an accuracy of ≈ 0:1%. For transmission, one now requires 10 lines instead of the one original analog line. The explosion in digital techniques and technology has been made possible by the incred- ible increase in the density of digital circuitry, its robust performance, its relatively low cost, and its speed. The requirement of using many bits in reproduction is no longer an issue: The more the better. This circuitry is based upon the transistor, which can be operated as a switch with two states. Hence, the digital information is intrinsically binary. So in practice, the terms digital and binary are used interchangeably.
    [Show full text]
  • Introduction (Pdf)
    chapter1.fm Page 1 Thursday, August 17, 2000 4:43 PM CHAPTER 1 INTRODUCTION The evolution of digital circuit design n Compelling issues in digital circuit design n How to measure the quality of digital design n Valuable references 1.1 A Historical Perspective 1.2 Issues in Digital Integrated Circuit Design 1.3 Quality Metrics of A Digital Design 1.4 Summary 1.5 To Probe Further 1 chapter1.fm Page 2 Thursday, August 17, 2000 4:43 PM 2 INTRODUCTION Chapter 1 1.1A Historical Perspective The concept of digital data manipulation has made a dramatic impact on our society. One has long grown accustomed to the idea of digital computers. Evolving steadily from main- frame and minicomputers, personal and laptop computers have proliferated into daily life. More significant, however, is a continuous trend towards digital solutions in all other areas of electronics. Instrumentation was one of the first noncomputing domains where the potential benefits of digital data manipulation over analog processing were recognized. Other areas such as control were soon to follow. Only recently have we witnessed the con- version of telecommunications and consumer electronics towards the digital format. Increasingly, telephone data is transmitted and processed digitally over both wired and wireless networks. The compact disk has revolutionized the audio world, and digital video is following in its footsteps. The idea of implementing computational engines using an encoded data format is by no means an idea of our times. In the early nineteenth century, Babbage envisioned large- scale mechanical computing devices, called Difference Engines [Swade93]. Although these engines use the decimal number system rather than the binary representation now common in modern electronics, the underlying concepts are very similar.
    [Show full text]
  • Digital Electronics Part II - Circuits
    Digital Electronics Part II - Circuits Dr. I. J. Wassell Gates from Transistors 1 Introduction • Logic circuits are non-linear, consequently we will introduce a graphical technique for analysing such circuits • The construction of an NMOS inverter from an n-channel field effect transistor (FET) is described • CMOS logic is then introduced Solving Non-linear circuits • First of all we need to introduce Ohm’s Law. For a linear component such as a resistor, this states that the voltage across the device is proportional to the current through it, i.e., V = IR • We will apply this concept to a simple circuit consisting of 2 resistors in series connected across an ideal voltage source – known as a potential divider 2 Potential Divider • What is the voltage at point x relative to the the 0V point? I V = V1 +V2 V = IR V = IR R1 V1 1 1 2 2 V x V = IR1 + IR2 = I(R1 + R2 ) R 2 V2 V I = 0V (R1 + R2) V R2 Vx = V2 = R2 = V (R1 + R2 ) R1 + R2 Potential Divider • How can we do this graphically? I So if V = 10V, R1 = 1 Ω and R2 = 2 Ω R V 1 1 V x R2 2 Vx = V =10 = 7.6 V R R + R 1+ 2 2 V2 1 2 0V Current Current through through R2 (2 Ω) R1 (1 Ω) 0V Voltage x= 6.7V Voltage V= 10V across R2 across R1 3 Graphical Approach • Clearly approach works for a linear circuit. • How could we apply this if we have a non- linear device, e.g., a transistor in place of R2? • What we do is substitute the V-I characteristic of the non-linear device in place of the linear characteristic (a straight line due to Ohm’s Law) used previously for R2 Graphical Approach
    [Show full text]
  • Introduction to Digital Electronics by Agner Fog, 2019-10-30
    Introduction to Digital Electronics by Agner Fog, 2019-10-30. Contents 1. Number systems ............................................................................................................................... 3 1.1. Decimal, binary, and hexadecimal numbers ............................................................................ 3 1.2. Conversion from another number system to decimal ............................................................... 4 1.3. Conversion from decimal to another number system ............................................................... 5 1.4. Addition of binary numbers ...................................................................................................... 6 1.5. Signed binary numbers ............................................................................................................ 7 1.6. Binary coded decimal numbers ................................................................................................ 9 1.7. Exercises ............................................................................................................................... 10 2. Boolean algebra .............................................................................................................................. 12 2.1. Laws and rules ....................................................................................................................... 13 2.2. Truth tables ...........................................................................................................................
    [Show full text]
  • 2021-22 Senior Worksheet
    BROWNSBURG HIGH SCHOOL SENIOR COURSE SELECTION WORKSHEET Students and Parents: To assist you in planning your course selections, please review the Program of Studies. This document can be found on the high school website at https://www.brownsburg.k12.in.us/bhs-scheduling. Please take time to review the BHS policies and procedures and the graduation requirements for Core 40, Academic Honors, and Technical Honors. This form has been created as an aid in selecting courses online for the 2021-2022 school year using your PowerSchool account. Courses with two identifying numbers indicate a full year course (or two semesters). Identifying single numbers indicate a one semester course. A total of 14 semesters should be selected. A. CORE SENIOR REQUIREMENTS Select one (1) box in each of the core areas below. English Social Studies - Economics Credits Course # Course Name Credits Course # Course Name □ 2 157-158 English 12 □ 1 408 Economics □ 2 1651-1652 English Literature & Composition, AP □ 1 422 Microeconomics, AP □ 2 1861-1901 Adv. Eng CC/IT ENGL 111/215 Social Studies - Government Credits Course # Course Name □ 1 407 US Government 1 421 US Government & Politics, AP □ B. CORE SENIOR RECOMMENDED Math Science Credits Course # Course Name Credits Course # Course Name □ 2 215-216 Algebra II □ 2 311-312 Chemistry I □ 2 2171-2172 Algebra II Honors □ 2 3451-3452 Pre-AP Chemistry I Honors □ 2 251-252 Pre-Calculus/Trigonometry □ 2 353-354 Integrated Chemistry-Physics □ 2 2521-2522 Pre-Calculus/Trigonometry Honors AB □ 2 351-352 Advanced Science: Earth Systems □ 2 2543-2544 Pre-Calculus/Trigonometry Honors BC □ 2 315-316 Physics I □ 2 2181-2182 Finite Math (non dual credit) □ 2 3481-3482 Pre-AP Physics I Honors □ 2 239-240 Statistics, AP □ 2 339-340 Anatomy & Physiology □ 2 229-230 Calculus AB, AP □ 2 309-310 Advanced Science: Zoology □ 2 2341-2342 Calculus BC, AP □ 2 361-362 Adv.
    [Show full text]
  • Combining Digital with Analog Circuits in a Core Course for a Multidisciplinary Engineering Curriculum
    Paper ID #12645 Combining Digital with Analog Circuits in a Core Course for a Multidisci- plinary Engineering Curriculum Dr. Harold R Underwood, Messiah College Dr. Underwood received his Ph.D. in Electrical Engineering at the University of Illinois at Urbana- Champaign (UIUC) in 1989, and has been a faculty member of the engineering Department at Mes- siah College since 1992. Besides teaching Circuits, Electromagnetics, and Communications Systems, he supervises engineering students in the Communications Technology Group on credited work in the In- tegrated Projects Curriculum (IPC) of the Engineering Department, and other students who participate voluntarily via the Collaboratory for Strategic Parnternships and Applied Research. His on-going projects include improving Flight Tracking and Messaging Systems for small planes in remote locations, and developing an assistive communication technology using Wireless Enabled Remote Co-presence for cog- nitively and behaviorally challenged individuals including those with high-functioning autism, or PTSD. Dr. Donald George Pratt, Messiah College Dr. Pratt is a Professor of Engineering at Messiah College where he has taught since 1993. Over the past 20+ years, he has become known for his work with students on an eclectic mix of practical, hands-on projects involving such things as electric vehicles, aircraft, vehicles for use in developing countries, and methods of finding and removing antipersonnel land mines. Dr. Pratt is a co-founder of the Collaboratory for Strategic Partnerships and Applied Research. He and his wife of 30+ years have two grown children and three grandchildren. An avid pilot and builder, he enjoys flying over the beautiful farms and forests of the Cumberland Valley.
    [Show full text]
  • Courses Offered for Dual Credit
    McKenzie Center for as of 8/22/2018 Innovation Technology 2018 - 2019 DUAL CREDIT College PROGRAM / High School Course Course Code AGREEMENT College Course # Credits Assessment Taken/Certification Accounting 4524M Vinc. U ACCT 100 3 D.Credit Auto Service Tech I 5510M Vinc. U AUTI 100 3 D. Credit/ASE Student Cert AUTI 141 3 D. Credit/ASE Student Cert Auto Service Tech II 5546M Vinc. U AUTI 111 3 D. Credit/ASE Student Cert Biology 3092LS Ivy Tech BIO 105 5 D.Credit Civil Engineering & Architecture 4820M Ivy Tech DESN 105 3 D.Credit Collision Repair I 5514M Vinc. U AUTO 105 2 D.Credit BODY 100 3 D.Credit BODY 100L 4 D.Credit Collision Repair II 5544M Vinc. U BODY 150 3 D. Credit/ASE BODY 150L 4 D. Credit/ASE BODY 290 2 WELD 185 2 Collision Repair III Work Based Learn 5892M Vinc. U BODY 280 2 Computer Integrated Mfg. 4810M Ivy Tech ADMF 116 3 D.Credit Computer Tech Support A+ 5230M Vinc. U CMET 140 3 D.Credit/CompTIA CMET 185 3 D.Credit/CompTIA Construction Trades I 5580M Ivy Tech BCTI 100 3 D.Credit/NCCER Construction Trades II 5578M Ivy Tech BCTI 101 3 D.Credit/NCCER BCTI 102 3 D.Credit/NCCER Cosmetology I 5802M Vinc. U COSM 100 7 D.Credit COSM 150 7 D.Credit Cosmetology II 5806M Vinc. U COSM 200 7 D. Credit/State Board/Heartsaver COSM 250 9 D. Credit/State Board/Heartsaver Culinary Arts & Hospitality I 5346M Vinc. U REST 100 3 D.Credit/ProStart Culinary Arts & Hospitality I 5346M Vinc.
    [Show full text]
  • Integrated Power Conversion
    MUX 2010 Analog Electronics: the ensemble of techniques and circuit solution to project systems to elaborate the information in analog way Digital Electronics: the ensemble of techniques and circuit solution to project systems for the logical and numeric elaboration of the information Power Electronics : the ensemble of techniques and circuit solution to project systems to control the energy transfer from a source to a load The principles that defines the quality of product are . Small dimension Compact and efficient power distribution system . High performance High consumption . Small power consumption otherwise high battery life for portable systems High efficiency . Low cost Small component and high efficiency Normally a good product design requires a good power management system Analog electronics: precision (low offset and high signal noise ratio), high speed (bandwidth), low consumption and low area Digital electronics: high elaboration frequency, low energy for operation and low area Power electronics: high conversion efficiency that implies high power density (ratio between the circuit volume and the power utilized). Pout P P _ Density out Pin Volume Analog electronics : low offset for area unit, high devices cut off frequency Digital electronics : high number of gates for area unit Power electronics : low resistance for area unit, low charge to drive the switch and low reverse recovery charge Conversion topologies design strategies . Linear conversion . Switched capacitor conversion . Magnetic conversion Integrated power devices and parasitcs effects . Power mosfet . Parasitic effetcs Information Input Signals Output Signals Processing Control Signal Source Load Power Processing Specification: f (Vsource , I source ,t) 0 . VI characteristic and type of source (AC/DC) .
    [Show full text]