Fourth generation MOSFET model and its VHDL-AMS implementation

Size: px
Start display at page:

Download "Fourth generation MOSFET model and its VHDL-AMS implementation"

Transcription

1 Fourth generation MOSFET model and its VHDL-AMS implementation Fabien Prégaldiny and Christophe Lallement ERM-PHASE, Parc d innovation, BP 10413, Illkirch cedex, France

2 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 2

3 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 3

4 Introduction Scaling of CMOS technology Thinner gate oxide t ox Greater substrate doping level N a Increasing importance of quantum mechanical effects (QME) and polydepletion effect (PDE) Increase of model complexity and number of parameters (e.g. BSIM 3, BSIM 4) Development of a new physics-based model Analytical surface-potential-based model QME included in a fully transparent way Straightforward use of a charge sheet model 4

5 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 5

6 History of compact models L g > 2 µm Entry into the submicronic era L g < 0.5 µm 10µm 1µm 0.1µm 6

7 Major compact models 3 rd generation 4 th generation BSIM 3v3, BSIM 4: threshold-voltage-based models Regional approximations Smoothing functions used as a model (e.g. drain current) Increasing complexity, dramatic number of parameters EKV 3.0: charge linearization model Bulk used as a reference: symmetric model structure Alternative to surface-potential-based models MM 11, SP: surface-potential-based models Models close to physics Explicit formulation of the surface potential Symmetric model structure (idem EKV) 7

8 Surface-potential potential-based model Why φ s -based models? Starting point is Brews s model which is totally symmetric and satisfies all benchmark tests No discrepancies between I-V and C-V models Single equation for the whole operation range Major drawback: time consuming!! Solution: explicit approximation [1-2] such as φ = fv (, V ) s gb ch [1] R. van Langevelde and F. M. Klaassen, Solid- State Electronics, vol. 44, pp , [2] T. L. Chen and G. Gildenblat, Solid-State Electronics, vol. 45, pp ,

9 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 9

10 Quantum mechanical effects High channel doping and ultra-thin gate oxides result in a very high normal field at the Si -SiO 2 interface, which in turns leads to: Significant bending of the energy bands Narrow potential well at the interface Quantization of the carriers motion in the direction to the interface Splitting of the conduction (valence) band into discrete subbands Displacement of the inversion (accumulation) layer carrier distribution from the interface 10

11 Quantum mechanical effects Energy band diagram (in transversal direction) of an n-mosfet 11

12 Resulting effects QM & PD effects change the relationship between charges and applied voltages Increased surface potential φ s Reduced inversion charge Q inv Increased threshold voltage V th Reduced drain current I d... C-V characteristics are particularly affected Analog and RF design require a consistent modeling of all electrical characteristics 12

13 QME modeling inversion Approximation of the variational approach Concept of moderate inversion approximation [3] bv (, V ) g ch 12 m q 2 εsi ( V, V ) 3 where n all is the equivalent carrier density 2 n all g ch 2 Cox n ( V, V ) = V V V q ( ) all g ch g to ch and V g an hyperbolic smoothing function 1/3 [3] F. Prégaldiny, C. Lallement, R. van Langevelde and D. Mathiot, Solid-State Electronics, vol. 48, pp ,

14 QME modeling inversion Quantum shift of the conduction band, i.e. pseudo bandgap widening E ( V, V ) bv (, V ) w g ch g ch In terms of surface potential we get δφ ( V, V ) = E ( V, V )/ q s g ch w g ch 2 This provides an explicit relationship between the quantum increment of the surface potential and the gate and source/drain voltages. 14

15 Model validation inversion Comparison between the quantum and classical models 15

16 QME modeling accumulation Structure of the valence band more complex How to achieve a simple, analytical and efficient model? Triangular potential well approximation We should take into account several energy levels... Problem: how then to define a pseudo bandgap widening as in inversion? Choice of a semi-empirical approach Definition of an equivalent density of majority carriers [4]: p acc ( V ) g C = 2 ox q 1 i = ( V V ) g a i fb i [4] F. Prégaldiny, C. Lallement and D. Mathiot, Solid-State Electronics, vol. 48, pp ,

17 QME modeling accumulation Quantum shift of the valence band, i.e. pseudo bandgap widening 23 E ( V ) F ( V ) where w g eff g Feff pacc( Vg ) In the same way than in inversion we get δφ ( V ) = E ( V )/ q s g w g Finally, in both inversion and accumulation regions, the surface potential is defined as: φ = φ ± δφ s [ qm] s s at a given bias ( V, V, V ) gb db sb 17

18 Full model validation Surface potential computed as a function of gate voltage Symbols represent results obtained by a self-consistent resolution of the Schrödinger and Poisson equations. 18

19 Charge sheet model Definitions of the charges: Q = γ C φ b ox s ( ) Q = Q + Q g inv b ( φ φ ) Q = C V V Q inv ox gb fb s p b Evaluating the transcapacitances: C ij Q + i for i = j Vj = where i, j = Q i for i j Vj g, s, d or b 19

20 Comp. with S-P S P simulations Gate transcapacitance as a function of gate voltage 20

21 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 21

22 VHDL-AMS code: the functions -- Functions declaration PACKAGE fab_functions IS pure function... phis2_qm(cox,vg,vch,...,phit:real) return real; END; List of all the functions -- Functions definitions PACKAGE BODY fab_functions IS -- Classical description of the surface potential pure function phis2(vg,vch,vfb,,phit:real) return real is variable ret :real; begin ret :=...; return ret; end phis2; -- Quantum description of the surface potential pure function phis2_qm(cox,vg,vch,...,phit:real) return real is variable ret :real; begin ret :=...; return ret; end phis2_qm; Definition of each function END fab_functions; 22

