INTRODUCTION TO CIRCUIT SIMULATION USING SPICE

Size: px
Start display at page:

Download "INTRODUCTION TO CIRCUIT SIMULATION USING SPICE"

Transcription

1 LSI Circuits INTRODUCTION TO CIRCUIT SIMULATION USING SPICE Introduction: SPICE (Simulation Program with Integrated Circuit Emphasis) is a very powerful and probably the most widely used simulator for electrical and electronic circuits. This experiment aims at introducing you to some of the capabilities of the SPICE program applied to CMOS LSI circuit design. It can perform nonlinear dc, nonlinear transient, linear ac analysis and other types of simulations. The circuits may contain resistors, capacitors, inductors, mutual inductors independent voltage and current sources, four types of dependent sources, transmission lines, and four most common semiconductor devices: diodes, BJTs, JFETs, and MOSFETs. This experiment will use SPICE s dc and transient analysis capabilities to analyze circuits based on CMOS n-type and p-type enhancement mode MOSFETs and illustrate the importance of such a simulator in LSI Design. THE CMOS INERTER Consider the circuit of the CMOS inverter below. When the input is high the pulldown device (Mpd) is on but gs of the p-channel device is zero and hence the pullup device (Mpu) is off such that the output pulls all the way to ground. When the input is low, gs of the p-channel device is dd and hence it is on. The pulldown is off and the output rises to dd. dd Mpu in Mpd C load out To simulate the performance of the circuit, the various nodes are identified (e.g., 1,2,3) and each device is given a unique name (eg. Mpu, Cload, Mpd). The circuit can now be simulated in SPICE by a set of program statement stored in a data file. A typical input file consists of a title line, a set of element statements that describe the circuit, and a set of control statements that instruct spice during program execution. The entire input file must be terminated by an.end control statement. Input line in which the first character is an asterisk (*) are interpreted as comment line. Details rules for circuit description and control statements are described below. RULES FOR CIRCUIT DESCRIPTION 1. Node identifiers or numbers must be non-negative integers. 2. The ground node (0 olts) must be numbered zero. 3. Device names can be up to 8 characters in length. 4. The first letter of a device name identifies the device type.eg. R for registor, C for capacitor, M for MOSFET, for independent voltage source and I for independent current source 5. alues can be expressed as integers or floating point numbers, the following abbreviations may be employed: t: lel2 k: le3 n:le-9 g: le9 m: le-3 p: le-12 meg: le6 u: le-6 f: le Comments can be inserted into the circuit description by beginning the statement with an * as the first character WRITING YOUR CIRCUIT DESCRIPTION Use the following as a template to writing a description: 1

2 (title) * Spice options : * To limit width of output to 80 characters useful for ttys..width out=80. * To suppress page ejects and printout of model parameters..options nopage nomode * Circuit description(see Circuit Element Description): * Model specification (see Circuit Element Description): * Input signals (see Signal Source Description): * Simulation modes: * Generating outputs * End of simulation:. end ABBREIATED SPICE MANUAL Circuit Element Description. Registor and Capacitors: Devicename n1 n2 alue Devicename is rxxxxxxxx for a registor, cxxxxxx for a capacitor. n1, n2 are the node numbers of the device terminals alue is the resistance (in ohms) or capacitance (in Farads) of the device. Mosfets: Devicename is n1 n2 n3 n4 modelname 1 w Devicename is mxxxxxx The ordering of the nodes is drain, gate, source, and substrate l and w are channel length and width (in meters ) respectively eg. mpu penh l=3u w=10u mpd nenh l=3u w=4u Notice that the substrate of the p-type enhancement device is connected to the positive supply whilst that of the n-type enhancement device is connected to the ground node. Model name : The simulator needs detailed information on the technology being simulated. The MOSFET model in SPICE 2G5 permits 37 different parameters to be set in order to describe the target technology. These parameters are included in a model statement and the model name refers to the required model. The models of the CMOS p and n type enhancement mode transistors given in the questions following this introduction, are values derived by the fabricators for this particular CMOS technology and should be included in the circuit description file. Signal Source Description. In addition to describing the circuit it is necessary to describe the supply voltages and the various waveforms you wish to apply to the circuit. The element statement for an independent voltage or current source is written in the form Sourcename positive-node negative-node type specification Sourcename is the voltage source identifier, type specifies the general nature of the source which could be DC, AC, SIN, PULSE or PWL(Piecewise Linear) with details included in the specification entry. Some example are given below : DC SOURCE : 2

3 vdd 4 0 dc 5 vbias 15 0 dc 750mv oltage sources, in addition to being used for circuit excitation, are the ammeters for SPICE, that is, zero valued voltage sources may be inserted into the circuit for the purpose of measuring current. They will, of course, have no effect on circuit operation since they represent short circuits. Pulsed oltages. Sourcename n+ n- pulse (v1, v2, td, tr, tf, pw, per) n+ and n- have the same meaning as for a dc source, 1 is Initial voltage, 2 is the pulsed voltage, TD is delay time, TR is rise time, TF is fall time, PW is pulse width, PER is the pulse period. eg. vclock 1.0pulse(0,5,1ns,2ns,100ns,200ns) 2 1 PW 0 t TR TF TD PER Fig : PULSE Waveform Piece-wise Linear oltages. General form: Sourcename n+ n-pwl ( t1 v1 t2 v2 t3 v3... ) n+ and n- have the same meanings as for a dc source, Each pair of values of t and v specifies that the value of the source is v at time t. The value of the source at intermediate values of time is determined using linear interpolation on the input values T 1 T T 6 2 T 3 T 4 T 5 Fig : Piecewise Linear waveform t Simulation Modes SPICE can perform various types of analysis; we are concerned just with two: the transient analysis and the dc analysis modes. Transient Analysis In this mode, SPICE can be used as an oscilloscope to observe variations in voltage and current with time. General form:. tran tstep tstop tstart tstep is the increment time (in seconds ) tstop is the finish time tstart is the initial time (defaults to zero) eg..tran 1ns 100ns Note: The smaller the value of tstep, the finer the detail that can be seen in the waveforms. The price paid is more computer time, so you must ask yourself what is a reasonable value given the circuit parameter and input waveforms. 3

