Introduction to PSpice

Size: px
Start display at page:

Download "Introduction to PSpice"

Transcription

1 IL2218 Analog electronics, advanced course Document version /Bengt M. Introduction to PSpice This introduction is valid for OrCad PSpice ver 9.2 lite edition. The lite edition or student edition of the software is limited to designs with max 64 nodes and max 10 transistors. Installation of OrCad PSpice ver 9.2 lite edition Follow the installation guideline, choose Capture and PSpice, Layout is optional, this software could also be used to draw the layout of printed circuit bords. Additional information how to handle the software could be found in online manuals or in the Learning Capture lessons in Capture help menu. Start a new design project Start the schematic drawing program Capture. Select File / New Project be sure to choose Analog or Mixed A/D. Browse to the location where you want to save your project and give the project a name 1(16)

2 A schematic capture window should open now. To the left is the project manager window. If the schematic window do not open, double-click on PAGE1 in the project manager window. Start to make a schematic drawing In the schematic window choose Place / Part. The first time you run the program you have to add PSpice libraries. Select Add Library and select all libraries in the PSpice library folder. Be sure to use the symbols in.\orcadlite\capture\library\pspice. Other symbol libraries might have symbols not intended for PSpice simulation. (Those symbols are used for layout and design of printed circuit boards.) 2(16)

3 In this example we will be drawing and simulating this design Use these commands to draw the schematic Place / Part MbreakN NMOS transistor, library BREAKOUT MbreakP PMOS transistor Place / Ground 0 Library Source, you might have to add this library from PSpice folder to find the ground symbol with the name 0, in SPICE there has to be one node with the name 0 as an electrical reference. Place / Part VDC DC voltage source, library Source IDC DC current source Place / Wire Place / Net Alias connect components with wires add name to nets in your design and it will be easier to find signals or connecting nets without actually drawing wires (VDD and VSS). Nets with the same name are connected Start drawing by placing MbreakN Double-click on the symbol to start the Property Editor. Chose Filter by: Orcad PSpice, select the row, right-click and choose Pivot if you want a vertical column. Give value 0.5um and 50um to length (L) and width (W) of the transistor. Mark W and press Display... select name and value, to make it visible in schematic. Do the same with L. ( 0.5u means 0.5 μm ) 3(16)

4 Suppose we want to examine the current to voltage characteristics of this transistor. We connect DC voltages to gate-source and drain-source, here they are renamed to VGS and VDS. Also name the nets G and D (guess why!) to make it easier to reference to them later. To be able to simulate this: change MbreakN to nmos (property Implementation). nmos is the name we give the MOS model. Setup simulation: PSpice / New Simulation Profile Next we need a SPICE model for the transistor and to connect the model to the actual transistor. MOS_models should be in a plain text file and look something like this * PSpice Model Razavi Table 2.1 *$.model nmos NMOS + LEVEL=1 VTO=0.7 GAMMA=0.45 PHI=0.9 + NSUB=9E+14 LD=0.08E-6 UO=350 LAMBDA=0.1 + TOX=9E-9 PB=0.9 CJ=0.56E-3 CJSW=0.35E-11 + MJ=0.45 MJSW=0.2 CGDO=0.3E-9 JS=1.0E-8 *$.model pmos PMOS + LEVEL=1 VTO=-0.8 GAMMA=0.4 PHI=0.8 + NSUB=5E+14 LD=0.09E-6 UO=100 LAMBDA=0.2 + TOX=9E-9 PB=0.9 CJ=0.94E-3 CJSW=0.32E-11 + MJ=0.5 MJSW=0.3 CGDO=0.3E-9 JS=0.5E-8 *$ Name this model file Table_2_1.lib (or any other name you like) and copy it to the folder where your design is located (or any other folder you prefer). This model is from Table 2.1 in Razavi, Design of Analog CMOS Integrated Circuits. 4(16)

5 In the tab Libraries in the simulation profile, browse to the model file and add it to the design. The model file Table_2_1.lib is now added to design. You can check the model of the transistor in your schematic by selecting the transistor, right click and choose Edit PSpice Model It is possible to change model parameters with this editor. 5(16)

6 Simulation Now the design is ready to be simulated! PSpice / Run or the Play button. A new window appears (Probe Window) where simulation results can be plotted. Trace / Add Trace... and select I(D) This plot will be generated in the probe window. 8.0mA 6.0mA 4.0mA 2.0mA 0A 0V 0.2V 0.4V 0.6V 0.8V 1.0V 1.2V 1.4V 1.6V ID(M1) V_VGS The plot could be cut and paste to your word processor by using Window / Copy to Clipboard. Use this instead of taking a screen shot to avoid the black background. It saves toner or black ink when you are printing your reports! 6(16)

7 You can make the program plotting this result immediately after simulation if you add a Current marker at the drain pin of the transistor. (PSpice / Markers / Current Into Pin) As a next step, let s make a nested DC sweep. PSpice / New Simulation Profile and name it DC-nested-sweep Give values for Primary sweep: VDS 0V to 3V with 0.01V step (this is one curve) Secondary sweep: VGS 0V to 1.5V with 0.1V step (one curve for each VGS-value) Result in Probe Window: 10mA 8mA 6mA 4mA 2mA 0A 0V 0.5V 1.0V 1.5V 2.0V 2.5V 3.0V ID(M1) V_VDS 7(16)