23 VHDL-AMS code: the entity library ieee; use ieee.electrical_systems.all; ENTITY mosfet IS generic (W :real :=1.0e-6; -- Gate width L :real :=1.0e-6; -- Gate length Na :real :=5.0e23; -- Substrate doping Np :real :=1.0e26; -- Polysilicon doping tox :real :=3.0e-9; -- Oxide thickness Mu0 :real :=0.050; -- Low-field mobility Vfb :real :=-1.0; -- Flatband voltage Theta1 :real :=0.20; -- Mobility parameter 1 Theta2 :real :=0.30); -- Mobility parameter 2 port (terminal G,D,S,B:electrical); END ENTITY mosfet; 23

24 VHDL-AMS code: the architecture use ieee.math_real.all; use user_fp.fab_functions.all; ARCHITECTURE quantum OF mosfet IS constant T :real := 300.0; constant q :real := 1.602e-19;... quantity Qg_qm :real; quantity Qb_qm :real;... quantity Vdb across D to B; quantity Vsb across S to B; quantity Vgb across G to B; quantity Ids_qm through D to S;... BEGIN -- Gate charge density Qg_qm == Cox*(Vgb-Vfb-phis2_qm(Cox,Vgb,Vsb,...,phit)); -- Bulk charge density Qb_qm == Cox*gamma*(phis2_qm(Cox,Vgb,Vsb,...,phit))**0.5; -- Inversion charge density / Drift current / Diffusion current / Transcapacitances / etc.... END ARCHITECTURE quantum; 24

25 Simulation results 25

26 Outline Introduction The 4 th generation of MOSFET models New quantum surface potential model Model implementation in VHDL-AMS Results and comparison with experiments Conclusion 26

27 Comparison with experiments Drain current of an n-channel MOSFET Experimental data from an advanced Philips CMOS technology 27

28 Comparison with experiments Normalized gate transcapacitance vs gate voltage Experimental data from a 0.18 µm CMOS technology (Philips) 28

29 Comparison with experiments No empirical parameter C dg +C sg transcapacitance of an n-channel MOSFET Experimental data from a 0.18 µm CMOS technology (Motorola) 29

30 Conclusion An analytical and quantum surface-potential-based MOSFET model has been presented The new model describes accurately all the fundamental electrical characteristics of MOSFET, and that from accumulation to strong inversion The quantum model requires no additional parameter in comparison with the classical model Implementing the model in competitive HDLs such as VHDL-AMS and Verilog-AMS is straightforward Comparisons with numerical simulations and experimental data show excellent results 30

31 Thank you! 31

CHAPTER 10 Fundamentals of the Metal Oxide Semiconductor Field Effect Transistor

CHAPTER 10 Fundamentals of the Metal Oxide Semiconductor Field Effect Transistor CHAPTER 10 Fundamentals of the Metal Oxide Semiconductor Field Effect Transistor Study the characteristics of energy bands as a function of applied voltage in the metal oxide semiconductor structure known

More information

Transconductance. (Saturated) MOSFET Small-Signal Model. The small-signal drain current due to v gs is therefore given by

Transconductance. (Saturated) MOSFET Small-Signal Model. The small-signal drain current due to v gs is therefore given by 11 (Saturated) MOSFET Small-Signal Model Transconductance Concept: find an equivalent circuit which interrelates the incremental changes in i D v GS v DS etc. for the MOSFET in saturation The small-signal

More information

Lecture 9 - MOSFET (I) MOSFET I-V Characteristics. October 6, 2005

Lecture 9 - MOSFET (I) MOSFET I-V Characteristics. October 6, 2005 6.12 - Microelectronic Devices and Circuits - Fall 25 Lecture 9-1 Lecture 9 - MOSFET (I) MOSFET I-V Characteristics October 6, 25 Contents: 1. MOSFET: cross-section, layout, symbols 2. Qualitative operation

More information

MOSFET DEVICE MODELING FOR ANALOG CIRCUITS DESIGN

MOSFET DEVICE MODELING FOR ANALOG CIRCUITS DESIGN MOSFET DEVICE MODELING FOR ANALOG CIRCUITS DESIGN Student name: Truong, Long Giang Student #: 970304580 Course: ECE1352F 1. INTRODUCTION The technological trend towards deep sub-micrometer dimensions,

More information

Lecture 8 MOSFET(I) MOSFET I-V CHARACTERISTICS

Lecture 8 MOSFET(I) MOSFET I-V CHARACTERISTICS Lecture 8 MOSFET(I) MOSFET I-V CHARACTERISTICS Outline 1. MOSFET: cross-section, layout, symbols 2. Qualitative operation 3. I-V characteristics Reading Assignment: Howe and Sodini, Chapter 4, Sections

More information

Lecture 9 - MOSFET (I) MOSFET I-V Characteristics. March 6, 2003

Lecture 9 - MOSFET (I) MOSFET I-V Characteristics. March 6, 2003 6.12 - Microelectronic Devices and Circuits - Spring 23 Lecture 9-1 Lecture 9 - MOSFET (I) MOSFET I-V Characteristics March 6, 23 Contents: 1. MOSFET: cross-section, layout, symbols 2. Qualitative operation

More information

An Introduction to the EKV Model and a Comparison of EKV to BSIM

An Introduction to the EKV Model and a Comparison of EKV to BSIM An Introduction to the EKV Model and a Comparison of EKV to BSIM Stephen C. Terry 2. 3.2005 Integrated Circuits & Systems Laboratory 1 Overview Characterizing MOSFET operating regions EKV model fundamentals

More information

BJT Ebers-Moll Model and SPICE MOSFET model

BJT Ebers-Moll Model and SPICE MOSFET model Department of Electrical and Electronic Engineering mperial College London EE 2.3: Semiconductor Modelling in SPCE Course homepage: http://www.imperial.ac.uk/people/paul.mitcheson/teaching BJT Ebers-Moll

More information

The MOSFET Transistor

The MOSFET Transistor The MOSFET Transistor The basic active component on all silicon chips is the MOSFET Metal Oxide Semiconductor Field Effect Transistor Schematic symbol G Gate S Source D Drain The voltage on the gate controls

More information

Introduction to PSP MOSFET Model