4 DC Analysis. In this mode SPICE gives the values of requested node voltage or currents as a function of an independent voltage or current source.. dc Source name vstart vstop vincr Sourcenme is the name of the voltage source to be varied. start is the initial value stop is the final value incr is the increment or step value eg:.dc vin Generating Output For any analysis mode the user must select which nodes are to be monitored. The output can then be displayed by either of the following two methods: 1) a print statement giving tabular listing of the results of one to eight output variables with the independent variable (time or voltage) in the left hand column and the other variables in the other columns 2) a plot statement defining the contents of one plot of from one to eight output variables versus the independent variable. The two options are requested as follows:. plot Mode out1 out2.out8. print Mode out1 out2 out8 Mode specifies the analysis mode, and out1 out2 is the list of nodes to be monitored and can have one of the following three forms: (n1) specifies the voltage at node n1 with respect to ground. (n1, n2) specifies the voltage difference between node n1 and n2. i(vname) specifies the current flowing in the independent voltage source named vname. eg :.plot dc v(2) v(5) v(7) i(vname). plot tran v(1) v(2) (0,5) The (0,5) forces all nodes to be plotted on the same scale of 0 to 5 volts. Exercise: 1. Write a SPICE sourcefile for the simple low-pass filter shown below and produce a transient analysis of the circuit over a period of usec with an increment of 10nsecs. To help you in this, have a look at the circuit description of assignment 2, but use rise and fall times of 1ns for your input waveforms volt 1nF 1 Mhz Determine the rise and fall times from the plot. How do these results compare with theory? 2. The SPICE circuit description shown below is for a CMOS inverter. Draw the circuit carefully labeling all the nodes and naming the components. A copy of the description file can be found in Itw/spice/cmosinv. simple CMOS inverter *spice option :.width out=80. options nopage nomod *circuit description: mpu penh w=10u l=3u mpd nenh w=4u l=3u vdd vin 1 0 pulse (0 5 3ns 3ns 3ns 20ns 40ns) 4

5 *model specification: *MCE 3 Micron CMOS processes parameters process 2 *N channel typ. model nenh nmos level=2 vto=0.85 kp=30e-6 tox =470e-10 nsub =38e14 +ld =0.6e-6 uo=624 uexp=.055 vmax=20e4 neff=9.8 delta=2.0 +cj=160e-6 cjsw=430e-12 mj=0.5 mjsw=0.33 pb=0.81 *p channel typ. model penh pmos level =2 vto = kp=12e-6 tox =470e-10 nsub=8.7e14 +ld =0.5e-6 uo =200 uexp =0.18 vmax =12e4 neff= 4.0 delta=2.0 +cj= 100e-6 cjsw=180e-12 mj=0.5 mjsw=0.33 pb=0.7 *end simulation file:.end Add a load of the same form as in assignment (1), to the CMOS inverter between ground and the junction of the two transistors. Use a 50ff(50E-15) capacitor which is representative of a typical load capacitance. (a) Use SPICE to perform a transient and a DC analysis of this circuit. (b) Observing both the output voltage (on the node connecting the load resistor and capacitor) and the input voltage, determine the rise time and the fall time of the inverter. Plot the results. Note the use of 3ns rise and fall times for vin. Remember to use similar edge speeds in the rest of the experiments for input waveforms (c) From the DC analysis measure the inversion voltage inv, i.e. the input voltage at which out =in. What do you think is the optimum value of inv? Why? (d) Now make the width of the p-channel device the same as the n-channel device and repeat the simulation. Repeat step (a) to (c) and determine the rise time, fall time and the inversion voltage of the inverter for this case. How has this change affected the dc transfer characteristics? Why is the rise time different from the fall time? Comment on the performance of a system based on this type of gate. APPENDIX : SPICE MOS MODEL PARAMETERS NAME PARAMETER UNITS DEFAULT REMARKS LEEL Model index - TO Threshold voltage 1.0 KP Transconductance A/ 2 1.0e-3 parameter TOX Thin-oxide thickness m GAMMA Bulk Threshold 1/2 0 Parameter PHI Surface potential 0.6 LAMBDA Channel Length Modulation parameter -1 0 CJ Zfero-bias bulk junction F/m 2 0 bottom capacitance CJSW Zfero-bias bulk junction F/m 0 side wall capacitance MJ Bulk Junction grading coefficient MJSW Bulk Junction sidewall Grading coefficient PB Bulk Junction potential 0.6 NSUB Substrate doping Cm -3 0 UO Surface mobility Cm 2 /v.s 600 UCRIT Critical field for /cm 1x10 4 LEEL 2 mobility degradation UEXP Critical field exponent - 0 LEEL 2 in mobility degradation THETA Mobility modulation -1 0 LEEL 3 MAX Maximum drift velocity of carrier M/s 0 5

Electronic CAD Practical work. Week 1: Introduction to transistor models. curve tracing of NMOS transfer characteristics

Electronic CAD Practical work. Week 1: Introduction to transistor models. curve tracing of NMOS transfer characteristics Electronic CAD Practical work Dr. Martin John Burbidge Lancashire UK Tel: +44 (0)1524 825064 Email: martin@mjb-rfelectronics-synthesis.com Martin Burbidge 2006 Week 1: Introduction to transistor models

