HSPICE (from Avant!) offers a more robust, commercial version of SPICE. PSPICE is a popular version of SPICE, available from Orcad (now Cadence).

Size: px
Start display at page:

Download "HSPICE (from Avant!) offers a more robust, commercial version of SPICE. PSPICE is a popular version of SPICE, available from Orcad (now Cadence)."

Transcription

1 Electronics II: SPICE Lab ECE /503 Team Size: 2-3 Electronics II Lab Date: 3/9/2017 Lab Created by: Chris Frederickson, Adam Fifth, and Russell Trafford Introduction SPICE (Simulation Program for Integrated Circuits Emphasis) was developed at the Electronics Research Laboratory of the University of California, Berkeley by Laurence Nagel with direction from his research advisor, Prof. Donald Pederson. SPICE1 was largely a derivative of the CANCER program, [1] which Nagel had worked on under Prof. Ronald Rohrer. At these times many circuit simulators were developed under the United States Department of Defense contracts that required the capability to evaluate the radiation hardness of a circuit. When Nagel s original advisor, Prof. Rohrer, left Berkeley, Prof. Pederson became his advisor. Pederson insisted that CANCER, a proprietary program, be rewritten enough that restrictions could be removed and the program could be put in the public domain. SPICE1 was first presented at a conference in SPICE1 was coded in FORTRAN and used nodal analysis to construct the circuit equations. Nodal analysis has limitations in representing inductors, floating voltage sources and the various forms of controlled sources. SPICE1 had relatively few circuit elements available and used a fixed-timestep transient analysis. The real popularity of SPICE started with SPICE2 in SPICE2 included many semiconductor device compact models: three levels of MOSFET model, a combined EbersMoll and Gummel-Poon bipolar model, a JFET model, and a model for a junction diode. In addition, it had many other elements: resistors, capacitors, inductors (including coupling), independent voltage and current sources, ideal transmission lines, active components and voltage and current controlled sources. SPICE3 added more sophisticated MOSFET models, which were required due to advances in semiconductor technology. In particular, the BSIM (Berkeley Short-channel IGFET Model) family of models were added, which were also developed at UC Berkeley. Commercial and industrial SPICE simulators have added many other device models as technology advanced and earlier models became inadequate. To attempt standardization of these models so that a set of model parameters may be used in different simulators, an industry working group was formed, the Compact Model Council, to choose, maintain and promote the use of standard models. The most common SPICE models being used are: SPICE3, the latest Berkeley offering. It has the advantage of being freely available, to support a wide variety of models, and to run on all UNIX platforms. HSPICE (from Avant!) offers a more robust, commercial version of SPICE. PSPICE is a popular version of SPICE, available from Orcad (now Cadence). AIM-spice is a pc-version of SPICE with a revised user interface, simulation control, and with extra models. 1

2 IV Curves Finding the MOSFET Characteristic Curve What use is a model if it does not actually behave like a real world device? You will be generating the MOSFET Family of Curves using just a power supply, DMM, and your bare hands. We will save you the literal hours of headache by giving you the correct datasheet, since there are many iterations of the 2N7000 N-Channel MOSFET. The characteristic curve is found by biasing a MOSFET to a specific Gate to source voltage, then comparing the drain current as you increase, as seen below. In case you were not tortured enough by it in Electronics I, the family of curves represents the relationship between these two quantities at multiple Gate-to-Source voltages. This can provide you great insight into the device parameters, mainly the transconductance. In terms of SPICE Modeling, we need to actually visit the model twice when dealing with circuits which are heavily dependant on the internal properties of a device. First, the initial design needs to be made such that none of the maximum parameters are not exceeded during normal operation as well as to go into the lab expecting your results. After you find the characteristics, it is normally good practice to come back to your simulation and tweak the different parameters to get closer to real world performance. One of the take-aways from this lab should be the impact of certain parameters in your simulation and what you as the designer should care about when choosing devices. PSPICE Commands PSPICE commands and syntax are organized by type, (C for Capacitor, D for Diode, M for MOSFET, etc...). For each model there are specific definitions that are required in order to run. You can find a summary of the commands available in PSICE here: M - MOSFET Format The following is the basic syntax for a MOSFET model: 2