8 Simulating a simple amplifier Now let s make a simple amplifier with this transistor. From the I D -V GS -plot we select a bias voltage V GS = 1.2 V corresponding to a drain current I D = 2.84 ma. Suppose we want to design an amplifier with supply voltage V DD = 3 V and bias point V GS = 1.2 V, V DS = 1.5 V and I D = 2.84 ma We just need to add an external drain resistance R D = 528 Ω. ( R D VDD VDS = = = 528 Ω) I 2.84m D Before we do this, let s check the Project manager window We have this far created two simulation profiles. We could easily switch between which one to choose as active profile. With the mouse, select, right-click and choose Make Active. We now want to make a new schematic drawing without destroying the old one. Let us manage this in the project window. First, rename the current schematic to a better name describing what kind of schematic it is. Select SCHEMATIC1, right-click and rename it to Transistor The select.\problem_x.dsn, right-click and create a new schematic with the name Amplifier Then in the same way, create a new schematic page. Now the project window looks like this. Transistor is still the root schematic in your design. Make Amplifier the root design (select, right-click...) Usually you are urged to save the design before it could be the root design. Then, from the /Transistor/PAGE1 select the drawing in your schematic and copy and paste it into the Amplifier PAGE1 Now you can use this schematic drawing as a base to create a new one. 8(16)

9 Now, make a drawing of this amplifier (at PAGE1 in schematic Amplifier): Bias point simulation calculates DC currents and voltages in the net Create a new simulation profile with the name Bias-point, mark Output File Options and Calculate small signal gain (TF.) from input net Vin to output voltage V(Out). Sometimes when you create new simulation profiles you could inherit and copy it from an existing profile, but in this case it is easier to create a new one. Run a simulation. This simulation calculates the DC voltage and currents in the net. From bias point information a small signal linear model is created and the small signal transfer function is calculated. After the simulation the DC voltages, current or power can be shown in the schematic. This could be toggled ON or OFF with buttons. 9(16)