Introduction to PSP MOSFET Model Introduction to PSP MOSFET Model G. Gildenblat, X. Li, H. Wang, W. Wu Department of Electrical Engineering The Pennsylvania State University, USA and R. van Langevelde, A.J. Scholten, G.D.J. Smit and D.B.M.

More information

An analytical gate tunneling current model for MOSFETs

An analytical gate tunneling current model for MOSFETs Физика и техника полупроводников, 2012, том 46, вып. 3 An analytical gate tunneling current model for MOSFETs Iman Abaspur Kazerouni, Seyed Ebrahim Hosseini Electrical and Computer Department, Sabzevar

More information

Lecture 090 Large Signal MOSFET Model (3/24/10) Page 090-1

Lecture 090 Large Signal MOSFET Model (3/24/10) Page 090-1 Lecture 9 Large Signal MOSFET Model (3/24/1) Page 9-1 LECTURE 9 LARGE SIGNAL MOSFET MODEL LECTURE ORGANIZATION Outline Introduction to modeling Operation of the MOS transistor Simple large signal model

More information

Lecture 9 MOSFET(II) MOSFET I-V CHARACTERISTICS(contd.)

Lecture 9 MOSFET(II) MOSFET I-V CHARACTERISTICS(contd.) Lecture 9 MOSFET(II) MOSFET I-V CHARACTERISTICS(contd.) Outline 1. The saturation regime 2. Backgate characteristics Reading Assignment: Howe and Sodini, Chapter 4, Section 4.4 Announcements: 1. Quiz#1:

More information

The MOS Transistor in Weak Inversion

The MOS Transistor in Weak Inversion MOFE Operation in eak and Moderate nversion he MO ransistor in eak nversion n this section we will lore the behavior of the MO transistor in the subthreshold regime where the channel is weakly inverted.

More information

EDC Lesson 12: Transistor and FET Characteristics. 2008 EDCLesson12- ", Raj Kamal, 1

EDC Lesson 12: Transistor and FET Characteristics. 2008 EDCLesson12- , Raj Kamal, 1 EDC Lesson 12: Transistor and FET Characteristics Lesson-12: MOSFET (enhancement and depletion mode) Characteristics and Symbols 2008 EDCLesson12- ", Raj Kamal, 1 1. Metal Oxide Semiconductor Field Effect

More information

EE-612: Nanoscale Transistors (Advanced VLSI Devices) Spring 2005

EE-612: Nanoscale Transistors (Advanced VLSI Devices) Spring 2005 EE-612: Nanoscale Transistors (Advanced VLSI Devices) Spring 2005 Mark Lundstrom Electrical and Computer Engineering Purdue University, West Lafayette, IN USA 765-494-3515 lundstro@purdue.edu 1 evolution

More information

CONTENTS. Preface. 1.1.2. Energy bands of a crystal (intuitive approach)

CONTENTS. Preface. 1.1.2. Energy bands of a crystal (intuitive approach) CONTENTS Preface. Energy Band Theory.. Electron in a crystal... Two examples of electron behavior... Free electron...2. The particle-in-a-box approach..2. Energy bands of a crystal (intuitive approach)..3.

More information

MOS Capacitor CHAPTER OBJECTIVES

MOS Capacitor CHAPTER OBJECTIVES Hu_ch05v3.fm Page 157 Friday, February 13, 2009 2:38 PM 5 MOS Capacitor CHAPTER OBJECTIVES This chapter builds a deep understanding of the modern MOS (metal oxide semiconductor) structures. The key topics

More information

Sheet Resistance = R (L/W) = R N ------------------ L

Sheet Resistance = R (L/W) = R N ------------------ L Sheet Resistance Rewrite the resistance equation to separate (L / W), the length-to-width ratio... which is the number of squares N from R, the sheet resistance = (σ n t) - R L = -----------------------

More information

MOS (metal-oxidesemiconductor) 李 2003/12/19

MOS (metal-oxidesemiconductor) 李 2003/12/19 MOS (metal-oxidesemiconductor) 李 2003/12/19 Outline Structure Ideal MOS The surface depletion region Ideal MOS curves The SiO 2 -Si MOS diode (real case) Structure A basic MOS consisting of three layers.

More information

Semiconductor doping. Si solar Cell

Semiconductor doping. Si solar Cell Semiconductor doping Si solar Cell Two Levels of Masks - photoresist, alignment Etch and oxidation to isolate thermal oxide, deposited oxide, wet etching, dry etching, isolation schemes Doping - diffusion/ion

More information

Modeling the Characteristics of a High-k HfO 2 -Ta 2 O 5 Capacitor in Verilog-A

Modeling the Characteristics of a High-k HfO 2 -Ta 2 O 5 Capacitor in Verilog-A Modeling the Characteristics of a High-k HfO 2 -Ta 2 O 5 Capacitor in Verilog-A George V. Angelov, Member, IEEE Abstract A circuit simulation model of a MOS capacitor with high-k HfO 2 Ta 2 O 5 mixed layer

More information

Bob York. Transistor Basics - MOSFETs