3 name means required in definition {name} means optional in definition [a,b,c] means choice of a,b, or c in definition. (name) means parentheses required in definition... means multiple declarations of the same format General Format: M defines a MOSFET transistor. The MOSFET is modeled as an intrinsic MOSFET with Ohmic resistances in series with the drain, source, gate, and substrate(bulk). There is also a shunt resistor (RDS) in parallel with the drain-source channel. Positive current is defined to flow into each terminal. L and W are the channel s length and width. L is decreased by 2*LD and W is decreased by 2*WD to get the effective channel length and width. L and W can be defined in the device statement, in the model, or in.option command. The device statement has precedence over the model which has precedence over the.options. AD and AS are the drain and source diffusion areas. PD and PS are the drain and source diffusion parameters. The drain-bulk and source-bulk saturation currents can be specified by JS (which in turn is multiplied by AD and AS) or by IS (an absolute value). The zero-bias depletion capacitances can be specified by CJ, which is multiplied by AD and AS, and by CJSW, which is multiplied by PD and PS, or by CBD and CBS, which are absolute values. NRD, NRS, NRG, and NRB are reactive resistivities of their respective terminals in squares. These parasitics can be specified either by RSH (which in turn is multiplied by NRD, NRS, NRG, and NRB) or by absolute resistances RD, RG, RS, and RB. Defaults for L, W, AD, and AS may be set using the.options command. If.OPTIONS is not used their default values are 100u, 100u, 0, and 0 respectively. Examples: M MNMOS L=3u W=1u defines a MOSFET with drain node 1, gate node 2, source node 3, substrate node 0, channel length and width 3u and 1u respectively, and described further by model MNMOS (which is assumed to exist in the.model statements) M MNMOS defines a MOSFET with drain node 4, gate node 5, source node 6, substrate node 0, and described further by model MNMOS (which is assumed to exist in the.model statements) 3

4 SPICE Download the PSPICE Model In this section, we will construct the circuit from earlier using TINA-TI and investigate the impact of varying parameters of the manufacturers spice model. Download Fairchild Semiconductors PSPICE model for the 2N7000 MOSFET from the following link: models Two versions of the SPICE model are given. The Thermal;Electrical model contains a subcircuit for the electrical simulation and a subcircuit for the thermal subcircuit that takes into account the device heating up. The Electrical model contains one subcircuit that models the MOSFET at a given input temperature. Download the Thermal;Electrical model. Inspect the Model File Take a look at the model file in a text editor.comment on the structure of the file. What resistances and capacitances are taken into account? What MOSFET model level is used? Import the Model TINA-TI supports using PSPICE models and new parts can be created from their corresponding PSPICE model. In this section, we will create a part for the 2N7000 MOSFET. In TINA-TI, select Tools New Macro Wizard.... Set the macro name to 2N7000. Select the source of the macro as the.lib PSPICE model downloaded from the manufacturer. Click next. Two subcircuits will be found in the file: the electrical subcircuit and the thermal subcircuit. Select the electrical subcircuit: F2N7000. Click next. We will use the NMOS shape from the library. Select load shape from library. Deselect show suggested shapes only. Do a search for NMOSE and select the NMOSE shape. Click next. The PSPICE model subcircuit contains three terminals: 20 - Drain 10 - Gate 30 - Source Drag the unconnected terminals to the pins on the shape. Click next. Save the created model and insert it into the schematic. 4

5 Construct the Circuit Construct the circuit from earlier. Apply a voltage source of 4 V to the NMOS gate with a label VGS. Apply a voltage generator and current meter to the drain of the NMOS with labels VDS and AD respectively. Set the voltage generator so that it outputs a sinusoid with that varies between 0 V and 10 V with a frequency of 50 Hz. Basic IV Curve Select Analysis Transient.... Start the transient analysis at 0 seconds and end at 50 milliseconds or 50m. Click OK. A plot will appear that shows the voltage VDS and current ID. In the window, select Edit Post-processor.... Click More >>. Select XY Plot. In Line Edit - X Part write VDS(t) to plot the drain to source voltage. In Line Edit - Y Part write ID(t) to plot the drain current. Click Preview to show the IV curve. Comment on the expected values? Based on the plot of these IV Curves, what currents should you be expecting when you build and test the circuit? Physical Circuit Setting Up Your Lab Bench There needs to be a few considerations before you begin powering these MOSFETs. First, you need to realize that you will be taking current measurements, introducing an easy way to break a piece of equipment. You need to read the manual on your DMM to see the current limits for its current measurements. The easiest way to ensure that you do not blow any fuses or explode a handful of MOSFETs is to liberally apply a heaping helping of current limits. Take a few minutes to run a basic simulation of the testing circuit to see roughly what currents you should be expecting at the gate as well as the drain. Compare this to the graphs given in the Datasheet to your results when using the generic models and the manufacturer given models. When setting up your power supplies, you should set your current limits to around what you expect so that you do not destroy your device or your instrumentation. It would be in your best interest to set up your voltages and currents while setting your limits and with the output off. Start out your experimentation with the lowest recorded V gs on the datasheet, and a V ds of around 0.5V. Running The Experiment If by this point you have not looked at the datasheet, we are going to put the link again so you can do it now: You need to take a very close at the maximum output characteristics and realize that you will most likely push the limits on this device. Sustained operation above these points will damage the device and could cause it to fail. However, if you pulse the device with these relatively large voltages and currents, you can minimize the impact of the device. For each of the Vgs provided in the Datasheet, sweep Vgs from 0V up to around 5V in ample increments. When taking voltage and current measurements, it is highly recommended to utilize the Single Acquisition mode on the DMM. In this way, you can turn on the power, 5