10 If you take a peek into the output file PSpice / View Output File you can find this information: **** SMALL-SIGNAL CHARACTERISTICS V(OUT)/V_Vin = E+00 INPUT RESISTANCE AT V_Vin = 1.000E+20 OUTPUT RESISTANCE AT V(OUT) = 4.671E+02 and information about DC voltage and currents for the transistor and the small signal parameters in the bias point **** MOSFETS NAME M_M1 MODEL nmos Bias point (quiscent point) ID 2.84E-03 Drain DC current VGS 1.20E+00 Gate to source DC voltage VDS 1.50E+00 Drain to source DC voltage VBS Body to source DC voltage VTH 7.00E-01 Threshold voltage VDSAT 5.00E-01 VDS saturation voltage = VGS VTH= Lin0/Sat1-1.00E+00 if -1.00E+00 ir -1.00E+00 TAU -1.00E+00 Small signal parameters GM 1.14E-02 Transconductance from gate voltage to drain current GDS 2.47E-04 Output conductance GDS, output resistance r o = 1/GDS GMB 2.69E-03 Transconductance from body voltage to drain current CBD CBS CGSOV CGDOV 1.50E-14 CGBOV CGS 4.35E-14 CGD CGB The small signal voltage gain for this amplifier is 2 1 Av = gm( ro // RD) = // = in agreement with simulated V(OUT)/V_Vin = E+00 In output file you also find information about MOS model parameters. A comment on some values that may confuse you: nmos NMOS LEVEL 1 L E-06 W E-06 These values of L and W in output file is default values. In our case these are not guilty. L and W is specified in schematic drawing 10(16)

11 AC analysis small signal linear model calculations In AC analysis a linear small signal model, valid for the transistor in the bias point, is used to calculate the frequency response of the circuit. Different sources are used for different kind of analysis. Change the VDC source to VAC and specify the DC-voltage and small signal voltage for all sources used to generate signals for AC analysis. Set up a new simulation profile. Do not change the old one, maybe you want to switch back to it later. I call this one Frequency sweep. If you mark Include detailed bias point information... you get the information about bias point DC voltages, current and small signal parameters for the transistor in the output file (same as on previous page). Check in the output file that you have the correct bias point NAME MODEL ID VGS VDS VBS M_M1 nmos 2.84E E E+00 This simulation runs from 100 Hz to 100 MHz. Note that you have to write MEG for M (10 6 ). For historical reasons SPICE does not distinguish between upper and lower case letters. Marking Logarithmic makes the calculated frequencies to be distributed at equidistance in a logarithmic scale. 11(16)

12 Run the simulation! If you want to plot the gain in Probe window: Add / Trace and V(Out)/V(In) Hz 1.0KHz 10KHz 100KHz 1.0MHz 10MHz 100MHz V(OUT)/ V(IN) Frequency As expected the gain amplitude is 5.3. The gain goes down slightly at high frequencies. In this case all capacitances are not included in the transistor model so the simulation is not correct at high frequencies. Always be suspicious and check if the output seems to be right! In Probe window it is possible to do different kind of calculations based on simulated results. There are also different functions available in Probe. For more information, refer to the Analyzing waveforms chapter of the PSpice User s Guide, or the PSpice online help. DB() P() decibel calculation phase calculation, 180 degrees at low frequencies in our simple inverting amplifier SEL>> d DB(V(OUT)/ V(IN)) 179.9d 179.8d 179.7d 100Hz 1.0KHz 10KHz 100KHz 1.0MHz 10MHz 100MHz P(V(OUT)/ V(IN)) Frequency 12(16)

13 Capacitances dependent on area of drain and source If the transistor capacitances at the reverse biased PN-junctions from drain and source to the transistor body (substrate) should be present in the simulation model we have to specify the area and perimeter of drain and source. This is done by giving values to the attributes AD and AS drain and source area in m 2 PD and PS drain and source perimeter in m Assume that the geometry of the transistor is as in figure 2.32a in book and E= 1.5 µm. In our simualtion example W= 50 µm. AD = AS = WE = m 2 = m 2 PD = PS = 2 (W+E) = 2 (50+1.5) 10-6 m = 103 µm RD 528 VOFF = 1.2V VAMPL = 1mV FREQ = 1000Hz AC = 1mV Vin In nmos M1 Out L = 0.5u W = 50u AD = 75p AS = 75p PD = 103u PS = 103u 3Vdc VDD DC = 1.2V 0 From output file CBD CBS CGSOV CGDOV CGBOV CGS CGD CGB E E E E-14 Something to think about: Why are some of the capacitances zero? 12.5 SEL>> d DB(V(OUT)/ V(IN)) 160d 120d 100d 10KHz 100KHz 1.0MHz 10MHz P(V(OUT)/ V(IN)) Frequency 100MHz 1.0GHz 10GHz 13(16)

14 Transient analysis calculates voltages and currents as a function of time In transient analysis the voltages and currents are calculated using large signal models of the transistor, i.e. the transistor equations. The analysis calculates voltages and currents in the circuit as a function of time. Now replace the AC voltage source VAC to voltage source VSIN from library source! This specifies a sinusoidal input voltage. VSIN could also be used for AC-analysis (AC=) and DC analysis (DC=). Those attributes is not visible as default, but by now you now how to make it visible. Once again, create a new simulation profile. I have named it Time sweep this time. If maximum step is not specified, it will be the end time divided by 50 (TSTOP/50). The calculation step is dynamically adjusted to get high accuracy in calculation. Maximum step size is the time step used to save data from simulation. Sometimes, if maximum step size is not specified, the plotted curve is not so smooth. To change the maximum step size to a smaller value will save more data and make the plotted curve smoother. 14(16)

15 Input voltage V V V V V 0s 1ms 2ms 3ms 4ms 5ms 6ms 7ms 8ms 9ms 10ms V(IN) Time Output voltage 1.510V 1.505V 1.500V 1.495V 0s 1ms 2ms 3ms 4ms 5ms 6ms 7ms 8ms 9ms 10ms V(OUT) Time Using markers to read the peak-to-peak value of output voltage gives 10.6 mv. Input voltage peak-topeak value is 2 mv. Vout 10.6m Av = = = 5.3 Vin 2m The output voltage is in opposite phase compared to the input voltage. A v = -5.3 If we increase the amplitude of the input voltage to peak value 0.5 V (VAMPL=0.5V) we can see that the output is heavily distorted and clipping of output voltage occurs. 3.0V 2.5V 2.0V 1.5V 1.0V 0.5V 0V 0s 1ms 2ms 3ms 4ms 5ms 6ms 7ms 8ms 9ms 10ms V(OUT) Time 15(16)

16 Types of simulations Transient analysis Bias point DC sweep AC analysis calculates currents and voltages as a function of time. This analysis use large signal models, i.e. transistor transfer equations. calculates DC operating point calculates DC values when one of the DC sources is changing its values. Sweep could be nested, that means that one DC sweep could include sweep of another source. calculates small signals as a function of frequency. This analysis use a linear small signal model. Note that different sources are specified for DC, transient and AC analysis. Sources used for transient analysis like VSIN could be used also for DC and AC analysis if the corresponding attributes is given values. Some hints: SPICE makes no distinction between capital and lower case letters, use MEG for meg, M means milli. Values and prefix should be typed without spaces. For example: 10u not 10 u DC voltages (or current) can be shown in schematic, press button V in Capture schematic window. Voltage level markers (or current) could be used in Capture to show voltage immediately after simulation in output display. Sometimes you could get an error message ERROR -- Node xxx is floating, e.g. if you have two capacitors in series the program cannot solve for the DC voltage at the connection point. You can trick the program to calculate DC voltage if you put a large resistor like 1 G to ground or in parallel to one capacitor. In output display (Probe window): A common problem is that when you change the circuit and resimulate it you want the same trace expression as in last plot after a new simulation. You don t need to type in the same expression, just restore the expression Windows / Display Control... LAST SESSION Restore Copy to Word or other word processor program: In capture, just select the circuit you want to copy and use cut and paste to Word. In output window (Probe windows) Window / Copy to Clipbord and paste the picture in Word. 16(16)

Lab 1: Introduction to PSpice

Lab 1: Introduction to PSpice Lab 1: Introduction to PSpice Objectives A primary purpose of this lab is for you to become familiar with the use of PSpice and to learn to use it to assist you in the analysis of circuits. The software

More information

EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1

EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1 EE 242 EXPERIMENT 5: COMPUTER SIMULATION OF THREE-PHASE CIRCUITS USING PSPICE SCHEMATICS 1 Objective: To build, simulate, and analyze three-phase circuits using OrCAD Capture Pspice Schematics under balanced

More information

Notes about Small Signal Model. for EE 40 Intro to Microelectronic Circuits

Notes about Small Signal Model. for EE 40 Intro to Microelectronic Circuits Notes about Small Signal Model for EE 40 Intro to Microelectronic Circuits 1. Model the MOSFET Transistor For a MOSFET transistor, there are NMOS and PMOS. The examples shown here would be for NMOS. Figure

More information

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS

LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS LAB 7 MOSFET CHARACTERISTICS AND APPLICATIONS Objective In this experiment you will study the i-v characteristics of an MOS transistor. You will use the MOSFET as a variable resistor and as a switch. BACKGROUND

More information

SPICE MOSFET Declaration

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

More information

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment.

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment. Op-Amp Simulation EE/CS 5720/6720 Read Chapter 5 in Johns & Martin before you begin this assignment. This assignment will take you through the simulation and basic characterization of a simple operational

More information

PSPICE TUTORIAL (BASIC)

PSPICE TUTORIAL (BASIC) Department of Electrical & Computer Engineering PSPICE TUTORIAL (BASIC) Professor: Dr. Subbarao V. Wunnava Teaching Assistant: Rafael Romero COURTESY: ED LULE/ BORIS LINO/ORCAD Updated: Spring.2006, 07

More information

Lecture 060 Push-Pull Output Stages (1/11/04) Page 060-1. ECE 6412 - Analog Integrated Circuits and Systems II P.E. Allen - 2002

Lecture 060 Push-Pull Output Stages (1/11/04) Page 060-1. ECE 6412 - Analog Integrated Circuits and Systems II P.E. Allen - 2002 Lecture 060 PushPull Output Stages (1/11/04) Page 0601 LECTURE 060 PUSHPULL OUTPUT STAGES (READING: GHLM 362384, AH 226229) Objective The objective of this presentation is: Show how to design stages that

More information

COMMON-SOURCE JFET AMPLIFIER

COMMON-SOURCE JFET AMPLIFIER EXPERIMENT 04 Objectives: Theory: 1. To evaluate the common-source amplifier using the small signal equivalent model. 2. To learn what effects the voltage gain. A self-biased n-channel JFET with an AC

More information

Small Signal Analysis of a PMOS transistor Consider the following PMOS transistor to be in saturation. Then, 1 2

Small Signal Analysis of a PMOS transistor Consider the following PMOS transistor to be in saturation. Then, 1 2 Small Signal Analysis of a PMOS transistor Consider the following PMOS transistor to be in saturation. Then, 1 I SD = µ pcox( VSG Vtp)^2(1 + VSDλ) 2 From this equation it is evident that I SD is a function

More information

Transmission Gate Characteristics

Transmission Gate Characteristics Transmission Gate Characteristics enb in outp (6/2) (6/2) outn 1G out en Figure 1. Transmission Gate Circuit for Simulation. The transmissionn gate is on when en=5v and enb=0v, assuming the bulk of PMOS

More information

Lecture 250 Measurement and Simulation of Op amps (3/28/10) Page 250-1

Lecture 250 Measurement and Simulation of Op amps (3/28/10) Page 250-1 Lecture 5 Measurement and Simulation of Op amps (/8/) Page 5 LECTURE 5 SIMULATION AND MEASUREMENT OF OP AMPS LECTURE ORGANIZATION Outline Introduction Open Loop Gain CMRR and PSRR A general method of measuring

More information

Laboratory 2. Exercise 2. Exercise 2. PCB Design

Laboratory 2. Exercise 2. Exercise 2. PCB Design Exercise 2. PCB Design Aim of the measurement Introducing to the PCB design Creating a schematic of an analog circuit, making simulations on it and designing a Printed circuit board for it. Keywords Printed

More information

University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits

University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits LTSpice LTSpice is a free circuit simulator based on Berkeley

More information

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors.

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors. LM 358 Op Amp S k i l l L e v e l : I n t e r m e d i a t e OVERVIEW The LM 358 is a duel single supply operational amplifier. As it is a single supply it eliminates the need for a duel power supply, thus

More information

MATERIALS. Multisim screen shots sent to TA.

MATERIALS. Multisim screen shots sent to TA. Page 1/8 Revision 0 9-Jun-10 OBJECTIVES Learn new Multisim components and instruments. Conduct a Multisim transient analysis. Gain proficiency in the function generator and oscilloscope. MATERIALS Multisim

More information

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER LABORATORY 2 THE DIFFERENTIAL AMPLIFIER OBJECTIVES 1. To understand how to amplify weak (small) signals in the presence of noise. 1. To understand how a differential amplifier rejects noise and common

More information

Pspice Tutorial. Class: Power Electronic 2 (EE563) By Colorado State University Student Minh Anh Nguyen

Pspice Tutorial. Class: Power Electronic 2 (EE563) By Colorado State University Student Minh Anh Nguyen Pspice Tutorial Class: Power Electronic 2 (EE563) By Colorado State University Student Minh Anh Nguyen Five years ago, during my Circuit Theory class, professor Gary Robinson had introduced and applied

More information

Lab #9: AC Steady State Analysis

Lab #9: AC Steady State Analysis Theory & Introduction Lab #9: AC Steady State Analysis Goals for Lab #9 The main goal for lab 9 is to make the students familar with AC steady state analysis, db scale and the NI ELVIS frequency analyzer.

More information

BJT Ebers-Moll Model and SPICE MOSFET model

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

More information

Common-Emitter Amplifier

Common-Emitter Amplifier Common-Emitter Amplifier A. Before We Start As the title of this lab says, this lab is about designing a Common-Emitter Amplifier, and this in this stage of the lab course is premature, in my opinion,

More information

ETIN25 Analogue IC Design. Laboratory Manual Lab 1

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

More information

OrCAD Capture with PSpice and Allegro DE CIS with AMS Simulator. Describes how to create a PSpice Archive File with Capture

OrCAD Capture with PSpice and Allegro DE CIS with AMS Simulator. Describes how to create a PSpice Archive File with Capture Title: Product: Summary: Creating a Project Archive OrCAD Capture with PSpice and Allegro DE CIS with AMS Simulator Describes how to create a PSpice Archive File with Capture Author/Date: Wei Ling / 03.08.2009

More information

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor)

Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Experiment #11: LRC Circuit (Power Amplifier, Voltage Sensor) Concept: circuits Time: 30 m SW Interface: 750 Windows file: RLC.SWS EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage

More information

Introduction to OrCAD Capture and PSpice

Introduction to OrCAD Capture and PSpice Introduction to OrCAD Capture and PSpice Professor John H. Davies September 18, 2008 Abstract This handout explains how to get started with Cadence OrCAD to draw a circuit (schematic capture) and simulate

More information

CMOS COMPARATOR. 1. Comparator Design Specifications. Figure 1. Comparator Transfer Characteristics.

CMOS COMPARATOR. 1. Comparator Design Specifications. Figure 1. Comparator Transfer Characteristics. CMOS COMARATOR. Comparator Design Specifications o OH ( in+ - in- ) OL (a) OH L H ( in+ - in- ) OL (b) OS OH L H ( in+ - in- ) OL (c) Figure. Comparator Transfer Characteristics. A comparator is a circuit

More information

Laboratory 4: Feedback and Compensation

Laboratory 4: Feedback and Compensation Laboratory 4: Feedback and Compensation To be performed during Week 9 (Oct. 20-24) and Week 10 (Oct. 27-31) Due Week 11 (Nov. 3-7) 1 Pre-Lab This Pre-Lab should be completed before attending your regular

More information

1Meg. 11.A. Resistive Circuit Nodal Analysis

1Meg. 11.A. Resistive Circuit Nodal Analysis 11. Creating and Using Netlists PART 11 Creating and Using Netlists For this entire text, we have created circuits schematically and then run simulations. Behind the scenes, Capture generates a netlist