Bob York. Transistor Basics - MOSFETs Bob York Transistor Basics - MOSFETs Transistors, Conceptually So far we have considered two-terminal devices that are described by a current-voltage relationship I=f(V Resistors: Capacitors: Inductors:

More information

SPICE MOSFET Declaration

SPICE MOSFET Declaration SPICE MOSFET Declaration The MOSFET is a 4-terminal device that is specified in the netlist as: Mname ND NG NS NB ModName The optional para are: L= value W= value AD=value AS=value PD=value

More information

Statistical Models for Hot Electron Degradation in Nano-Scaled MOSFET Devices

Statistical Models for Hot Electron Degradation in Nano-Scaled MOSFET Devices 2006, 대한 산업공학회 추계학술대회 Session C3 : Statistical models Statistical Models for Hot Electron Degradation in Nano-Scaled MOSFET Devices Seong-joon Kim, Suk Joo Bae Dept. of Industrial Engineering, Hanyang

More information

Introduction to VLSI Fabrication Technologies. Emanuele Baravelli

Introduction to VLSI Fabrication Technologies. Emanuele Baravelli Introduction to VLSI Fabrication Technologies Emanuele Baravelli 27/09/2005 Organization Materials Used in VLSI Fabrication VLSI Fabrication Technologies Overview of Fabrication Methods Device simulation

More information

Electron mobility in MOSFETs with ultrathin RTCVD silicon nitride/oxynitride stacked gate dielectrics

Electron mobility in MOSFETs with ultrathin RTCVD silicon nitride/oxynitride stacked gate dielectrics Solid-State Electronics 47 (2003) 49 53 www.elsevier.com/locate/sse Short Communication Electron mobility in MOSFETs with ultrathin RTCVD silicon nitride/oxynitride stacked gate dielectrics K.J. Yang a,

More information

Integrated Circuits & Systems

Integrated Circuits & Systems Federal University of Santa Catarina Center for Technology Computer Science & Electronics Engineering Integrated Circuits & Systems INE 5442 Lecture 11 MOSFET part 2 guntzel@inf.ufsc.br I D -V DS Characteristics

More information

CO2005: Electronics I (FET) Electronics I, Neamen 3th Ed. 1

CO2005: Electronics I (FET) Electronics I, Neamen 3th Ed. 1 CO2005: Electronics I The Field-Effect Transistor (FET) Electronics I, Neamen 3th Ed. 1 MOSFET The metal-oxide-semiconductor field-effect transistor (MOSFET) becomes a practical reality in the 1970s. The

More information

DESIGN, FABRICATION AND ELETRICAL CHARACTERIZATION OF SOI FINFET TRANSISTORS

DESIGN, FABRICATION AND ELETRICAL CHARACTERIZATION OF SOI FINFET TRANSISTORS DESIGN, FABRICATION AND ELETRICAL CHARACTERIZATION OF SOI FINFET TRANSISTORS Prof. Dr. João Antonio Martino Professor Titular Departamento de Engenharia de Sistemas Eletrônicos Escola Politécnica da Universidade

More information

Advanced VLSI Design CMOS Processing Technology

Advanced VLSI Design CMOS Processing Technology Isolation of transistors, i.e., their source and drains, from other transistors is needed to reduce electrical interactions between them. For technologies

More information

Solid State Detectors = Semi-Conductor based Detectors

Solid State Detectors = Semi-Conductor based Detectors Solid State Detectors = Semi-Conductor based Detectors Materials and their properties Energy bands and electronic structure Charge transport and conductivity Boundaries: the p-n junction Charge collection

More information

Simulation of Gate Leakage Currents in UTB MOSFETs and Nanowires Andreas Schenk ETH Zurich

Simulation of Gate Leakage Currents in UTB MOSFETs and Nanowires Andreas Schenk ETH Zurich Simulation of Gate Leakage Currents in UTB MOSFETs and Nanowires Andreas Schenk ETH Zurich Outline Introduction Simulation approaches EMA-based methods Ab-initio methods Model calibration using capacitors

More information

Evaluation of the Surface State Using Charge Pumping Methods

Evaluation of the Surface State Using Charge Pumping Methods Evaluation of the Surface State Using Charge Pumping Methods Application Note 4156-9 Agilent 4155C/4156C Semiconductor Parameter Analyzer Introduction As device features get smaller, hot carrier induced

More information

MOS Transistors as Switches

MOS Transistors as Switches MOS Transistors as Switches G (gate) nmos transistor: Closed (conducting) when Gate = 1 (V DD ) D (drain) S (source) Oen (non-conducting) when Gate = 0 (ground, 0V) G MOS transistor: Closed (conducting)

More information

Mansun Chan, Xuemei Xi, Jin He, and Chenming Hu

Mansun Chan, Xuemei Xi, Jin He, and Chenming Hu Mansun Chan, Xuemei Xi, Jin He, and Chenming Hu Acknowledgement The BSIM project is partially supported by SRC, CMC, Conexant, TI, Mentor Graphics, and Xilinx BSIM Team: Prof. Chenming Hu, Dr, Jane Xi,

More information

PHYSICS OF DEVICES ESONN 04. ARCES, University of Bologna. 8/19/2004 Enrico Sangiorgi. Enrico Sangiorgi. ARCES University of Bologna

PHYSICS OF DEVICES ESONN 04. ARCES, University of Bologna. 8/19/2004 Enrico Sangiorgi. Enrico Sangiorgi. ARCES University of Bologna PHYSICS OF DEVICES Enrico Sangiorgi ARCES, University of Bologna ESONN 04 ARCES University of Bologna OUTLINE OF THE COURSE CLASS 1 Introduction to nano-micro micro-electronics. Electrostatic and electrodynamics

More information

High Open Circuit Voltage of MQW Amorphous Silicon Photovoltaic Structures

High Open Circuit Voltage of MQW Amorphous Silicon Photovoltaic Structures High Open Circuit Voltage of MQW Amorphous Silicon Photovoltaic Structures ARGYRIOS C. VARONIDES Physics and EE Department University of Scranton 800 Linden Street, Scranton PA, 18510 United States Abstract:

More information

Behavioral modeling of stressed MOSFET

Behavioral modeling of stressed MOSFET Zeszyty Naukowe WWSI, No 13, Vol. 9, 2015, pp. 103-126 Behavioral modeling of stressed MOSFET Zenon Gniazdowski Warsaw School of Computer Science Abstract In this paper piezoconductivity phenomenon in

More information

A PHYSICAL MODEL FOR MOSFET OUTPUT RESISTANCE. by J. H. Huang, 2. H. Liu, M. C. Jeng, P. K. KO, C. Hu. Memorandum No.

A PHYSICAL MODEL FOR MOSFET OUTPUT RESISTANCE. by J. H. Huang, 2. H. Liu, M. C. Jeng, P. K. KO, C. Hu. Memorandum No. A PHYSICAL MODEL FOR MOSFET OUTPUT RESISTANCE by J. H. Huang, 2. H. Liu, M. C. Jeng, P. K. KO, C. Hu Memorandum No. UCB/ERL M93/56 21 July 1993 A PHYSICAL MODEL FOR MOSFET OUTPUT RESISTANCE by J. H. Huang,

More information

Lecture 030 DSM CMOS Technology (3/24/10) Page 030-1

Lecture 030 DSM CMOS Technology (3/24/10) Page 030-1 Lecture 030 DSM CMOS Technology (3/24/10) Page 030-1 LECTURE 030 - DEEP SUBMICRON (DSM) CMOS TECHNOLOGY LECTURE ORGANIZATION Outline Characteristics of a deep submicron CMOS technology Typical deep submicron

More information

Fabrication and Characterization of N- and P-Type a-si:h Thin Film Transistors

Fabrication and Characterization of N- and P-Type a-si:h Thin Film Transistors Fabrication and Characterization of N- and P-Type a-si:h Thin Film Transistors Engineering Practical Jeffrey Frederick Gold Fitzwilliam College University of Cambridge Lent 1997 FABRCATON AND CHARACTERZATON

More information

EM Noise Mitigation in Circuit Boards and Cavities

EM Noise Mitigation in Circuit Boards and Cavities EM Noise Mitigation in Circuit Boards and Cavities Faculty (UMD): Omar M. Ramahi, Neil Goldsman and John Rodgers Visiting Professors (Finland): Fad Seydou Graduate Students (UMD): Xin Wu, Lin Li, Baharak

More information

MOSFET N-channel enhancement switching transistor IMPORTANT NOTICE. http://www.philips.semiconductors.com use http://www.nxp.com

MOSFET N-channel enhancement switching transistor IMPORTANT NOTICE. http://www.philips.semiconductors.com use http://www.nxp.com Rev. 3 21 November 27 Product data sheet Dear customer, IMPORTANT NOTICE As from October 1st, 26 Philips Semiconductors has a new trade name - NXP Semiconductors, which will be used in future data sheets

More information

Automotive MOSFETs in Linear Applications: Thermal Instability

Automotive MOSFETs in Linear Applications: Thermal Instability Application Note, V1.0, May 2005 Automotive MOSFETs in Linear Applications: Thermal Instability by Peter H. Wilson Automotive Power N e v e r s t o p t h i n k i n g. - 1 - Table of Content 1. Introduction...

More information

Photonic components for signal routing in optical networks on chip

Photonic components for signal routing in optical networks on chip 15 th International Conference on Transparent Optical Networks Cartagena, Spain, June 23-27, 213 Photonic components for signal routing in optical networks on chip Vincenzo Petruzzelli, Giovanna Calò Dipartimento

More information

Digital Integrated Circuit (IC) Layout and Design - Week 3, Lecture 5

Digital Integrated Circuit (IC) Layout and Design - Week 3, Lecture 5 igital Integrated Circuit (IC) Layout and esign - Week 3, Lecture 5! http://www.ee.ucr.edu/~rlake/ee134.html EE134 1 Reading and Prelab " Week 1 - Read Chapter 1 of text. " Week - Read Chapter of text.

More information

Understanding Plastics Engineering Calculations

Understanding Plastics Engineering Calculations Natti S. Rao Nick R. Schott Understanding Plastics Engineering Calculations Hands-on Examples and Case Studies Sample Pages from Chapters 4 and 6 ISBNs 978--56990-509-8-56990-509-6 HANSER Hanser Publishers,

More information

Micro-Power Generation

Micro-Power Generation Micro-Power Generation Elizabeth K. Reilly February 21, 2007 TAC-meeting 1 Energy Scavenging for Wireless Sensors Enabling Wireless Sensor Networks: Ambient energy source Piezoelectric transducer technology

More information

Silicon Sensors for CMS Tracker at High-Luminosity Environment - Challenges in particle detection -

Silicon Sensors for CMS Tracker at High-Luminosity Environment - Challenges in particle detection - timo.peltola@helsinki.fi Finnish Society for Natural Philosophy, Helsinki, 17 February 2015 Silicon Sensors for CMS Tracker at High-Luminosity Environment - Challenges in particle detection - Timo Peltola

More information

Fig6-22 CB configuration. Z i [6-54] Z o [6-55] A v [6-56] Assuming R E >> r e. A i [6-57]

Fig6-22 CB configuration. Z i [6-54] Z o [6-55] A v [6-56] Assuming R E >> r e. A i [6-57] Common-Base Configuration (CB) The CB configuration having a low input and high output impedance and a current gain less than 1, the voltage gain can be quite large, r o in MΩ so that ignored in parallel

More information

Predicted Performance Advantages of Carbon Nanotube Transistors with Doped Nanotubes as Source/Drain

Predicted Performance Advantages of Carbon Nanotube Transistors with Doped Nanotubes as Source/Drain Predicted Performance Advantages of Carbon Nanotube Transistors with Doped Nanotubes as Source/Drain Jing Guo, Ali Javey, Hongjie Dai, Supriyo Datta and Mark Lundstrom School of ECE, Purdue University,

More information

Efficient Interconnect Design with Novel Repeater Insertion for Low Power Applications

Efficient Interconnect Design with Novel Repeater Insertion for Low Power Applications Efficient Interconnect Design with Novel Repeater Insertion for Low Power Applications TRIPTI SHARMA, K. G. SHARMA, B. P. SINGH, NEHA ARORA Electronics & Communication Department MITS Deemed University,

More information

AN3022. Establishing the Minimum Reverse Bias for a PIN Diode in a High-Power Switch. 1. Introduction. Rev. V2

AN3022. Establishing the Minimum Reverse Bias for a PIN Diode in a High-Power Switch. 1. Introduction. Rev. V2 Abstract - An important circuit design parameter in a high-power p-i-n diode application is the selection of an appropriate applied dc reverse bias voltage. Until now, this important circuit parameter

More information

Field-Effect (FET) transistors

Field-Effect (FET) transistors Field-Effect (FET) transistors References: Hayes & Horowitz (pp 142-162 and 244-266), Rizzoni (chapters 8 & 9) In a field-effect transistor (FET), the width of a conducting channel in a semiconductor and,

More information

Here we introduced (1) basic circuit for logic and (2)recent nano-devices, and presented (3) some practical issues on nano-devices.

Here we introduced (1) basic circuit for logic and (2)recent nano-devices, and presented (3) some practical issues on nano-devices. Outline Here we introduced () basic circuit for logic and (2)recent nano-devices, and presented (3) some practical issues on nano-devices. Circuit Logic Gate A logic gate is an elemantary building block

More information

Tobias Märkl. November 16, 2009

Tobias Märkl. November 16, 2009 ,, Tobias Märkl to 1/f November 16, 2009 1 / 33 Content 1 duction to of Statistical Comparison to Other Types of Noise of of 2 Random duction to Random General of, to 1/f 3 4 2 / 33 , to 1/f 3 / 33 What

More information

Chapter 5. Second Edition ( 2001 McGraw-Hill) 5.6 Doped GaAs. Solution

Chapter 5. Second Edition ( 2001 McGraw-Hill) 5.6 Doped GaAs. Solution Chapter 5 5.6 Doped GaAs Consider the GaAs crystal at 300 K. a. Calculate the intrinsic conductivity and resistivity. Second Edition ( 2001 McGraw-Hill) b. In a sample containing only 10 15 cm -3 ionized

More information

DE275-102N06A RF Power MOSFET

DE275-102N06A RF Power MOSFET N-Channel Enhancement Mode Low Q g and R g High dv/dt Nanosecond Switching Ideal for Class C, D, & E Applications Symbol Test Conditions Maximum Ratings V DSS T J = 25 C to 150 C 00 V V DGR T J = 25 C

More information

Lecture Notes 3 Introduction to Image Sensors

Lecture Notes 3 Introduction to Image Sensors Lecture Notes 3 Introduction to Image Sensors EE 392B Handout #5 Prof. A. El Gamal Spring 01 CCDs basic operation well capacity charge transfer efficiency and readout speed CMOS Passive Pixel Sensor (PPS)

More information

Nanoelektronik: Von der Realität bis zur Utopie

Nanoelektronik: Von der Realität bis zur Utopie LNQE-Kolloquium Nanoelektronik: Von der Realität bis zur Utopie Heinrich Kurz Institut für Halbleitertechnik, RWTH-Aachen AMICA - Advanced Microelectronic Center Aachen, AMO GmbH I. Einleitung II. Realität

More information

Substrate maturity and readiness in large volume to support mass adoption of ULP FDSOI platforms. SOI Consortium Conference Tokyo 2016

Substrate maturity and readiness in large volume to support mass adoption of ULP FDSOI platforms. SOI Consortium Conference Tokyo 2016 Substrate maturity and readiness in large volume to support mass adoption of ULP FDSOI platforms Christophe Maleville Substrate readiness 3 lenses view SOI Consortium C1 - Restricted Conference Tokyo 2016

More information

Chapter 10 Advanced CMOS Circuits

Chapter 10 Advanced CMOS Circuits Transmission Gates Chapter 10 Advanced CMOS Circuits NMOS Transmission Gate The active pull-up inverter circuit leads one to thinking about alternate uses of NMOS devices. Consider the circuit shown in

More information

Simulation and Design of Printed Circuit Boards Utilizing Novel Embedded Capacitance Material

Simulation and Design of Printed Circuit Boards Utilizing Novel Embedded Capacitance Material Simulation and Design of Printed Circuit Boards Utilizing Novel Embedded Capacitance Material Yu Xuequan, Yan Hang, Zhang Gezi, Wang Haisan Huawei Technologies Co., Ltd Lujiazui Subpark, Pudong Software

More information

AP331A XX G - 7. Lead Free G : Green. Packaging (Note 2)

AP331A XX G - 7. Lead Free G : Green. Packaging (Note 2) Features General Description Wide supply Voltage range: 2.0V to 36V Single or dual supplies: ±1.0V to ±18V Very low supply current drain (0.4mA) independent of supply voltage Low input biasing current:

More information

TSM2N7002K 60V N-Channel MOSFET

TSM2N7002K 60V N-Channel MOSFET SOT-23 SOT-323 Pin Definition: 1. Gate 2. Source 3. Drain PRODUCT SUMMARY V DS (V) R DS(on) (Ω) I D (ma) 5 @ V GS = 10V 100 60 5.5 @ V GS = 5V 100 Features Low On-Resistance ESD Protection High Speed Switching

More information

California Eastern Laboratories AN1023 Converting GaAs FET Models For Different Nonlinear Simulators

California Eastern Laboratories AN1023 Converting GaAs FET Models For Different Nonlinear Simulators California Eastern Laboratories AN1023 Converting GaAs FET Models For Different Nonlinear Simulators APPLICATION NOTE INTRODUCTION This paper addresses the issues involved in converting GaAs models for

More information

ENS 07 Paris, France, 3-4 December 2007

ENS 07 Paris, France, 3-4 December 2007 ENS 7 Paris, France, 3-4 December 7 FRICTION DRIVE SIMULATION OF A SURFACE ACOUSTIC WAVE MOTOR BY NANO VIBRATION Minoru Kuribayashi Kurosawa, Takashi Shigematsu Tokyou Institute of Technology, Yokohama

More information

Suppression of Four Wave Mixing in 8 Channel DWDM System Using Hybrid Modulation Technique

Suppression of Four Wave Mixing in 8 Channel DWDM System Using Hybrid Modulation Technique International Journal of Electronic and Electrical Engineering. ISSN 0974-2174, Volume 7, Number 2 (2014), pp. 97-108 International Research Publication House http://www.irphouse.com Suppression of Four

More information

Avalanche Photodiodes: A User's Guide

Avalanche Photodiodes: A User's Guide !"#$%& Abstract Avalanche Photodiodes: A User's Guide Avalanche photodiode detectors have and will continue to be used in many diverse applications such as laser range finders and photon correlation studies.

More information

Embedded Integrated Inductors With A Single Layer Magnetic Core: A Realistic Option

Embedded Integrated Inductors With A Single Layer Magnetic Core: A Realistic Option Embedded Integrated Inductors With A Single Layer Magnetic Core: A Realistic Option - Bridging the gap between discrete inductors and planar spiral inductors - Dok Won Lee, LiangLiang Li, and Shan X. Wang

More information

LAB IV. SILICON DIODE CHARACTERISTICS

LAB IV. SILICON DIODE CHARACTERISTICS LAB IV. SILICON DIODE CHARACTERISTICS 1. OBJECTIVE In this lab you are to measure I-V characteristics of rectifier and Zener diodes in both forward and reverse-bias mode, as well as learn to recognize

More information

ME 305 Fluid Mechanics I. Part 8 Viscous Flow in Pipes and Ducts

ME 305 Fluid Mechanics I. Part 8 Viscous Flow in Pipes and Ducts ME 305 Fluid Mechanics I Part 8 Viscous Flow in Pipes and Ducts These presentations are prepared by Dr. Cüneyt Sert Mechanical Engineering Department Middle East Technical University Ankara, Turkey csert@metu.edu.tr

More information

Metal Gate / High-k Reliability Characterization: From Research to Development and Manufacturing. Andreas Kerber, PhD Technology Research Group

Metal Gate / High-k Reliability Characterization: From Research to Development and Manufacturing. Andreas Kerber, PhD Technology Research Group Metal Gate / High-k Reliability Characterization: From Research to Development and Manufacturing Andreas Kerber, PhD Technology Research Group Acknowledgement Colleagues at GLOBALFOUNDRIES, IBM, and research

More information

Silicon Wafer Solar Cells

Silicon Wafer Solar Cells Silicon Wafer Solar Cells Armin Aberle Solar Energy Research Institute of Singapore (SERIS) National University of Singapore (NUS) April 2009 1 1. PV Some background Photovoltaics (PV): Direct conversion

More information

Lecture 23 - Frequency Response of Amplifiers (I) Common-Source Amplifier. December 1, 2005

Lecture 23 - Frequency Response of Amplifiers (I) Common-Source Amplifier. December 1, 2005 6.012 Microelectronic Devices and Circuits Fall 2005 Lecture 231 Lecture 23 Frequency Response of Amplifiers (I) CommonSource Amplifier December 1, 2005 Contents: 1. Introduction 2. Intrinsic frequency

More information

Silicon-On-Glass MEMS. Design. Handbook

Silicon-On-Glass MEMS. Design. Handbook Silicon-On-Glass MEMS Design Handbook A Process Module for a Multi-User Service Program A Michigan Nanofabrication Facility process at the University of Michigan March 2007 TABLE OF CONTENTS Chapter 1...

More information

N-channel enhancement mode TrenchMOS transistor

N-channel enhancement mode TrenchMOS transistor FEATURES SYMBOL QUICK REFERENCE DATA Trench technology d V DSS = V Low on-state resistance Fast switching I D = A High thermal cycling performance Low thermal resistance R DS(ON) mω (V GS = V) g s R DS(ON)

More information

ENEE 313, Spr 09 Midterm II Solution

ENEE 313, Spr 09 Midterm II Solution ENEE 313, Spr 09 Midterm II Solution PART I DRIFT AND DIFFUSION, 30 pts 1. We have a silicon sample with non-uniform doping. The sample is 200 µm long: In the figure, L = 200 µm= 0.02 cm. At the x = 0

More information

Effect of design parameters on temperature rise of windings of dry type electrical transformer

Effect of design parameters on temperature rise of windings of dry type electrical transformer Effect of design parameters on temperature rise of windings of dry type electrical transformer Vikas Kumar a, *, T. Vijay Kumar b, K.B. Dora c a Centre for Development of Advanced Computing, Pune University

More information

Characteristics of blocking voltage for power 4H-SiC BJTs with mesa edge termination

Characteristics of blocking voltage for power 4H-SiC BJTs with mesa edge termination Vol. 31, No. 7 Journal of Semiconductors July 2010 Characteristics of blocking voltage for power 4H-SiC BJTs with mesa edge termination Zhang Qian( 张 倩 ), Zhang Yuming( 张 玉 明 ), and Zhang Yimen( 张 义 门

More information

Analyzing Electrical Effects of RTA-driven Local Anneal Temperature Variation

Analyzing Electrical Effects of RTA-driven Local Anneal Temperature Variation 1 Analyzing Electrical Effects of RTA-driven Local Anneal Temperature Variation Vivek Joshi, Kanak Agarwal*, Dennis Sylvester, David Blaauw Electrical Engineering & Computer Science University of Michigan,

More information

Application Note AN-1194

Application Note AN-1194 Application Note Using MOSFET Spice Models for Analyzing Application Performance By David Divins Table of Contents Page Uses for MOSFET Spice Models... 2 MOSFET Spice Model Availability... 2 Power MOSFET

More information

Introduction to VLSI design (EECS 467)

Introduction to VLSI design (EECS 467) Introduction to VLSI design (EECS 467) Proect Short-Channel Effects in MOSFETs December 11 th, Fabio D gostino Daniele Quercia - 1 - Short-Channel Devices MOSFET device is considered to be short when the

More information

A I DM. W/ C V GS Gate-to-Source Voltage ± 20. Thermal Resistance Symbol Parameter Typ. Max. Units

A I DM. W/ C V GS Gate-to-Source Voltage ± 20. Thermal Resistance Symbol Parameter Typ. Max. Units V DS 2 V V GS Max ± 2 V R DSon) max @V GS = V) 24 m * PD - 9787A HEXFET Power MOSFET R DSon) max @V GS = 4.V) 4 m 6 Micro3 TM SOT-23) Applications) Load System Switch Features and Benefits Features Benefits