More information

Final for EE 421 Digital Electronics and ECG 621 Digital Integrated Circuit Design Fall, University of Nevada, Las Vegas

Final for EE 421 Digital Electronics and ECG 621 Digital Integrated Circuit Design Fall, University of Nevada, Las Vegas Final for EE 421 Digital Electronics and ECG 621 Digital Integrated Circuit Design Fall, University of Nevada, Las Vegas NAME: Show your work to get credit. Open book and closed notes. Unless otherwise

More information

SPICE Simulation Program with Integrated Circuit Emphasis

SPICE Simulation Program with Integrated Circuit Emphasis SPICE Simulation Program with Integrated Circuit Emphasis References: [1] CIC SPICE training manual [3] SPICE manual [2] DIC textbook Sep. 25, 2004 1 SPICE: Introduction Simulation Program with Integrated

More information

CMOS voltage controlled floating resistor

CMOS voltage controlled floating resistor INT. J. ELECTRONICS, 1996, VOL. 81, NO. 5, 571± 576 CMOS voltage controlled floating resistor HASSAN O. ELWAN², SOLIMAN A. MAHMOUD² AHMED M. SOLIMAN² and A new CMOS floating linear resistor circuit with

More information

problem grade total

problem grade total Fall 2005 6.012 Microelectronic Devices and Circuits Prof. J. A. del Alamo Name: Recitation: November 16, 2005 Quiz #2 problem grade 1 2 3 4 total General guidelines (please read carefully before starting):

More information

LECTURE 4 SPICE MODELING OF MOSFETS

LECTURE 4 SPICE MODELING OF MOSFETS LECTURE 4 SPICE MODELING OF MOSFETS Objectives for Lecture 4* Understanding the element description for MOSFETs Understand the meaning and significance of the various parameters in SPICE model levels 1

More information

SPICE MODELING OF MOSFETS. Objectives for Lecture 4*

SPICE MODELING OF MOSFETS. Objectives for Lecture 4* LECTURE 4 SPICE MODELING OF MOSFETS Objectives for Lecture 4* Understanding the element description for MOSFETs Understand the meaning and significance of the various parameters in SPICE model levels 1

More information

Laboratory 1 Single-Stage MOSFET Amplifier Analysis and Design Due Date: Week of February 20, 2014, at the beginning of your lab section

Laboratory 1 Single-Stage MOSFET Amplifier Analysis and Design Due Date: Week of February 20, 2014, at the beginning of your lab section Laboratory 1 Single-Stage MOSFET Amplifier Analysis and Design Due Date: Week of February 20, 2014, at the beginning of your lab section Objective To analyze and design single-stage common source amplifiers.

More information

A MOS VLSI Comparator

A MOS VLSI Comparator A MOS VLSI Comparator John Monforte School of Music University of Miami, Coral Gables, FL. USA Jayant Datta Department of Electrical Engineering University of Miami, Coral Gables, FL. USA ABSTRACT A comparator

More information

Computer Exercises Manual: Device Parameters in SPICE. Interactive MATLAB Animations for Understanding Semiconductor Devices