More information

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

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

More information

3. On the top menu bar, click on File > New > Project as shown in Fig. 2 below: Figure 2 Window for Orcad Capture CIS

3. On the top menu bar, click on File > New > Project as shown in Fig. 2 below: Figure 2 Window for Orcad Capture CIS Department of Electrical Engineering University of North Texas Denton, TX. 76207 EENG 2920 Quickstart PSpice Tutorial Tutorial Prepared by Oluwayomi Adamo 1. To run the PSpice program, click on Start >

More information

Digital to Analog Converter. Raghu Tumati

Digital to Analog Converter. Raghu Tumati Digital to Analog Converter Raghu Tumati May 11, 2006 Contents 1) Introduction............................... 3 2) DAC types................................... 4 3) DAC Presented.............................

More information

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

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

More information

Electrical Resonance

Electrical Resonance Electrical Resonance (R-L-C series circuit) APPARATUS 1. R-L-C Circuit board 2. Signal generator 3. Oscilloscope Tektronix TDS1002 with two sets of leads (see Introduction to the Oscilloscope ) INTRODUCTION

More information

Homework Assignment 03

Homework Assignment 03 Question 1 (2 points each unless noted otherwise) Homework Assignment 03 1. A 9-V dc power supply generates 10 W in a resistor. What peak-to-peak amplitude should an ac source have to generate the same

More information

Copyright 2011 Linear Technology. All rights reserved.

Copyright 2011 Linear Technology. All rights reserved. Copyright. All rights reserved. LTspice IV Getting Started Guide 2 Benefits of Using LTspice IV Stable SPICE circuit simulation with Unlimited number of nodes Schematic/symbol editor Waveform viewer Library

More information

See Horenstein 4.3 and 4.4

See Horenstein 4.3 and 4.4 EE 462: Laboratory # 4 DC Power Supply Circuits Using Diodes by Drs. A.V. Radun and K.D. Donohue (2/14/07) Department of Electrical and Computer Engineering University of Kentucky Lexington, KY 40506 Updated

More information

Bipolar Transistor Amplifiers

Bipolar Transistor Amplifiers Physics 3330 Experiment #7 Fall 2005 Bipolar Transistor Amplifiers Purpose The aim of this experiment is to construct a bipolar transistor amplifier with a voltage gain of minus 25. The amplifier must

More information

IRF150 [REF:MIL-PRF-19500/543] 100V, N-CHANNEL. Absolute Maximum Ratings

IRF150 [REF:MIL-PRF-19500/543] 100V, N-CHANNEL. Absolute Maximum Ratings PD - 90337G REPETITIVE AVALANCHE AND dv/dt RATED HEXFET TRANSISTORS THRU-HOLE (TO-204AA/AE) Product Summary Part Number BVDSS RDS(on) ID IRF150 100V 0.055Ω 38A IRF150 JANTX2N6764 JANTXV2N6764 [REF:MIL-PRF-19500/543]

More information

Transistor Amplifiers

Transistor Amplifiers Physics 3330 Experiment #7 Fall 1999 Transistor Amplifiers Purpose The aim of this experiment is to develop a bipolar transistor amplifier with a voltage gain of minus 25. The amplifier must accept input

More information

SIMULATIONS OF PARALLEL RESONANT CIRCUIT POWER ELECTRONICS COLORADO STATE UNIVERSITY

SIMULATIONS OF PARALLEL RESONANT CIRCUIT POWER ELECTRONICS COLORADO STATE UNIVERSITY SIMULATIONS OF PARALLEL RESONANT CIRCUIT POWER ELECTRONICS COLORADO STATE UNIVERSITY Page 1 of 25 PURPOSE: The purpose of this lab is to simulate the LCC circuit using MATLAB and ORCAD Capture CIS to better

More information

Selected Filter Circuits Dr. Lynn Fuller

Selected Filter Circuits Dr. Lynn Fuller ROCHESTER INSTITUTE OF TECHNOLOGY MICROELECTRONIC ENGINEERING Selected Filter Circuits Dr. Lynn Fuller Webpage: http://people.rit.edu/lffeee 82 Lomb Memorial Drive Rochester, NY 146235604 Tel (585) 4752035