6 take a measurement, and immediately turn off the power supply. Plot these points in your favorite program and compare them to the datasheet and the simulation. What is different? Why do you think there would be a difference? Do your testing conditions match that of the manufacturers? Would these differences make that much of an impact (*cough cough* check SPICE *cough cough*)? SPICE Parameters Temperature Sweep In low earth orbit, a satellite will be subjected to temperature swings between roughly -65 C to 125 C. It is important to understand how temperature will affect the electronics on the satellite. In this section, we will subject the MOSFET to varying temperatures and observe the impact on the IV curve. Select Analysis Mode.... Set the current mode to Temperature stepping with a start temperature of -65 and end temperature of 125 with 5 cases. Run the transient analysis. An error may appear as the post-processor is not configured properly. In the post-processor, five new curves will be available, ID[1] - ID[5]. These correspond to the MOSFET running at varying temperatures. Change the Y axis to plot each curve. What is the impact of changing the device temperature? Is this trend in line with what the datasheet says? MOSFET Model Level The SPICE MOSFET models levels 1-3 use the same model parameters and therefore the model can be changed between these levels by simply changing the level parameter. Right click on the part in your circuit and select Enter Macro. The PSPICE model will appear. Change the MOSFET model level between 1-3. In order to change the back to the schematic view, select the first named tab in the bottom left corner of the screen. Plot the IV curves for VGS = 4V and comment on the impact of changing the model. Vary Model Parameters The PSPICE model contains a number of resistances. Vary the resistance values in the model. Which resistances is the model sensitive to changes in? What is the impact of changing a particular resistance value on the IV curve? References [1] Nagel, L. W. & Rohrer, R. A. (August 1971). Computer Analysis of Nonlinear Circuits, Excluding Radiation. IEEE Journal of Solid State Circuits. SC6:

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

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 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

Introduction to PSpice

Introduction to PSpice Electric Circuit I Lab Manual 4 Session # 5 Introduction to PSpice 1 PART A INTRODUCTION TO PSPICE Objective: The objective of this experiment is to be familiar with Pspice (learn how to connect circuits,

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

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

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

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

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

An Introductory Guide to Circuit Simulation using NI Multisim 12

An Introductory Guide to Circuit Simulation using NI Multisim 12 School of Engineering and Technology An Introductory Guide to Circuit Simulation using NI Multisim 12 This booklet belongs to: This document provides a brief overview and introductory tutorial for circuit

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

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

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

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

ECE 2274 MOSFET Voltmeter. Richard Cooper

ECE 2274 MOSFET Voltmeter. Richard Cooper ECE 2274 MOSFET Voltmeter Richard Cooper Pre-Lab for MOSFET Voltmeter Voltmeter design: Build a MOSFET (2N7000) voltmeter in LTspice. The MOSFETs in the voltmeter act as switches. To turn on the MOSFET.

More information

How SPICE Transformed Integrated Circuit Design

How SPICE Transformed Integrated Circuit Design How SPICE Transformed Integrated Circuit Design Laurence W. Nagel Omega Enterprises Consulting Presented at ISAT/DARPA Workshop Naturally Expressed Rapid Design (NERD) Warrenton, VA August 14-15, 2014

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

THE JFET. Script. Discuss the JFET and how it differs from the BJT. Describe the basic structure of n-channel and p -channel JFETs

THE JFET. Script. Discuss the JFET and how it differs from the BJT. Describe the basic structure of n-channel and p -channel JFETs Course: B.Sc. Applied Physical Science (Computer Science) Year & Sem.: Ist Year, Sem - IInd Subject: Electronics Paper No.: V Paper Title: Analog Circuits Lecture No.: 12 Lecture Title: Analog Circuits