More information

Quantum Mechanics: Postulates

Quantum Mechanics: Postulates Quantum Mechanics: Postulates 5th April 2010 I. Physical meaning of the Wavefunction Postulate 1: The wavefunction attempts to describe a quantum mechanical entity (photon, electron, x-ray, etc.) through

More information

School of Engineering Department of Electrical and Computer Engineering

School of Engineering Department of Electrical and Computer Engineering 1 School of Engineering Department of Electrical and Computer Engineering 332:223 Principles of Electrical Engineering I Laboratory Experiment #4 Title: Operational Amplifiers 1 Introduction Objectives

More information

Features. Applications. Transmitter. Receiver. General Description MINIATURE MODULE. QM MODULATION OPTIMAL RANGE 1000m

Features. Applications. Transmitter. Receiver. General Description MINIATURE MODULE. QM MODULATION OPTIMAL RANGE 1000m Features MINIATURE MODULE QM MODULATION OPTIMAL RANGE 1000m 433.05 434.79 ISM BAND 34 CHANNELS AVAILABLE SINGLE SUPPLY VOLTAGE Applications IN VEHICLE TELEMETRY SYSTEMS WIRELESS NETWORKING DOMESTIC AND

More information

Chapter 4 Indium Tin Oxide Films Deposited by d.c. Sputtering