More information

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences

UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences Jan M. Rabaey Homework #1: Circuit Simulation EECS 141 Due Friday, January 30, 5pm, box in 240

More information

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER 2014 Amplifier - 1 FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER The objectives of this experiment are: To understand the concept of HI-FI audio equipment To generate a frequency response curve for an audio

More information

Frequency Response of Filters

Frequency Response of Filters School of Engineering Department of Electrical and Computer Engineering 332:224 Principles of Electrical Engineering II Laboratory Experiment 2 Frequency Response of Filters 1 Introduction Objectives To

More information

ε: Voltage output of Signal Generator (also called the Source voltage or Applied

ε: Voltage output of Signal Generator (also called the Source voltage or Applied Experiment #10: LR & RC Circuits Frequency Response EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage Sensor graph paper (optional) (3) Patch Cords Decade resistor, capacitor, and

More information

Introduction to LTspice IV Workshop

Introduction to LTspice IV Workshop Introduction to LTspice IV Workshop Presented by: Steve Knudtsen FAE Linear Technology sknudtsen@linear.com Copyright 2009 Linear Technology. All rights reserved. Why Use LTspice? Stable SPICE circuit

More information

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

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

More information

Diode Circuits. Operating in the Reverse Breakdown region. (Zener Diode)

Diode Circuits. Operating in the Reverse Breakdown region. (Zener Diode) Diode Circuits Operating in the Reverse Breakdown region. (Zener Diode) In may applications, operation in the reverse breakdown region is highly desirable. The reverse breakdown voltage is relatively insensitive

More information

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b

DIODE CIRCUITS LABORATORY. Fig. 8.1a Fig 8.1b DIODE CIRCUITS LABORATORY A solid state diode consists of a junction of either dissimilar semiconductors (pn junction diode) or a metal and a semiconductor (Schottky barrier diode). Regardless of the type,

More information

CHAPTER 2 POWER AMPLIFIER

CHAPTER 2 POWER AMPLIFIER CHATER 2 OWER AMLFER 2.0 ntroduction The main characteristics of an amplifier are Linearity, efficiency, output power, and signal gain. n general, there is a trade off between these characteristics. For

More information

Lecture 30: Biasing MOSFET Amplifiers. MOSFET Current Mirrors.

Lecture 30: Biasing MOSFET Amplifiers. MOSFET Current Mirrors. Whites, EE 320 Lecture 30 Page 1 of 8 Lecture 30: Biasing MOSFET Amplifiers. MOSFET Current Mirrors. There are two different environments in which MOSFET amplifiers are found, (1) discrete circuits and

More information

Inductors in AC Circuits

Inductors in AC Circuits Inductors in AC Circuits Name Section Resistors, inductors, and capacitors all have the effect of modifying the size of the current in an AC circuit and the time at which the current reaches its maximum

More information

Lab 7: Operational Amplifiers Part I

Lab 7: Operational Amplifiers Part I Lab 7: Operational Amplifiers Part I Objectives The objective of this lab is to study operational amplifier (op amp) and its applications. We will be simulating and building some basic op amp circuits,

More information

Rectifier circuits & DC power supplies

Rectifier circuits & DC power supplies Rectifier circuits & DC power supplies Goal: Generate the DC voltages needed for most electronics starting with the AC power that comes through the power line? 120 V RMS f = 60 Hz T = 1667 ms) = )sin How

More information

Chapter 10 Advanced CMOS Circuits

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

More information

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

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

More information

The 2N3393 Bipolar Junction Transistor

The 2N3393 Bipolar Junction Transistor The 2N3393 Bipolar Junction Transistor Common-Emitter Amplifier Aaron Prust Abstract The bipolar junction transistor (BJT) is a non-linear electronic device which can be used for amplification and switching.

More information

CHAPTER 10 Fundamentals of the Metal Oxide Semiconductor Field Effect Transistor

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

More information

Experiment 2 Diode Applications: Rectifiers

Experiment 2 Diode Applications: Rectifiers ECE 3550 - Practicum Fall 2007 Experiment 2 Diode Applications: Rectifiers Objectives 1. To investigate the characteristics of half-wave and full-wave rectifier circuits. 2. To recognize the usefulness

More information

Biasing in MOSFET Amplifiers

Biasing in MOSFET Amplifiers Biasing in MOSFET Amplifiers Biasing: Creating the circuit to establish the desired DC oltages and currents for the operation of the amplifier Four common ways:. Biasing by fixing GS. Biasing by fixing

More information

MOS Transistors as Switches

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

More information

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

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

More information

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip Pulse Width Modulation (PWM) LED Dimmer Circuit Using a 555 Timer Chip Goals of Experiment Demonstrate the operation of a simple PWM circuit that can be used to adjust the intensity of a green LED by varying

More information

Title : Analog Circuit for Sound Localization Applications

Title : Analog Circuit for Sound Localization Applications Title : Analog Circuit for Sound Localization Applications Author s Name : Saurabh Kumar Tiwary Brett Diamond Andrea Okerholm Contact Author : Saurabh Kumar Tiwary A-51 Amberson Plaza 5030 Center Avenue

More information

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

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

More information

Series AMLDL-Z Up to 1000mA LED Driver

Series AMLDL-Z Up to 1000mA LED Driver FEATURES: Click on Series name for product info on aimtec.com Series Up to ma LED Driver Models Single output Model Input Voltage (V) Step Down DC/DC LED driver Operating Temperature range 4ºC to 85ºC

More information

Physics 120 Lab 6: Field Effect Transistors - Ohmic region