More information

EE 330 Laboratory 7 MOSFET Device Experimental Characterization and Basic Applications Spring 2017

EE 330 Laboratory 7 MOSFET Device Experimental Characterization and Basic Applications Spring 2017 EE 330 Laboratory 7 MOSFET Device Experimental Characterization and Basic Applications Spring 2017 Objective: The objective of this laboratory experiment is to become more familiar with the operation of

More information

Radio Frequency Electronics

Radio Frequency Electronics Radio Frequency Electronics Active Components II Harry Nyquist Born in 1889 in Sweden Received B.S. and M.S. from U. North Dakota Received Ph.D. from Yale Worked and Bell Laboratories for all of his career

More information

Introduction to OrCAD. Simulation Program With Integrated Circuits Emphasis.

Introduction to OrCAD. Simulation Program With Integrated Circuits Emphasis. Islamic University of Gaza Faculty of Engineering Electrical Engineering department Digital Electronics Lab (EELE 3121) Eng. Mohammed S. Jouda Eng. Amani S. abu reyala Experiment 1 Introduction to OrCAD

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

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis

ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis ET 304A Laboratory Tutorial-Circuitmaker For Transient and Frequency Analysis All circuit simulation packages that use the Pspice engine allow users to do complex analysis that were once impossible to

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

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

Electronic Circuits II - Revision

Electronic Circuits II - Revision Electronic Circuits II - Revision -1 / 16 - T & F # 1 A bypass capacitor in a CE amplifier decreases the voltage gain. 2 If RC in a CE amplifier is increased, the voltage gain is reduced. 3 4 5 The load

More information

CHAPTER 8 FIELD EFFECT TRANSISTOR (FETs)

CHAPTER 8 FIELD EFFECT TRANSISTOR (FETs) CHAPTER 8 FIELD EFFECT TRANSISTOR (FETs) INTRODUCTION - FETs are voltage controlled devices as opposed to BJT which are current controlled. - There are two types of FETs. o Junction FET (JFET) o Metal

More information

Experiment 10 Current Sources and Voltage Sources

Experiment 10 Current Sources and Voltage Sources Experiment 10 Current Sources and Voltage Sources W.T. Yeung and R.T. Howe UC Berkeley EE 105 Fall 2003 1.0 Objective This experiment will introduce techniques for current source biasing. Several different

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

EE 501 Lab 1 Exploring Transistor Characteristics

EE 501 Lab 1 Exploring Transistor Characteristics Objectives: Tasks: EE 501 Lab 1 Exploring Transistor Characteristics Lab report due on Sep 8th, 2011 1. Make sure you have your cadence 6 work properly 2. Familiar with characteristics of MOSFET such as

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

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

FIELD EFFECT TRANSISTOR (FET) 1. JUNCTION FIELD EFFECT TRANSISTOR (JFET)

FIELD EFFECT TRANSISTOR (FET) 1. JUNCTION FIELD EFFECT TRANSISTOR (JFET) FIELD EFFECT TRANSISTOR (FET) The field-effect transistor (FET) is a three-terminal device used for a variety of applications that match, to a large extent, those of the BJT transistor. Although there

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

Modeling Snapback and Rise-Time Effects in TLP Testing for ESD MOS Devices Using BSIM3 and VBIC Models

Modeling Snapback and Rise-Time Effects in TLP Testing for ESD MOS Devices Using BSIM3 and VBIC Models Modeling Snapback and Rise-Time Effects in TLP Testing for ESD MOS Devices Using BSIM3 and VBIC Models, Duane Connerney, Ronald Carroll, Timwah Luk Fairchild Semiconductor, South Portland, ME 04106 1 Outline

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

I E I C since I B is very small

I E I C since I B is very small Figure 2: Symbols and nomenclature of a (a) npn and (b) pnp transistor. The BJT consists of three regions, emitter, base, and collector. The emitter and collector are usually of one type of doping, while

More information

JFET and MOSFET Characterization