Chapter 4 Indium Tin Oxide Films Deposited by d.c. Sputtering Chapter 4 Indium Tin Oxide Films Deposited by d.c. Sputtering 4.1. Introduction Indium-tin-oxide (ITO) thin films are widely used in optoelectronics devices, flat panel display and electrochromic (EC)

More information

StarRC Custom: Next-Generation Modeling and Extraction Solution for Custom IC Designs

StarRC Custom: Next-Generation Modeling and Extraction Solution for Custom IC Designs White Paper StarRC Custom: Next-Generation Modeling and Extraction Solution for Custom IC Designs May 2010 Krishnakumar Sundaresan Principal Engineer and CAE Manager, Synopsys Inc Executive Summary IC

More information

AN105. Introduction: The Nature of VCRs. Resistance Properties of FETs

AN105. Introduction: The Nature of VCRs. Resistance Properties of FETs Introduction: The Nature of s A voltage-controlled resistor () may be defined as a three-terminal variable resistor where the resistance value between two of the terminals is controlled by a voltage potential

More information

A I DM. W/ C V GS Gate-to-Source Voltage ± 12. Thermal Resistance Symbol Parameter Typ. Max. Units

A I DM. W/ C V GS Gate-to-Source Voltage ± 12. Thermal Resistance Symbol Parameter Typ. Max. Units V DS 2 V V GS Max ±2 V * PD - 973A HEXFET Power MOSFET R DSon) max @V GS = 4.V) 2. m R DSon) max @V GS = 2.V) 27. m 6 Micro3 TM SOT-23) Applications) Load System Switch Features and Benefits Features Benefits