Physics 120 Lab 6: Field Effect Transistors - Ohmic region Physics 120 Lab 6: Field Effect Transistors - Ohmic region The FET can be used in two extreme ways. One is as a voltage controlled resistance, in the so called "Ohmic" region, for which V DS < V GS - V

More information

200V, N-CHANNEL. Absolute Maximum Ratings. Features: www.irf.com 1 PD - 90370

200V, N-CHANNEL. Absolute Maximum Ratings. Features: www.irf.com 1 PD - 90370 PD - 90370 REPETITIVE AVALANCHE AND dv/dt RATED HEXFET TRANSISTORS THRU-HOLE (TO-204AA/AE) IRF240 200V, N-CHANNEL Product Summary Part Number BVDSS RDS(on) ID IRF240 200V 0.18Ω 18A The HEXFET technology

More information

Integrated Circuits & Systems

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

More information

Chapter 3. Diodes and Applications. Introduction [5], [6]

Chapter 3. Diodes and Applications. Introduction [5], [6] Chapter 3 Diodes and Applications Introduction [5], [6] Diode is the most basic of semiconductor device. It should be noted that the term of diode refers to the basic p-n junction diode. All other diode

More information

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

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

More information

= V peak 2 = 0.707V peak

= V peak 2 = 0.707V peak BASIC ELECTRONICS - RECTIFICATION AND FILTERING PURPOSE Suppose that you wanted to build a simple DC electronic power supply, which operated off of an AC input (e.g., something you might plug into a standard

More information

How To Make A Field Effect Transistor (Field Effect Transistor) From Silicon P Channel (Mos) To P Channel Power (Mos) (M2) (Mm2)

How To Make A Field Effect Transistor (Field Effect Transistor) From Silicon P Channel (Mos) To P Channel Power (Mos) (M2) (Mm2) TPC811 TOSHIBA Field Effect Transistor Silicon P Channel MOS Type (U-MOS III) TPC811 Lithium Ion Battery Applications Notebook PC Applications Portable Equipment Applications Unit: mm Small footprint due

More information

Objectives The purpose of this lab is build and analyze Differential amplifiers based on NPN transistors (or NMOS transistors).

Objectives The purpose of this lab is build and analyze Differential amplifiers based on NPN transistors (or NMOS transistors). 1 Lab 03: Differential Amplifiers (BJT) (20 points) NOTE: 1) Please use the basic current mirror from Lab01 for the second part of the lab (Fig. 3). 2) You can use the same chip as the basic current mirror;

More information

Application Note AN-1194

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

More information

Fully Differential CMOS Amplifier

Fully Differential CMOS Amplifier ECE 511 Analog Electronics Term Project Fully Differential CMOS Amplifier Saket Vora 6 December 2006 Dr. Kevin Gard NC State University 1 Introduction In this project, a fully differential CMOS operational

More information

Lab 3 Rectifier Circuits

Lab 3 Rectifier Circuits ECET 242 Electronic Circuits Lab 3 Rectifier Circuits Page 1 of 5 Name: Objective: Students successfully completing this lab exercise will accomplish the following objectives: 1. Learn how to construct

More information

Lab 5 Operational Amplifiers

Lab 5 Operational Amplifiers Lab 5 Operational Amplifiers By: Gary A. Ybarra Christopher E. Cramer Duke University Department of Electrical and Computer Engineering Durham, NC. Purpose The purpose of this lab is to examine the properties

More information

RF Power LDMOS Transistors Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors Enhancement--Mode Lateral MOSFETs Freescale Semiconductor Technical Data RF Power LDMOS Transistors Enhancement--Mode Lateral MOSFETs These 90 W RF power LDMOS transistors are designed for wideband RF power amplifiers covering the frequency

More information

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

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

More information

N-channel enhancement mode TrenchMOS transistor

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

More information

RC Circuits and The Oscilloscope Physics Lab X

RC Circuits and The Oscilloscope Physics Lab X Objective RC Circuits and The Oscilloscope Physics Lab X In this series of experiments, the time constant of an RC circuit will be measured experimentally and compared with the theoretical expression for

More information

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

UNIVERSITY OF CALIFORNIA, BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences UNIVERSITY OF CALIFORNIA, BERKELEY College of Engineering Department of Electrical Engineering and Computer Sciences Elad Alon Homework #4 Solutions EECS141 PROBLEM 1: Shoot-Through Current In this problem,

More information

Lecture 22: Class C Power Amplifiers

Lecture 22: Class C Power Amplifiers Whites, EE 322 Lecture 22 Page 1 of 13 Lecture 22: lass Power Amplifiers We discovered in Lecture 18 (Section 9.2) that the maximum efficiency of lass A amplifiers is 25% with a resistive load and 50%

More information

SD4840/4841/4842/4843/4844

SD4840/4841/4842/4843/4844 CURRENT MODE PWM CONTROLLER WITH BUILT-IN HIGH VOLTAGE MOSFET DESCRIPTION SD4840/4841/4842/4843/4844 is a current mode PWM controller with low standby power and low start current for power switch. In standby

More information

Depletion-Mode Power MOSFETs and Applications Abdus Sattar, IXYS Corporation

Depletion-Mode Power MOSFETs and Applications Abdus Sattar, IXYS Corporation epletion-mode Power MOSFETs and Applications Abdus Sattar, XYS Corporation Applications like constant current sources, solid-state relays, telecom switches and high voltage C lines in power systems require

More information

28V, 2A Buck Constant Current Switching Regulator for White LED

28V, 2A Buck Constant Current Switching Regulator for White LED 28V, 2A Buck Constant Current Switching Regulator for White LED FP7102 General Description The FP7102 is a PWM control buck converter designed to provide a simple, high efficiency solution for driving