JFET and MOSFET Characterization Laboratory-3 JFET and MOSFET Characterization Introduction Precautions The objectives of this experiment are to observe the operating characteristics of junction field-effect transistors (JFET's) and metal-oxide-semiconductor

More information

Chapter 8: Field Effect Transistors

Chapter 8: Field Effect Transistors Chapter 8: Field Effect Transistors Transistors are different from the basic electronic elements in that they have three terminals. Consequently, we need more parameters to describe their behavior than

More information

ENEE 307 Laboratory#2 (n-mosfet, p-mosfet, and a single n-mosfet amplifier in the common source configuration)

ENEE 307 Laboratory#2 (n-mosfet, p-mosfet, and a single n-mosfet amplifier in the common source configuration) Revised 2/16/2007 ENEE 307 Laboratory#2 (n-mosfet, p-mosfet, and a single n-mosfet amplifier in the common source configuration) *NOTE: The text mentioned below refers to the Sedra/Smith, 5th edition.

More information

Chapter 8. Field Effect Transistor

Chapter 8. Field Effect Transistor Chapter 8. Field Effect Transistor Field Effect Transistor: The field effect transistor is a semiconductor device, which depends for its operation on the control of current by an electric field. There

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy

EE320L Electronics I. Laboratory. Laboratory Exercise #6. Current-Voltage Characteristics of Electronic Devices. Angsuman Roy EE320L Electronics I Laboratory Laboratory Exercise #6 Current-Voltage Characteristics of Electronic Devices By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las

More information

ECE4902 C2012 Lab 3. Qualitative MOSFET V-I Characteristic SPICE Parameter Extraction using MOSFET Current Mirror

ECE4902 C2012 Lab 3. Qualitative MOSFET V-I Characteristic SPICE Parameter Extraction using MOSFET Current Mirror ECE4902 C2012 Lab 3 Qualitative MOSFET VI Characteristic SPICE Parameter Extraction using MOSFET Current Mirror The purpose of this lab is for you to make both qualitative observations and quantitative

More information

Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8. Bipolar Junction Transistor

Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8. Bipolar Junction Transistor Başkent University Department of Electrical and Electronics Engineering EEM 214 Electronics I Experiment 8 Bipolar Junction Transistor Aim: The aim of this experiment is to investigate the DC behavior

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

ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE

ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE Version 1.1 1 of 33 BEFORE YOU BEGIN PREREQUISITE LABS Resistive Circuits EXPECTED KNOWLEDGE ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE Ohm's Law: v = ir Node Voltage and Mesh Current Methods of Circuit

More information

MOSFET Terminals. The voltage applied to the GATE terminal determines whether current can flow between the SOURCE & DRAIN terminals.

MOSFET Terminals. The voltage applied to the GATE terminal determines whether current can flow between the SOURCE & DRAIN terminals. MOSFET Terminals The voltage applied to the GATE terminal determines whether current can flow between the SOURCE & DRAIN terminals. For an n-channel MOSFET, the SOURCE is biased at a lower potential (often

More information

SPICE FOR POWER ELECTRONICS AND ELECTRIC POWER

SPICE FOR POWER ELECTRONICS AND ELECTRIC POWER SPICE FOR POWER ELECTRONICS AND ELECTRIC POWER SECOND EDITION MUHAMMAD H. RASHID University of West Florida Pensacola, Florida, U.S.A. HASAN M. RASHID University of Florida Gainesville, Florida, U.S.A.

More information

Lecture (03) The JFET

Lecture (03) The JFET Lecture (03) The JFET By: Dr. Ahmed ElShafee ١ JFET Basic Structure Figure shows the basic structure of an n channel JFET (junction field effect transistor). Wire leads are connected to each end of the

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

University of Pittsburgh

University of Pittsburgh University of Pittsburgh Experiment #4 Lab Report MOSFET Amplifiers and Current Mirrors Submission Date: 07/03/2018 Instructors: Dr. Ahmed Dallal Shangqian Gao Submitted By: Nick Haver & Alex Williams

More information

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers EE 330 Laboratory 8 Discrete Semiconductor Amplifiers Fall 2018 Contents Objective:...2 Discussion:...2 Components Needed:...2 Part 1 Voltage Controlled Amplifier...2 Part 2 A Nonlinear Application...3

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

Summary. Electronics II Lecture 5(b): Metal-Oxide Si FET MOSFET. A/Lectr. Khalid Shakir Dept. Of Electrical Engineering

Summary. Electronics II Lecture 5(b): Metal-Oxide Si FET MOSFET. A/Lectr. Khalid Shakir Dept. Of Electrical Engineering Summary Electronics II Lecture 5(b): Metal-Oxide Si FET MOSFET A/Lectr. Khalid Shakir Dept. Of Electrical Engineering College of Engineering Maysan University Page 1-21 Summary The MOSFET The metal oxide

More information

Laboratory #2 PSpice Analyses

Laboratory #2 PSpice Analyses Laboratory #2 PSpice Analyses I. Objectives 1. Know the development of SPICE. 2. Learn to install the PSpice software. 3. Learn to use the Capture CIS to draw circuit. 4. Learn to use the four analyses

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

Curve Tracer Laboratory Assistant Using the Analog Discovery Module as A Curve Tracer

Curve Tracer Laboratory Assistant Using the Analog Discovery Module as A Curve Tracer Curve Tracer Laboratory Assistant Using the Analog Discovery Module as A Curve Tracer The objective of this lab is to become familiar with methods to measure the dc current-voltage (IV) behavior of diodes

More information

The Common Source JFET Amplifier

The Common Source JFET Amplifier The Common Source JFET Amplifier Small signal amplifiers can also be made using Field Effect Transistors or FET's for short. These devices have the advantage over bipolar transistors of having an extremely

More information

ECEN 474/704 Lab 1: Introduction to Cadence & MOS Device Characterization

ECEN 474/704 Lab 1: Introduction to Cadence & MOS Device Characterization ECEN 474/704 Lab 1: Introduction to Cadence & MOS Device Characterization Objectives Learn how to login on a Linux workstation, perform basic Linux tasks, and use the Cadence design system to simulate

More information

EECS 312: Digital Integrated Circuits Lab Project 2 Extracting Electrical and Physical Parameters from MOSFETs. Teacher: Robert Dick GSI: Shengshuo Lu

EECS 312: Digital Integrated Circuits Lab Project 2 Extracting Electrical and Physical Parameters from MOSFETs. Teacher: Robert Dick GSI: Shengshuo Lu EECS 312: Digital Integrated Circuits Lab Project 2 Extracting Electrical and Physical Parameters from MOSFETs Teacher: Robert Dick GSI: Shengshuo Lu Due 3 October 1 Introduction In this lab project, we

More information

ETIN25 Analogue IC Design. Laboratory Manual Lab 2

ETIN25 Analogue IC Design. Laboratory Manual Lab 2 Department of Electrical and Information Technology LTH ETIN25 Analogue IC Design Laboratory Manual Lab 2 Jonas Lindstrand Martin Liliebladh Markus Törmänen September 2011 Laboratory 2: Design and Simulation

More information

Lecture (10) MOSFET. By: Dr. Ahmed ElShafee. Dr. Ahmed ElShafee, ACU : Fall 2016, Electronic Circuits II

Lecture (10) MOSFET. By: Dr. Ahmed ElShafee. Dr. Ahmed ElShafee, ACU : Fall 2016, Electronic Circuits II Lecture (10) MOSFET By: Dr. Ahmed ElShafee ١ Dr. Ahmed ElShafee, ACU : Fall 2017, Electronic Circuits II Introduction The MOSFET (metal oxide semiconductor field effect transistor) is another category

More information

1.2Vdc 1N4002. Anode V+

1.2Vdc 1N4002. Anode V+ ECE 2274 Pre-Lab for MOSFET Night Light and Voltmeter 1. Night Light The purpose of this part of experiment is to use the switching characteristics of the MOSFET to design a Night Light using a LED, MOSFET,

More information

ECE 2274 Pre-Lab for Experiment # 4 Diode Basics and a Rectifier Completed Prior to Coming to Lab

ECE 2274 Pre-Lab for Experiment # 4 Diode Basics and a Rectifier Completed Prior to Coming to Lab Part I I-V Characteristic Curve ECE 2274 Pre-Lab for Experiment # 4 Diode Basics and a Rectifier Completed Prior to Coming to Lab 1. Construct the circuit shown in figure 4-1. Using a DC Sweep, simulate

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

EE311: Electrical Engineering Junior Lab, Fall 2006 Experiment 4: Basic MOSFET Characteristics and Analog Circuits

EE311: Electrical Engineering Junior Lab, Fall 2006 Experiment 4: Basic MOSFET Characteristics and Analog Circuits EE311: Electrical Engineering Junior Lab, Fall 2006 Experiment 4: Basic MOSFET Characteristics and Analog Circuits Objective This experiment is designed for students to get familiar with the basic properties

More information

ET Training. Electronics: JFET Instructor: H.Pham. The JUNCTION FIELF EFFECT TRANSISTOR (JFET) n channel JFET p channel JFET

ET Training. Electronics: JFET Instructor: H.Pham. The JUNCTION FIELF EFFECT TRANSISTOR (JFET) n channel JFET p channel JFET The JUNCTION FIELF EFFECT TRANSISTOR (JFET) n channel JFET p channel JFET 1 The BIASED JFET VDD provides a drain-to-source voltage and supplies current from drain to source VGG sets the reverse-biased

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

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers

EE 330 Laboratory 8 Discrete Semiconductor Amplifiers EE 330 Laboratory 8 Discrete Semiconductor Amplifiers Fall 2017 Contents Objective:... 2 Discussion:... 2 Components Needed:... 2 Part 1 Voltage Controlled Amplifier... 2 Part 2 Common Source Amplifier...

More information

Field Effect Transistors

Field Effect Transistors Field Effect Transistors LECTURE NO. - 41 Field Effect Transistors www.mycsvtunotes.in JFET MOSFET CMOS Field Effect transistors - FETs First, why are we using still another transistor? BJTs had a small

More information

Experiment No: 5. JFET Characteristics

Experiment No: 5. JFET Characteristics Experiment No: 5 JFET Characteristics Aim: 1. To study Drain Characteristics and Transfer Characteristics of a Junction Field Effect Transistor (JFET). 2. To measure drain resistance, trans-conductance

More information

Experiment#: 8. The JFET Characteristics & DC Biasing. Electronics (I) Laboratory. The Hashemite University. Faculty of Engineering

Experiment#: 8. The JFET Characteristics & DC Biasing. Electronics (I) Laboratory. The Hashemite University. Faculty of Engineering The Hashemite University Faculty of Engineering Department of Electrical and Computer Engineering Electronics (I) Laboratory Experiment#: 8 The JFET Characteristics & DC Biasing Student s Name : Ja'afar

More information

Circuit Simulation with SPICE OPUS

Circuit Simulation with SPICE OPUS Circuit Simulation with SPICE OPUS Theory and Practice Tadej Tuma Arpäd Bürmen Birkhäuser Boston Basel Berlin Contents Abbreviations About SPICE OPUS and This Book xiii xv 1 Introduction to Circuit Simulation

More information

Background Theory and Simulation Practice

Background Theory and Simulation Practice CAD and Simulation Objectives Experiment Topic: CAD and Simulation PSpice 9.1 Student Version To obtain your free copy of the software and user s guide, go to Electronics Lab website ( http://www.electronics-lab.com/downloads/schematic/013/

More information

Figure 1: JFET common-source amplifier. A v = V ds V gs

Figure 1: JFET common-source amplifier. A v = V ds V gs Chapter 7: FET Amplifiers Switching and Circuits The Common-Source Amplifier In a common-source (CS) amplifier, the input signal is applied to the gate and the output signal is taken from the drain. The

More information

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

Chapter 1. Introduction

Chapter 1. Introduction EECS3611 Analog Integrated Circuit esign Chapter 1 Introduction EECS3611 Analog Integrated Circuit esign Instructor: Prof. Ebrahim Ghafar-Zadeh, Prof. Peter Lian email: egz@cse.yorku.ca peterlian@cse.yorku.ca

More information

IENGINEERS-CONSULTANTS QUESTION BANK SERIES ELECTRONICS ENGINEERING 1 YEAR UPTU ELECTRONICS ENGINEERING EC 101 UNIT 3 (JFET AND MOSFET)

IENGINEERS-CONSULTANTS QUESTION BANK SERIES ELECTRONICS ENGINEERING 1 YEAR UPTU ELECTRONICS ENGINEERING EC 101 UNIT 3 (JFET AND MOSFET) ELECTRONICS ENGINEERING EC 101 UNIT 3 (JFET AND MOSFET) LONG QUESTIONS (10 MARKS) 1. Draw the construction diagram and explain the working of P-Channel JFET. Also draw the characteristics curve and transfer

More information

Electronic Circuits. Junction Field-effect Transistors. Dr. Manar Mohaisen Office: F208 Department of EECE

Electronic Circuits. Junction Field-effect Transistors. Dr. Manar Mohaisen Office: F208   Department of EECE Electronic Circuits Junction Field-effect Transistors Dr. Manar Mohaisen Office: F208 Email: manar.subhi@kut.ac.kr Department of EECE Review of the Precedent Lecture Explain the Operation Class A Power

More information

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE

EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE EXPERIMENT NUMBER 10 TRANSIENT ANALYSIS USING PSPICE Objective: To learn to use a circuit simulator package for plotting the response of a circuit in the time domain. Preliminary: Revise laboratory 8 to

More information

Lecture - 18 Transistors

Lecture - 18 Transistors Electronic Materials, Devices and Fabrication Dr. S. Prarasuraman Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras Lecture - 18 Transistors Last couple of classes

More information

VERIFICATION OF SPICE MODEL OF MOSFET

VERIFICATION OF SPICE MODEL OF MOSFET VERIFICATION OF SPICE MODEL OF MOSFET Vishal V. Bodake 1,Prof.Amutha Jeyakumar 2,Devendrabhai Patel 3 1Student, Dept. of Electrical Engineering, VJTI, Mumbai, Maharashtra 2Associate Professor, Dept. of

More information

UNIT II JFET, MOSFET, SCR & UJT

UNIT II JFET, MOSFET, SCR & UJT UNIT II JFET, MOSFET, SCR & UJT JFET JFET as an Amplifier and its Output Characteristics JFET Applications MOSFET Working Principles, SCR Equivalent Circuit and V-I Characteristics. SCR as a Half wave

More information

Analog Electronics. Electronic Devices, 9th edition Thomas L. Floyd Pearson Education. Upper Saddle River, NJ, All rights reserved.

Analog Electronics. Electronic Devices, 9th edition Thomas L. Floyd Pearson Education. Upper Saddle River, NJ, All rights reserved. Analog Electronics BJT Structure The BJT has three regions called the emitter, base, and collector. Between the regions are junctions as indicated. The base is a thin lightly doped region compared to the

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

IFB270 Advanced Electronic Circuits

IFB270 Advanced Electronic Circuits IFB270 Advanced Electronic Circuits Chapter 9: FET amplifiers and switching circuits Prof. Manar Mohaisen Department of EEC Engineering Review of the Precedent Lecture Review of basic electronic devices

More information

LAB EXERCISE 3 FET Amplifier Design and Linear Analysis

LAB EXERCISE 3 FET Amplifier Design and Linear Analysis ADS 2012 Workspaces and Simulation Tools (v.1 Oct 2012) LAB EXERCISE 3 FET Amplifier Design and Linear Analysis Topics: More schematic capture, DC and AC simulation, more on libraries and cells, using

More information

Revised: Summer 2010

Revised: Summer 2010 EE 2274 PRE-LAB EXPERIMENT 5 DIODE OR GATE & CLIPPING CIRCUIT COMPLETE PRIOR TO COMING TO LAB Part I: 1. Design a diode, Figure 1 OR gate in which the maximum input current,, Iin is less than 5mA. Show

More information

Laboratory #5 BJT Basics and MOSFET Basics

Laboratory #5 BJT Basics and MOSFET Basics Laboratory #5 BJT Basics and MOSFET Basics I. Objectives 1. Understand the physical structure of BJTs and MOSFETs. 2. Learn to measure I-V characteristics of BJTs and MOSFETs. II. Components and Instruments

More information

NAME: Last First Signature

NAME: Last First Signature UNIVERSITY OF CALIFORNIA, BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences EE 130: IC Devices Spring 2003 FINAL EXAMINATION NAME: Last First Signature STUDENT

More information

JFET 101, a Tutorial Look at the Junction Field Effect Transistor 8May 2007, edit 2April2016, Wes Hayward, w7zoi

JFET 101, a Tutorial Look at the Junction Field Effect Transistor 8May 2007, edit 2April2016, Wes Hayward, w7zoi JFET 101, a Tutorial Look at the Junction Field Effect Transistor 8May 2007, edit 2April2016, Wes Hayward, w7zoi FETs are popular among experimenters, but they are not as universally understood as the

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

Experiment 5 Single-Stage MOS Amplifiers

Experiment 5 Single-Stage MOS Amplifiers Experiment 5 Single-Stage MOS Amplifiers B. Cagdaser, H. Chong, R. Lu, and R. T. Howe UC Berkeley EE 105 Fall 2005 1 Objective This is the first lab dealing with the use of transistors in amplifiers. We

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

UNIVERSITY OF CALIFORNIA AT BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences.

UNIVERSITY OF CALIFORNIA AT BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences. UNIVERSITY OF CALIFORNIA AT BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences Discussion #9 EE 05 Spring 2008 Prof. u MOSFETs The standard MOSFET structure is shown

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

MODULE-2: Field Effect Transistors (FET)

MODULE-2: Field Effect Transistors (FET) FORMAT-1B Definition: MODULE-2: Field Effect Transistors (FET) FET is a three terminal electronic device used for variety of applications that match with BJT. In FET, an electric field is established by

More information

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering

UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering UNIVERSITY OF NORTH CAROLINA AT CHARLOTTE Department of Electrical and Computer Engineering EXPERIMENT 8 MOSFET AMPLIFIER CONFIGURATIONS AND INPUT/OUTPUT IMPEDANCE OBJECTIVES The purpose of this experiment

More information