More information

MOS Transistor 6.1 INTRODUCTION TO THE MOSFET

MOS Transistor 6.1 INTRODUCTION TO THE MOSFET Hu_ch06v3.fm Page 195 Friday, February 13, 2009 4:51 PM 6 MOS Transistor CHAPTER OBJECTIVES This chapter provides a comprehensive introduction to the modern MOSFETs in their on state. (The off state theory

More information

Materials for Organic Electronic. Jeremy Burroughes FRS FREng

Materials for Organic Electronic. Jeremy Burroughes FRS FREng Materials for Organic Electronic Applications Jeremy Burroughes FRS FREng Introduction Organic Thin Film Transistors Organic Solar Cells and Photodiodes All Printed OLED Summary 4k2k 56 Displays Panasonic

More information

Characteristic and use

Characteristic and use . Basic principle A PSD basically consists of a uniform resistive layer formed on one or both surfaces of a high-resistivity semiconductor substrate, and a pair of electrodes formed on both ends of the

More information

Semiconductors, diodes, transistors

Semiconductors, diodes, transistors Semiconductors, diodes, transistors (Horst Wahl, QuarkNet presentation, June 2001) Electrical conductivity! Energy bands in solids! Band structure and conductivity Semiconductors! Intrinsic semiconductors!

More information

Matter, Materials, Crystal Structure and Bonding. Chris J. Pickard

Matter, Materials, Crystal Structure and Bonding. Chris J. Pickard Matter, Materials, Crystal Structure and Bonding Chris J. Pickard Why should a theorist care? Where the atoms are determines what they do Where the atoms can be determines what we can do Overview of Structure

More information

3. Diodes and Diode Circuits. 3. Diodes and Diode Circuits TLT-8016 Basic Analog Circuits 2005/2006 1

3. Diodes and Diode Circuits. 3. Diodes and Diode Circuits TLT-8016 Basic Analog Circuits 2005/2006 1 3. Diodes and Diode Circuits 3. Diodes and Diode Circuits TLT-8016 Basic Analog Circuits 2005/2006 1 3.1 Diode Characteristics Small-Signal Diodes Diode: a semiconductor device, which conduct the current

More information

Application Note AN-940

Application Note AN-940 Application Note AN-940 How P-Channel MOSFETs Can Simplify Your Circuit Table of Contents Page 1. Basic Characteristics of P-Channel HEXFET Power MOSFETs...1 2. Grounded Loads...1 3. Totem Pole Switching

More information

Determination of the relative permittivity of the AlGaN barrier layer in strained AlGaN/GaN heterostructures

Determination of the relative permittivity of the AlGaN barrier layer in strained AlGaN/GaN heterostructures Vol 8 No 9, September 2009 c 2009 Chin. Phys. Soc. 674-056/2009/8(09)/3980-05 Chinese Physics B and IOP Publishing Ltd Determination of the relative permittivity of the AlGaN barrier layer in strained

More information