More information

WHY DIFFERENTIAL? instruments connected to the circuit under test and results in V COMMON.

WHY DIFFERENTIAL? instruments connected to the circuit under test and results in V COMMON. WHY DIFFERENTIAL? Voltage, The Difference Whether aware of it or not, a person using an oscilloscope to make any voltage measurement is actually making a differential voltage measurement. By definition,

More information

BJT AC Analysis 1 of 38. The r e Transistor model. Remind Q-poiint re = 26mv/IE

BJT AC Analysis 1 of 38. The r e Transistor model. Remind Q-poiint re = 26mv/IE BJT AC Analysis 1 of 38 The r e Transistor model Remind Q-poiint re = 26mv/IE BJT AC Analysis 2 of 38 Three amplifier configurations, Common Emitter Common Collector (Emitter Follower) Common Base BJT

More information

Use and Application of Output Limiting Amplifiers (HFA1115, HFA1130, HFA1135)

Use and Application of Output Limiting Amplifiers (HFA1115, HFA1130, HFA1135) Use and Application of Output Limiting Amplifiers (HFA111, HFA110, HFA11) Application Note November 1996 AN96 Introduction Amplifiers with internal voltage clamps, also known as limiting amplifiers, have

More information

CHAPTER 10 OPERATIONAL-AMPLIFIER CIRCUITS

CHAPTER 10 OPERATIONAL-AMPLIFIER CIRCUITS CHAPTER 10 OPERATIONAL-AMPLIFIER CIRCUITS Chapter Outline 10.1 The Two-Stage CMOS Op Amp 10.2 The Folded-Cascode CMOS Op Amp 10.3 The 741 Op-Amp Circuit 10.4 DC Analysis of the 741 10.5 Small-Signal Analysis

More information

RFG70N06, RFP70N06, RF1S70N06, RF1S70N06SM

RFG70N06, RFP70N06, RF1S70N06, RF1S70N06SM A M A A December 995 SEMICONDUCTOR RFG7N6, RFP7N6, RFS7N6, RFS7N6SM 7A, 6V, Avalanche Rated, N-Channel Enhancement-Mode Power MOSFETs Features 7A, 6V r DS(on) =.4Ω Temperature Compensated PSPICE Model

More information

Lab Report No.1 // Diodes: A Regulated DC Power Supply Omar X. Avelar Omar de la Mora Diego I. Romero

Lab Report No.1 // Diodes: A Regulated DC Power Supply Omar X. Avelar Omar de la Mora Diego I. Romero Instituto Tecnológico y de Estudios Superiores de Occidente (ITESO) Periférico Sur Manuel Gómez Morín 8585, Tlaquepaque, Jalisco, México, C.P. 45090 Analog Electronic Devices (ESI038 / SE047) Dr. Esteban

More information

ENGR-4300 Electronic Instrumentation Quiz 4 Spring 2011 Name Section

ENGR-4300 Electronic Instrumentation Quiz 4 Spring 2011 Name Section ENGR-4300 Electronic Instrumentation Quiz 4 Spring 2011 Name Section Question I (20 points) Question II (20 points) Question III (20 points) Question IV (20 points) Question V (20 points) Total (100 points)

More information

OPERATIONAL AMPLIFIERS

OPERATIONAL AMPLIFIERS INTRODUCTION OPERATIONAL AMPLIFIERS The student will be introduced to the application and analysis of operational amplifiers in this laboratory experiment. The student will apply circuit analysis techniques

More information

Nyquist data converter fundamentals Tuesday, February 8th, 9:15 11:35

Nyquist data converter fundamentals Tuesday, February 8th, 9:15 11:35 Sampling switches, charge injection, Nyquist data converter fundamentals Tuesday, February 8th, 9:15 11:35 Snorre Aunet (sa@ifi.uio.no) Nanoelectronics group Department of Informatics University of Oslo

More information

Circuit Simulation: Here are some of ADS analysis:

Circuit Simulation: Here are some of ADS analysis: Advanced Design System (ADS) Tutorial: ADS is a simulator like spice, cadence. But it focuses on the RF and microwave design, so most of its devices on the library are microwave devices. Circuit Simulation:

More information

Lecture 24. Inductance and Switching Power Supplies (how your solar charger voltage converter works)

Lecture 24. Inductance and Switching Power Supplies (how your solar charger voltage converter works) Lecture 24 Inductance and Switching Power Supplies (how your solar charger voltage converter works) Copyright 2014 by Mark Horowitz 1 Roadmap: How Does This Work? 2 Processor Board 3 More Detailed Roadmap

More information

Document Contents Introduction Layout Extraction with Parasitic Capacitances Timing Analysis DC Analysis

Document Contents Introduction Layout Extraction with Parasitic Capacitances Timing Analysis DC Analysis Cadence Tutorial C: Simulating DC and Timing Characteristics Created for the MSU VLSI program by Professor A. Mason and the AMSaC lab group rev S06 (convert to spectre simulator) Document Contents Introduction

More information

Features. Description. Table 1. Device summary. Order code Marking Package Packing. STP110N8F6 110N8F6 TO-220 Tube

Features. Description. Table 1. Device summary. Order code Marking Package Packing. STP110N8F6 110N8F6 TO-220 Tube N-channel 80 V, 0.0056 Ω typ.,110 A, STripFET F6 Power MOSFET in a TO-220 package Features Datasheet - production data Order code V DS R DS(on)max I D P TOT TAB STP110N8F6 80 V 0.0065 Ω 110 A 200 W TO-220

More information