Computer Exercises Manual: Device Parameters in SPICE. Interactive MATLAB Animations for Understanding Semiconductor Devices Computer Exercises Manual: Device Parameters in SPICE This manual is provided as a PDF le { just click on cem.pdf to open it. This can be done from the CD (using Windows Explorer, click on the CD-drive

More information

Modeling MOS Transistors. Prof. MacDonald

Modeling MOS Transistors. Prof. MacDonald Modeling MOS Transistors Prof. MacDonald 1 Modeling MOSFETs for simulation l Software is used simulate circuits for validation l Original program SPICE UC Berkeley Simulation Program with Integrated Circuit

More information

Gunning Transceiver Logic Interface Bus Design Project

Gunning Transceiver Logic Interface Bus Design Project Gunning Transceiver Logic Interface Bus Design Project Group #14 EE 307 Winter 2007 February 23, 2007 Robert Hursig rhursig@calpoly.edu Tommy Oleksyn toleksyn@calpoly.edu http://www.drdphd.com/02_14.pdf

More information

Conduction Characteristics of MOS Transistors (for fixed Vds)! Topic 2. Basic MOS theory & SPICE simulation. MOS Transistor

Conduction Characteristics of MOS Transistors (for fixed Vds)! Topic 2. Basic MOS theory & SPICE simulation. MOS Transistor Conduction Characteristics of MOS Transistors (for fixed Vds)! Topic 2 Basic MOS theory & SPICE simulation Peter Cheung Department of Electrical & Electronic Engineering Imperial College London (Weste&Harris,

More information

Topic 2. Basic MOS theory & SPICE simulation

Topic 2. Basic MOS theory & SPICE simulation Topic 2 Basic MOS theory & SPICE simulation Peter Cheung Department of Electrical & Electronic Engineering Imperial College London (Weste&Harris, Ch 2 & 5.1-5.3 Rabaey, Ch 3) URL: www.ee.ic.ac.uk/pcheung/

More information

Conduction Characteristics of MOS Transistors (for fixed Vds) Topic 2. Basic MOS theory & SPICE simulation. MOS Transistor

Conduction Characteristics of MOS Transistors (for fixed Vds) Topic 2. Basic MOS theory & SPICE simulation. MOS Transistor Conduction Characteristics of MOS Transistors (for fixed Vds) Topic 2 Basic MOS theory & SPICE simulation Peter Cheung Department of Electrical & Electronic Engineering Imperial College London (Weste&Harris,

More information

Lecture 16: MOS Transistor models: Linear models, SPICE models. Context. In the last lecture, we discussed the MOS transistor, and

Lecture 16: MOS Transistor models: Linear models, SPICE models. Context. In the last lecture, we discussed the MOS transistor, and Lecture 16: MOS Transistor models: Linear models, SPICE models Context In the last lecture, we discussed the MOS transistor, and added a correction due to the changing depletion region, called the body

More information

INTRODUCTION: Basic operating principle of a MOSFET:

INTRODUCTION: Basic operating principle of a MOSFET: INTRODUCTION: Along with the Junction Field Effect Transistor (JFET), there is another type of Field Effect Transistor available whose Gate input is electrically insulated from the main current carrying

More information

Lab 5: MOSFET I-V Characteristics

Lab 5: MOSFET I-V Characteristics 1. Learning Outcomes Lab 5: MOSFET I-V Characteristics In this lab, students will determine the MOSFET I-V characteristics of both a P-Channel MOSFET and an N- Channel MOSFET. Also examined is the effect

More information

Lab 6: MOSFET AMPLIFIER

Lab 6: MOSFET AMPLIFIER Lab 6: MOSFET AMPLIFIER NOTE: This is a "take home" lab. You are expected to do the lab on your own time (still working with your lab partner) and then submit your lab reports. Lab instructors will be

More information

Laboratory Lecture 4

Laboratory Lecture 4 Gheorghe Asachi Technical University of Iasi Faculty of Electronics, Telecommunications and Information Technology Title of Discipline: Computer-Aided Analysis of Electronic Circuits Laboratory Lecture

More information

Design and Simulation of RF CMOS Oscillators in Advanced Design System (ADS)

Design and Simulation of RF CMOS Oscillators in Advanced Design System (ADS) Design and Simulation of RF CMOS Oscillators in Advanced Design System (ADS) By Amir Ebrahimi School of Electrical and Electronic Engineering The University of Adelaide June 2014 1 Contents 1- Introduction...

More information

INTRODUCTION TO MOS TECHNOLOGY

INTRODUCTION TO MOS TECHNOLOGY INTRODUCTION TO MOS TECHNOLOGY 1. The MOS transistor The most basic element in the design of a large scale integrated circuit is the transistor. For the processes we will discuss, the type of transistor

More information

ECE 340 Lecture 40 : MOSFET I

ECE 340 Lecture 40 : MOSFET I ECE 340 Lecture 40 : MOSFET I Class Outline: MOS Capacitance-Voltage Analysis MOSFET - Output Characteristics MOSFET - Transfer Characteristics Things you should know when you leave Key Questions How do

More information

The default account setup for the class should allow you to run HSPICE without any further configuration. To verify this, type:

The default account setup for the class should allow you to run HSPICE without any further configuration. To verify this, type: UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences HW #1: Circuit Simulation NTU IC541CA (Spring 2004) 1 Objective The objective of this homework

More information

DIGITAL VLSI LAB ASSIGNMENT 1

DIGITAL VLSI LAB ASSIGNMENT 1 DIGITAL VLSI LAB ASSIGNMENT 1 Problem 1: NMOS and PMOS plots using Cadence. In this exercise, you are required to generate both NMOS and PMOS I-V device characteristics (I/P and O/P) using Cadence (Use

More information

Appendix 5 Model card parameters for built-in components

Appendix 5 Model card parameters for built-in components Appendix 5 Model card parameters for built-in components In this Appendix, names and default values of model card parameters are given for built-in analogue components. These are SPICE models of diode,

More information

EE 230 Lab Lab 9. Prior to Lab

EE 230 Lab Lab 9. Prior to Lab MOS transistor characteristics This week we look at some MOS transistor characteristics and circuits. Most of the measurements will be done with our usual lab equipment, but we will also use the parameter

More information

Simulation Using WinSPICE

Simulation Using WinSPICE Simulation Using WinSPICE David W. Graham Lane Department of Computer Science and Electrical Engineering West Virginia University David W. Graham 2007 Why Simulation? Theoretical calculations only go so

More information

Experiment 2 Introduction to PSpice

Experiment 2 Introduction to PSpice Experiment 2 Introduction to PSpice W.T. Yeung and R.T. Howe UC Berkeley EE 105 Fall 2004 1.0 Objective One of the CAD tools you will be using as a circuit designer is SPICE, a Berkeleydeveloped industry-standard

More information

Novel MOS-C oscillators using the current feedback op-amp

Novel MOS-C oscillators using the current feedback op-amp INT. J. ELECTRONICS, 2000, VOL. 87, NO. 3, 269± 280 Novel MOS-C oscillators using the current feedback op-amp SOLIMAN A. MAHMOUDy and AHMED M. SOLIMANyz Three new MOS-C oscillators using the current feedback

More information

1.3 An Introduction to WinSPICE

1.3 An Introduction to WinSPICE Chapter 1 Introduction to CMOS Design 23 After the GDS file is generated, we can use the Gds2Tlc program to convert the GDS file back into TLC files. In the setups we must specify a directory where the

More information

NMOS Inverter Lab ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING. NMOS Inverter Lab

NMOS Inverter Lab ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING. NMOS Inverter Lab ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING NMOS Inverter Lab Dr. Lynn Fuller Webpage: http://people.rit.edu/lffeee/ 82 Lomb Memorial Drive Rochester, NY 14623-5604 Tel (585) 475-2035

More information

(0.9 Voo) /85/ $ IEEE. An Efficient Timing Model for CMOS Combinational Logic Gates

(0.9 Voo) /85/ $ IEEE. An Efficient Timing Model for CMOS Combinational Logic Gates 636 IEEE TRANSACTION S ON COMPUTER-AI D E D D E S IGN, VOL. CAO-4, NO.4, OCTOBER 1985 An Efficient Timing Model for CMOS Combinational Logic Gates CHUNG- YU WU, JEN-SHENG HWANG, CHIH CHANG, AND CHING-CHU

More information

NGSPICE- Usage and Examples

NGSPICE- Usage and Examples NGSPICE- Usage and Examples Debapratim Ghosh deba21pratim@gmail.com Electronic Systems Group Department of Electrical Engineering Indian Institute of Technology Bombay February 2013 Debapratim Ghosh Dept.

More information

MEASUREMENT AND INSTRUMENTATION STUDY NOTES UNIT-I

MEASUREMENT AND INSTRUMENTATION STUDY NOTES UNIT-I MEASUREMENT AND INSTRUMENTATION STUDY NOTES The MOSFET The MOSFET Metal Oxide FET UNIT-I As well as the Junction Field Effect Transistor (JFET), there is another type of Field Effect Transistor available

More information

EEEE 381 Electronics I

EEEE 381 Electronics I EEEE 381 Electronics I Lab #5: Two-Stage CMOS Op-Amp Oeriew In this lab we will expand on the work done in Lab #4, which introduced the actiely-loaded differential pair. A second stage that is comprised

More information

Prof. Paolo Colantonio a.a

Prof. Paolo Colantonio a.a Prof. Paolo Colantonio a.a. 20 2 Field effect transistors (FETs) are probably the simplest form of transistor, widely used in both analogue and digital applications They are characterised by a very high

More information

HSPICE. Chan-Ming Chang

HSPICE. Chan-Ming Chang HSPICE Chan-Ming Chang Outline Declaration Voltage source Circuit statement SUBCKT of circuit statement Measure Simulation Declaration ***** SPICE COURSE EXAMPLE INVERTER LJC *****.LIB 'mm018.l' tt.global

More information

MOS Inverters Dr. Lynn Fuller Webpage:

MOS Inverters Dr. Lynn Fuller Webpage: ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING MOS Inverters Webpage: http://people.rit.edu/lffeee 82 Lomb Memorial Drive Rochester, NY 14623-5604 Tel (585) 475-2035 Email: Lynn.Fuller@rit.edu

More information

LECTURE 09 LARGE SIGNAL MOSFET MODEL

LECTURE 09 LARGE SIGNAL MOSFET MODEL Lecture 9 Large Signal MOSFET Model (5/14/18) 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

Lab 3: Circuit Simulation with PSPICE

Lab 3: Circuit Simulation with PSPICE Page 1 of 11 Laboratory Goals Introduce text-based PSPICE as a design tool Create transistor circuits using PSPICE Simulate output response for the designed circuits Introduce the Curve Tracer functionality.

More information

WinSpice. The steps to performing a circuit simulation with WinSpice are:

WinSpice. The steps to performing a circuit simulation with WinSpice are: WinSpice Tutorial 1 A. Introduction WinSpice SPICE is short for Simulation Program with Integrated Circuit Emphasis. SPICE is a general-purpose circuit simulation program for nonlinear dc, nonlinear transient,

More information

Field Effect Transistors (FET s) University of Connecticut 136

Field Effect Transistors (FET s) University of Connecticut 136 Field Effect Transistors (FET s) University of Connecticut 136 Field Effect Transistors (FET s) FET s are classified three ways: by conduction type n-channel - conduction by electrons p-channel - conduction

More information

55:041 Electronic Circuits

55:041 Electronic Circuits 55:041 Electronic Circuits MOSFETs Sections of Chapter 3 &4 A. Kruger MOSFETs, Page-1 Basic Structure of MOS Capacitor Sect. 3.1 Width = 1 10-6 m or less Thickness = 50 10-9 m or less ` MOS Metal-Oxide-Semiconductor

More information

VLSI Design I. The MOSFET model Wow!

VLSI Design I. The MOSFET model Wow! VLSI Design I The MOSFET model Wow! Are device models as nice as Cindy? Overview The large signal MOSFET model and second order effects. MOSFET capacitances. Introduction in fet process technology Goal:

More information

Depletion-mode operation ( 공핍형 ): Using an input gate voltage to effectively decrease the channel size of an FET

Depletion-mode operation ( 공핍형 ): Using an input gate voltage to effectively decrease the channel size of an FET Ch. 13 MOSFET Metal-Oxide-Semiconductor Field-Effect Transistor : I D D-mode E-mode V g The gate oxide is made of dielectric SiO 2 with e = 3.9 Depletion-mode operation ( 공핍형 ): Using an input gate voltage

More information

ECE520 VLSI Design. Lecture 2: Basic MOS Physics. Payman Zarkesh-Ha

ECE520 VLSI Design. Lecture 2: Basic MOS Physics. Payman Zarkesh-Ha ECE520 VLSI Design Lecture 2: Basic MOS Physics Payman Zarkesh-Ha Office: ECE Bldg. 230B Office hours: Wednesday 2:00-3:00PM or by appointment E-mail: pzarkesh@unm.edu Slide: 1 Review of Last Lecture Semiconductor

More information

Introduction to SwitcherCAD

Introduction to SwitcherCAD Introduction to SwitcherCAD 1 PREFACE 1.1 What is SwitcherCAD? SwitcherCAD III is a new Spice based program that was developed for modelling board level switching regulator systems. The program consists

More information

Exam Below are two schematics of current sources implemented with MOSFETs. Which current source has the best compliance voltage?

Exam Below are two schematics of current sources implemented with MOSFETs. Which current source has the best compliance voltage? Exam 2 Name: Score /90 Question 1 Short Takes 1 point each unless noted otherwise. 1. Below are two schematics of current sources implemented with MOSFETs. Which current source has the best compliance

More information

BJT Amplifier. Superposition principle (linear amplifier)

BJT Amplifier. Superposition principle (linear amplifier) BJT Amplifier Two types analysis DC analysis Applied DC voltage source AC analysis Time varying signal source Superposition principle (linear amplifier) The response of a linear amplifier circuit excited

More information

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

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

More information

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

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

More information

UNIT 3: FIELD EFFECT TRANSISTORS

UNIT 3: FIELD EFFECT TRANSISTORS FIELD EFFECT TRANSISTOR: UNIT 3: FIELD EFFECT TRANSISTORS The field effect transistor is a semiconductor device, which depends for its operation on the control of current by an electric field. There are

More information

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

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

More information

CHAPTER 6 DIGITAL CIRCUIT DESIGN USING SINGLE ELECTRON TRANSISTOR LOGIC

CHAPTER 6 DIGITAL CIRCUIT DESIGN USING SINGLE ELECTRON TRANSISTOR LOGIC 94 CHAPTER 6 DIGITAL CIRCUIT DESIGN USING SINGLE ELECTRON TRANSISTOR LOGIC 6.1 INTRODUCTION The semiconductor digital circuits began with the Resistor Diode Logic (RDL) which was smaller in size, faster

More information

ECE 340 Lecture 37 : Metal- Insulator-Semiconductor FET Class Outline:

ECE 340 Lecture 37 : Metal- Insulator-Semiconductor FET Class Outline: ECE 340 Lecture 37 : Metal- Insulator-Semiconductor FET Class Outline: Metal-Semiconductor Junctions MOSFET Basic Operation MOS Capacitor Things you should know when you leave Key Questions What is the

More information

PSpice Tutorial. (usage of simulator ) (common sense) constant. L. Pacher

PSpice Tutorial. (usage of simulator ) (common sense) constant. L. Pacher PSpice Tutorial (usage of simulator ) (common sense) constant L. Pacher SPICE Simulation Program with Integrated Circuits Emphasis Berkeley University open source code (initially coded in FORTRAN, rewritten

More information

Accurate active-feedback CM OS cascode current mirror with improved output swing

Accurate active-feedback CM OS cascode current mirror with improved output swing INT. J. ELECTRONICS, 1998, VOL. 84, NO. 4, 335±343 Accurate active-feedback CM OS cascode current mirror with improved output swing ALÇI ZEKÇI² and HAKAN KUNTMAN² An improved active-feedback CMOS cascode

More information

ECE/CoE 0132: FETs and Gates

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

More information

Digital Electronics. By: FARHAD FARADJI, Ph.D. Assistant Professor, Electrical and Computer Engineering, K. N. Toosi University of Technology

Digital Electronics. By: FARHAD FARADJI, Ph.D. Assistant Professor, Electrical and Computer Engineering, K. N. Toosi University of Technology K. N. Toosi University of Technology Chapter 7. Field-Effect Transistors By: FARHAD FARADJI, Ph.D. Assistant Professor, Electrical and Computer Engineering, K. N. Toosi University of Technology http://wp.kntu.ac.ir/faradji/digitalelectronics.htm

More information

EE105 Fall 2015 Microelectronic Devices and Circuits: MOSFET Prof. Ming C. Wu 511 Sutardja Dai Hall (SDH)

EE105 Fall 2015 Microelectronic Devices and Circuits: MOSFET Prof. Ming C. Wu 511 Sutardja Dai Hall (SDH) EE105 Fall 2015 Microelectronic Devices and Circuits: MOSFET Prof. Ming C. Wu wu@eecs.berkeley.edu 511 Sutardja Dai Hall (SDH) 7-1 Simplest Model of MOSFET (from EE16B) 7-2 CMOS Inverter 7-3 CMOS NAND

More information

Three Terminal Devices

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

More information

Introduction to LTSPICE Dr. Lynn Fuller Electrical and Microelectronic Engineering

Introduction to LTSPICE Dr. Lynn Fuller Electrical and Microelectronic Engineering ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING Introduction to LTSPICE Dr. Lynn Fuller Electrical and 82 Lomb Memorial Drive Rochester, NY 14623-5604 Tel (585) 475-2035 Fax (585) 475-5041

More information

THE SPICE BOOK. Andrei Vladimirescu. John Wiley & Sons, Inc. New York Chichester Brisbane Toronto Singapore

THE SPICE BOOK. Andrei Vladimirescu. John Wiley & Sons, Inc. New York Chichester Brisbane Toronto Singapore THE SPICE BOOK Andrei Vladimirescu John Wiley & Sons, Inc. New York Chichester Brisbane Toronto Singapore CONTENTS Introduction SPICE THE THIRD DECADE 1 1.1 THE EARLY DAYS OF SPICE 1 1.2 SPICE IN THE 1970s

More information

Lab 5: MOSFET I-V Characteristics

Lab 5: MOSFET I-V Characteristics 1. Learning Outcomes Lab 5: MOSFET I-V Characteristics In this lab, students will determine the MOSFET I-V characteristics of both a P-Channel MOSFET and an N- Channel MOSFET. Also examined is the effect

More information

254 Facta Universitatis ser.: Elect. and Energ. vol. 10, No.2 (1997) In this paper original CBiCMOS driver with hysteresis transfer characteristic, ca

254 Facta Universitatis ser.: Elect. and Energ. vol. 10, No.2 (1997) In this paper original CBiCMOS driver with hysteresis transfer characteristic, ca FACTA UNIVERSITATIS (NIS) Series: Electronics and Energetics vol. 10, No.2 (1997), 253-264 CBiCMOS DRIVER FOR SWITCHING POWER MOSFET TRANSISTORS Branko Dokic, Aleksandar Iliskovic and Zoran Cumbo Abstract.

More information

ENEE307 Lab 7 MOS Transistors 2: Small Signal Amplifiers and Digital Circuits

ENEE307 Lab 7 MOS Transistors 2: Small Signal Amplifiers and Digital Circuits ENEE307 Lab 7 MOS Transistors 2: Small Signal Amplifiers and Digital Circuits In this lab, we will be looking at ac signals with MOSFET circuits and digital electronics. The experiments will be performed

More information

A Short SPICE Tutorial

A Short SPICE Tutorial A Short SPICE Tutorial Kenneth H. Carpenter Department of Electrical and Computer Engineering Kanas State University September 15, 2003 - November 10, 2004 1 Introduction SPICE is an acronym for Simulation

More information

Electronic Circuits for Mechatronics ELCT 609 Lecture 6: MOS-FET Transistor

Electronic Circuits for Mechatronics ELCT 609 Lecture 6: MOS-FET Transistor Electronic Circuits for Mechatronics ELCT 609 Lecture 6: MOS-FET Transistor Assistant Professor Office: C3.315 E-mail: eman.azab@guc.edu.eg 1 Introduction Why we call it Transistor? The name came as an

More information

(Refer Slide Time: 02:05)

(Refer Slide Time: 02:05) Electronics for Analog Signal Processing - I Prof. K. Radhakrishna Rao Department of Electrical Engineering Indian Institute of Technology Madras Lecture 27 Construction of a MOSFET (Refer Slide Time:

More information

Department of Electrical Engineering IIT Madras

Department of Electrical Engineering IIT Madras Department of Electrical Engineering IIT Madras Sample Questions on Semiconductor Devices EE3 applicants who are interested to pursue their research in microelectronics devices area (fabrication and/or

More information

55:041 Electronic Circuits

55:041 Electronic Circuits 55:041 Electronic Circuits Mosfet Review Sections of Chapter 3 &4 A. Kruger Mosfet Review, Page-1 Basic Structure of MOS Capacitor Sect. 3.1 Width 1 10-6 m or less Thickness 50 10-9 m or less ` MOS Metal-Oxide-Semiconductor

More information

MOSFET: Mxxx nd ng ns nb modelname W=value L=value Ad As Pd Ps

MOSFET: Mxxx nd ng ns nb modelname W=value L=value Ad As Pd Ps ELE447 Lab 1: Introduction to HSPICE In this lab, you will learn how to use HSPICE for simulating the electronic circuits. To be able to simulate a circuit using HSPICE, we need to write a text file that

More information

Experiment #1 Introduction to SPICE

Experiment #1 Introduction to SPICE Jonathan Roderick Experiment #1 Introduction to SPICE Introduction: This experiment is designed to familiarize the student with SPICE. SPICE simulations will be needed for prelabs and projects contained

More information

Field-Effect Transistor (FET) is one of the two major transistors; FET derives its name from its working mechanism;

Field-Effect Transistor (FET) is one of the two major transistors; FET derives its name from its working mechanism; Chapter 3 Field-Effect Transistors (FETs) 3.1 Introduction Field-Effect Transistor (FET) is one of the two major transistors; FET derives its name from its working mechanism; The concept has been known

More information

Laboratory Experiment 5 EE348L. Spring 2005

Laboratory Experiment 5 EE348L. Spring 2005 Laboratory Experiment 5 EE348L Spring 2005 B. Madhavan Spring 2005 B. Madhavan Page 1 of 29 EE348L, Spring 2005 B. Madhavan - 2 of 29- EE348L, Spring 2005 Table of Contents 5 Experiment #5: MOSFETs...5

More information

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

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

More information

Design and Implementation of a Low Power

Design and Implementation of a Low Power VLSI DESIGN 1996, Vol. 4, No. 1, pp. 75-81 Reprints available directly from the publisher Photocopying permitted by license only (C) 1996 OPA (Overseas Publishers Association) Amsterdam B.V. Published

More information

Week 7: Common-Collector Amplifier, MOS Field Effect Transistor

Week 7: Common-Collector Amplifier, MOS Field Effect Transistor EE 2110A Electronic Circuits Week 7: Common-Collector Amplifier, MOS Field Effect Transistor ecture 07-1 Topics to coer Common-Collector Amplifier MOS Field Effect Transistor Physical Operation and I-V

More information

UNIT-VI FIELD EFFECT TRANSISTOR. 1. Explain about the Field Effect Transistor and also mention types of FET s.

UNIT-VI FIELD EFFECT TRANSISTOR. 1. Explain about the Field Effect Transistor and also mention types of FET s. UNIT-I FIELD EFFECT TRANSISTOR 1. Explain about the Field Effect Transistor and also mention types of FET s. The Field Effect Transistor, or simply FET however, uses the voltage that is applied to their

More information

444 Index. F Fermi potential, 146 FGMOS transistor, 20 23, 57, 83, 84, 98, 205, 208, 213, 215, 216, 241, 242, 251, 280, 311, 318, 332, 354, 407

444 Index. F Fermi potential, 146 FGMOS transistor, 20 23, 57, 83, 84, 98, 205, 208, 213, 215, 216, 241, 242, 251, 280, 311, 318, 332, 354, 407 Index A Accuracy active resistor structures, 46, 323, 328, 329, 341, 344, 360 computational circuits, 171 differential amplifiers, 30, 31 exponential circuits, 285, 291, 292 multifunctional structures,

More information

HIP V, 10A Half Bridge Power MOSFET Array. Description. Features. Ordering Information. Symbol. Packages FN

HIP V, 10A Half Bridge Power MOSFET Array. Description. Features. Ordering Information. Symbol. Packages FN TM April 998 6V, A Half Bridge Power MOSFET Array Features Two A Power MOS N-Channel Transistors Output Voltage to 6V r DS(ON)......3Ω Max Per Transistor at = V r DS(ON).......Ω Max Per Transistor at =

More information

EECE 2413 Electronics Laboratory

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

More information

MOS TRANSISTOR THEORY

MOS TRANSISTOR THEORY MOS TRANSISTOR THEORY Introduction A MOS transistor is a majority-carrier device, in which the current in a conducting channel between the source and the drain is modulated by a voltage applied to the

More information

Lecture 13. Metal Oxide Semiconductor Field Effect Transistor (MOSFET) MOSFET 1-1

Lecture 13. Metal Oxide Semiconductor Field Effect Transistor (MOSFET) MOSFET 1-1 Lecture 13 Metal Oxide Semiconductor Field Effect Transistor (MOSFET) MOSFET 1-1 Outline Continue MOSFET Qualitative Operation epletion-type MOSFET Characteristics Biasing Circuits and Examples Enhancement-type

More information

Circuit Simulation. LTSpice Modeling Examples

Circuit Simulation. LTSpice Modeling Examples Power Stage Losses Conduction Losses MOSFETS IGBTs Diodes Inductor Capacitors R on r ce V F R dc ESR V ce R d Frequency Dependent Losses C oss Current C d tailing Reverse Recovery Skin Effect Core Loss

More information

Mentor Graphics OPAMP Simulation Tutorial --Xingguo Xiong

Mentor Graphics OPAMP Simulation Tutorial --Xingguo Xiong Mentor Graphics OPAMP Simulation Tutorial --Xingguo Xiong In this tutorial, we will use Mentor Graphics tools to design and simulate the performance of a two-stage OPAMP. The two-stage OPAMP is shown below,

More information

NEW ALL-PASS FILTER CIRCUIT COMPENSATING FOR C-CDBA NON-IDEALITIES

NEW ALL-PASS FILTER CIRCUIT COMPENSATING FOR C-CDBA NON-IDEALITIES Journal of Circuits, Systems, and Computers Vol. 19, No. 2 (2010) 381 391 #.c World Scienti c Publishing Company DOI: 10.1142/S0218126610006128 NEW ALL-PASS FILTER CIRCUIT COMPENSATING FOR C-CDBA NON-IDEALITIES

More information

ECEN3250 Lab 9 CMOS Logic Inverter

ECEN3250 Lab 9 CMOS Logic Inverter Lab 9 CMOS Logic Inverter ECE Department University of Colorado, Boulder 1 Prelab Read Section 4.10 (4th edition Section 5.8), and the Lab procedure Do and turn in Exercise 4.41 (page 342) Do PSpice (.dc)

More information

Field Effect Transistors (npn)

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

More information

8. Characteristics of Field Effect Transistor (MOSFET)

8. Characteristics of Field Effect Transistor (MOSFET) 1 8. Characteristics of Field Effect Transistor (MOSFET) 8.1. Objectives The purpose of this experiment is to measure input and output characteristics of n-channel and p- channel field effect transistors

More information

MOSFET Biasing Supplement for Laboratory Experiment 5 EE348L. Spring 2005

MOSFET Biasing Supplement for Laboratory Experiment 5 EE348L. Spring 2005 MOSFET Biasing Supplement for Laboratory Experiment 5 EE348L Spring 2005 B. Madhavan Spring 2005 B. Madhavan Page 1 of 10 EE348L, Spring 2005 5 Laboratory Assignment 5 biasing supplement 5.1 Biasing a

More information

EE70 - Intro. Electronics

EE70 - Intro. Electronics EE70 - Intro. Electronics Course website: ~/classes/ee70/fall05 Today s class agenda (November 28, 2005) review Serial/parallel resonant circuits Diode Field Effect Transistor (FET) f 0 = Qs = Qs = 1 2π

More information

EE 2274 MOSFET BASICS

EE 2274 MOSFET BASICS Pre Lab: Include your CN with prelab. EE 2274 MOSFET BASICS 1. Simulate in LTspice a family of output characteristic curves (cutve tracer) for the 2N7000 NMOS You will need to add the 2N7000 model to LTspice

More information

Gechstudentszone.wordpress.com

Gechstudentszone.wordpress.com UNIT 4: Small Signal Analysis of Amplifiers 4.1 Basic FET Amplifiers In the last chapter, we described the operation of the FET, in particular the MOSFET, and analyzed and designed the dc response of circuits

More information

Electronic Circuits EE359A

Electronic Circuits EE359A Electronic Circuits EE359A Bruce McNair B206 bmcnair@stevens.edu 201-216-5549 1 Memory and Advanced Digital Circuits - 2 Chapter 11 2 Figure 11.1 (a) Basic latch. (b) The latch with the feedback loop opened.

More information

Field - Effect Transistor

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

More information

Solid State Device Fundamentals

Solid State Device Fundamentals Solid State Device Fundamentals 4.4. Field Effect Transistor (MOSFET) ENS 463 Lecture Course by Alexander M. Zaitsev alexander.zaitsev@csi.cuny.edu Tel: 718 982 2812 4N101b 1 Field-effect transistor (FET)

More information

Chapter 8. Chapter 9. Chapter 6. Chapter 10. Chapter 11. Chapter 7

Chapter 8. Chapter 9. Chapter 6. Chapter 10. Chapter 11. Chapter 7 5.5 Series and Parallel Combinations of 246 Complex Impedances 5.6 Steady-State AC Node-Voltage 247 Analysis 5.7 AC Power Calculations 256 5.8 Using Power Triangles 258 5.9 Power-Factor Correction 261

More information

Semiconductor Physics and Devices

Semiconductor Physics and Devices Metal-Semiconductor and Semiconductor Heterojunctions The Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET) is one of two major types of transistors. The MOSFET is used in digital circuit, because

More information