IC-CAP From Waferscanning to PlotOptimizer - Verilog-A Support. Slide 1

Size: px
Start display at page:

Download "IC-CAP From Waferscanning to PlotOptimizer - Verilog-A Support. Slide 1"

Transcription

1 Slide 1 MOS-AK Meeting May 2004, Stuttgart IC-CAP From Waferscanning to PlotOptimizer - Verilog-A Support Franz_Sischka@agilent.com 1 This poster presents some of the new features available in IC-CAP 2004, focussing on the requirements of MOS modeling engineers.

2 Slide 2 Scan the Wafer 2 Applying GUIs (customizable Graphical User Interface), the user can setup any kind of window with any IC-CAP functionality behind it. In the example above, 24 MOS transistors are specified with respect to their name, L and W info, switching matrix connections and subsite position. The info can be loaded and saved to an ASCII file. Due to the flexibility, other user interface scenarios are definable as well. After this info has been specified, the wafer prober is triggered by IC-CAP and steps all dies on the wafer. The measurement result is saved in a single ASCII data file (all devices of all dies/subsites, at all temperatures). An alternative possibility is to save each device, at each temperature, in individual ASCII data files.

3 Slide 3 Specify the Modeling Targets 3 After the measurement files have been saved, individual sub-info can be loaded back for device modeling. In the customizable user interface above, the different measurements (plots) of the different devices can be selected, as well as the merging plots for Isat and VTH vs. Length and VTH vs. Width.

4 Slide 4 Specify the Model Parameters for Optimization 4 The new PlotOptimizer interface lets the user specify the parameters to be optimized or tuned for the previously selected measurement plots. IC-CAP 2004 offers now 14 different optimizer algorithms, each with absolute or relative targets.

5 Slide 5 Start the Optimization or tune manually 5 In the plots, boxes can be specified to shrink the optimization to certain data subranges. Several boxes per plot can be specified. The optimizer can optimize an unlimited number of idvd, idvg, VTH vs.l, VTH vs.w, Idsat, CV, S-parameter data etc. at the same time. The corresponding simulation calls are automatically performed by IC-CAP.

6 Slide 6 IC-CAP and Verilog-A Linking IC-CAP2004 with ADS2003C, Verilog-A model syntax is supported, and thus, it will be shown how this works in IC-CAP. Shipping open Verilog-A code with ADS2003C : angelov.va diode.va bsim3.va Gummel-Poon.va A-TFT.va curtice.va bsim4.va mextram.va P-TFT.va mesfet.va bsimsoi.va hicum_0.va Parker-Skellern.va mos11.va hicum_2.va tom1.va mos9.va vbic.va tom3.va hisim.va ekv (only compiled) jfet.va juncap.va Note: IC-CAP 2004 also supports Verilog-A for the other simulators running under IC-CAP 6 IC-CAP 2004 supports Verilog-A models. The above example is for ADS2003C as the simulator under IC-CAP. Slide 7 IC-CAP & ADS & Verilog-A Verilog-A model was modified since last simulation IC-CAP Verilog-A ASCII Tiburon-DA compiler Tiburon ADS Verilog-A model was not modified since last simulation compiled Verilog-A cache 7 When a Verilog-A model is simulated the first time, the Tiburon-DA compiler in ADS ( checks if the actual ASCII version is more recent than what is saved in the compiled Verilog cache directory. If this is true, a compilation is called in realtime and ADS simulates with the new compiled verilog-a code. If the ASCII is older than what is stored in the cache directory, no re-compilation is required.

7 Slide 8 1. Creating a simple ADS Verilog-A text file `include "disciplines.vams" module diode_va(anode,cathode); electrical anode,cathode; parameter real Is=1e-14 from [0:inf];... real Vd, Id, Qd; analog begin v Vd = V(anode,cathode); i = I * (en* vt S 1) Id = I(anode); // DC diode I(anode,cathode) <+ Is*(exp(Vd/(N*$vt)) - 1); // capacitance (junction and diffusion) Qd = Tt*Id + Cjo*Vj*(1 - pow((1-vd/vj),(1-m))) / (1-M); I(anode,cathode) <+ ddt(qd); end endmodule qd = TT id vd ( ) ( 1 M) CJO VJ vd qj = M VJ 8 and here's the complete Verilog-A code for the slide above: cut here /* Simple, minimalistic Diode verilog-a demo, w/o temperature, w/o area, w/ noise and w/o reverse breakdown modeling. It is based on the diode example in $ADS_ROOT/veriloga/diode.va, provided by Tiburon-DA. The applied model equations are: DC fwd: id(vd) = Is * (exp( vd / (N * vt)) - 1) DC rev: id(vd) = -Is C(v): Cj(vd) = Cjo / (1 - vd/vj)^-m Cdiff: Cd(vd) = Tt * gd */ // Make reference to verilog-a discipline 'electrical' (nodes) `include "disciplines.vams" module diode_va(anode,cathode); electrical anode,cathode;

8 parameter real Is=1e-14 from [0:inf]; parameter real N=1 from [0:10]; parameter real Cjo=0 from [0:inf]; parameter real M=0.5 from [0.1:1]; parameter real Vj=0.7 from [0.1:10]; parameter real Fc=0.5 from [0.4:0.95]; parameter real Tt=1p from [0:inf]; real Vd, Id, Qd; real f1, f2, f3, fcp; analog begin f1 = (Vj/(1 - M))*(1 - pow((1 - Fc), (1 - M))); f2 = pow((1 - Fc), (1 + M)); f3 = 1 - Fc*(1 + M); fcp = Fc * Vj; Vd = V(anode,cathode); Id = I(anode); // intrinsic diode. if (Vd < 0) I(anode,cathode) <+ - Is; else I(anode,cathode) <+ Is * (exp( Vd / (N * $vt)) - 1); // capacitance (junction and diffusion). if (Vd <= fcp) Qd = Tt * Id + Cjo * Vj * (1 - pow((1 - Vd / Vj), (1 - M))) / (1 - M); else Qd = Tt * Id + Cjo*( f1 + ( 1 / f2 ) * ( f3 * ( Vd - fcp ) + ( 0.5 * M / Vj ) * ( Vd * Vd - fcp * fcp))); I(anode,cathode) <+ ddt(qd); end endmodule

9 Slide 9 define veriloga_diode (A C) 2. Calling the ADS Verilog-A file from IC-CAP ;specify where to find the verilog-a code #load "veriloga", "C:\tmp\diode.va" ;specify the circuit R:RS A Ai R=1m DMain:diode Ai C ; call the verilog-a model by referring ; to its name in the diode.va file model DMain diode_va \ Is = 1E-17 \ N = 1 \ Cjo = 1f \ M =.4 \ Vj =.7 \ Fc =.5 end veriloga_diode except these two specials, the rest is an ordinary ADS netlist!! 9 calling a Verilog-A code from within IC-CAP is as simple as calling a built-in model of a simulator. Slide 10 After that, you can use the Verilog-A for all kinds of simulations see demo_features\6_simulators\2_ads\3_user_def_mdls\3_verilog-a\diode_veriloga.mdl 10

Using Verilog-A in Advanced Design System

Using Verilog-A in Advanced Design System Using Verilog-A in Advanced Design System September 2006 Notice The information contained in this document is subject to change without notice. Agilent Technologies makes no warranty of any kind with regard

More information

Tutorial: How to (and How NOT to) Write a Compact Model in Verilog-A

Tutorial: How to (and How NOT to) Write a Compact Model in Verilog-A 2004 IEEE Behavioral Modeling and Simulation Conference (BMAS2004) Tutorial: How to (and How NOT to) Write a Compact Model in Verilog-A Geoffrey Coram Analog Devices, Inc. athe World Leader in High Performance

More information

Advanced Design System 2011 September 2011 Using Verilog-A and Verilog-AMS in Advanced Design System

Advanced Design System 2011 September 2011 Using Verilog-A and Verilog-AMS in Advanced Design System Advanced Design System 2011 September 2011 Using Verilog-A and Verilog-AMS in Advanced Design System 1 Agilent Technologies, Inc 2000-2011 5301 Stevens Creek Blvd, Santa Clara, CA 95052 USA No part of

More information

Chapter 1: Measurement and Extraction of BSIM4 Model Parameters

Chapter 1: Measurement and Extraction of BSIM4 Model Parameters 1: Measurement and Extraction of BSIM4 Model Parameters The following section summarizes some aspects of UCB s BSIM4 Model and Agilent s IC-CAP Modeling Package to measure and extract BSIM4 model parameters.

More information

Compact Modeling for RF/Microwave Applications (CMRF 2005)

Compact Modeling for RF/Microwave Applications (CMRF 2005) Presentation Notes of the 2005 Workshop on Compact Modeling for RF/Microwave Applications (CMRF 2005) Santa Barbara, California, USA October 12, 2005 Organized and sponsored by Delft Institute of Microelectronics

More information

Model Builder Program (MBP) Complete Silicon Turnkey Device Modeling Software

Model Builder Program (MBP) Complete Silicon Turnkey Device Modeling Software Model Builder Program (MBP) Complete Silicon Turnkey Device Modeling Software Introduction Model Builder Program (MBP) is a complete modeling solution that integrates SPICE simulation, model parameter

More information

Alfred Sargezi & Zain Ali. AMS Group - San Jose State University ams.sjsu.edu

Alfred Sargezi & Zain Ali. AMS Group - San Jose State University ams.sjsu.edu Cadence Inverter Transistor Sizing Tutorial Cadence Inverter Ocean Introduction Cadence Inverter Corners Tutorial Cadence Inverter VerilogA Tutorial Cadence Inverter Vout vs Vin Tutorial Alfred Sargezi

More information

Agilent 85194K IC-CAP BSIM4 Modeling Package

Agilent 85194K IC-CAP BSIM4 Modeling Package Agilent 85194K IC-CAP BSIM4 Modeling Package Technical Overview The BSIM4 Modeling Package The BSIM4 Modeling Package offers a complete DC-to-RF CMOS modeling toolkit for U.C. Berkeley s BSIM4 model. Developed

More information

SiMKit Release Notes. for SiMKit version 2.5. First Edition. NXP Semiconductors DMS/Tool and Flow Solutions

SiMKit Release Notes. for SiMKit version 2.5. First Edition. NXP Semiconductors DMS/Tool and Flow Solutions SiMKit Release Notes for SiMKit version 2.5 First Edition NXP Semiconductors DMS/Tool and Flow Solutions Eindhoven, April 2007 This document is provided without warranty of any kind, either expressed or

More information

ANALOG MODELING WITH VERILOG-A USING CADENCE TOOLS. Eng. Sherief Fathi

ANALOG MODELING WITH VERILOG-A USING CADENCE TOOLS. Eng. Sherief Fathi ANALOG MODELING WITH VERILOG-A USING CADENCE TOOLS Eng. Sherief Fathi Hardware Description Language (HDL) In electronics, a hardware description language (HDL) is a specialized computer language used to

More information

SiMKit Release Notes. for SiMKit version 2.2. First Edition. Philips ED&T/Analogue Simulation

SiMKit Release Notes. for SiMKit version 2.2. First Edition. Philips ED&T/Analogue Simulation SiMKit Release Notes for SiMKit version 2.2 First Edition Philips ED&T/Analogue Simulation Eindhoven, July 2005 This document is provided without warranty of any kind, either expressed or implied, including,

More information

SmartSpice Analog Circuit Simulator Product Update. Yokohama, June 2004 Workshop

SmartSpice Analog Circuit Simulator Product Update. Yokohama, June 2004 Workshop SmartSpice Analog Circuit Simulator Product Update Yokohama, June 2004 Workshop Agenda SmartSpice Products SmartSpice General Features SmartSpice New GUI SmartSpice New features Supported Models and Modeling

More information

Laurent Lemaitre (F)

Laurent Lemaitre   (F) Laurent Lemaitre www.noovela.com (F) General considerations about compact modeling a need for standardization Introduce compact modeling and SPICE3 kit SPICE3 kit using C language SPICE3 kit using Verilog-AMS

More information

WaferPro Express Key Features What s New in

WaferPro Express Key Features What s New in 2016.04 Key Features What s New in 2016.04 July 2016 Keysight EEsof EDA Agenda and What's New Page 2 Key Features What s New in 2016.04 Key Features and What's New Page 3 Easy Instrument and Probers Connectivity

More information

Aurora. Device Characterization and Parameter Extraction System

Aurora. Device Characterization and Parameter Extraction System SYSTEMS PRODUCTS LOGICAL PRODUCTS PHYSICAL IMPLEMENTATION SIMULATION AND ANALYSIS LIBRARIES TCAD Aurora DFM WorkBench Davinci Medici Raphael Raphael-NES Silicon Early Access TSUPREM-4 Taurus-Device Taurus-Lithography

More information

Utmost III. Device Characterization and Modeling

Utmost III. Device Characterization and Modeling Utmost III Device Characterization and Modeling Utmost III generates accurate, high quality SPICE models for analog, mixed-signal and RF applications. Utmost III is in use worldwide by leading IDMs, foundries

More information

Guidelines for Verilog-A Compact Model Coding

Guidelines for Verilog-A Compact Model Coding Guidelines for Verilog-A Compact Model Coding Gilles DEPEYROT, Frédéric POULLET, Benoît DUMAS DOLPHIN Integration Outline Dolphin EDA Solutions by Dolphin Overview of SMASH Context & Goals Verilog-A for

More information

Use and extraction of compact models for EMI / EMC simulations of power devices

Use and extraction of compact models for EMI / EMC simulations of power devices M. Bellini, ABB Corporate Research, MOS-AK workshop, ESSDERC, Lausanne 2016 Use and extraction of compact models for EMI / EMC simulations of power devices Motivation Motivation Physics of Power Diodes

More information

Compact Model Standardization and Implementation Using Verilog-A

Compact Model Standardization and Implementation Using Verilog-A Compact Model Standardization and Implementation Using Verilog-A Outline Motivation Compact Model Standardization Present, Status and Future Benefits Using Verilog-A Procedures and Tools Spice-LS Paragon

More information

ESD Protection Device Simulation and Design

ESD Protection Device Simulation and Design ESD Protection Device Simulation and Design Introduction Electrostatic Discharge (ESD) is one of the major reliability issues in Integrated Circuits today ESD is a high current (1A) short duration (1ns

More information

Integrated Simulation Solution for Advanced Power Devices

Integrated Simulation Solution for Advanced Power Devices Integrated Simulation Solution for Advanced Power Devices Objectives of this Presenation Presentation of simulation results for non-silicon power device types SiC Based Power Devices GaN Based Power Devices

More information

Microelettronica. J. M. Rabaey, "Digital integrated circuits: a design perspective" EE141 Microelettronica

Microelettronica. J. M. Rabaey, Digital integrated circuits: a design perspective EE141 Microelettronica Microelettronica J. M. Rabaey, "Digital integrated circuits: a design perspective" Introduction Why is designing digital ICs different today than it was before? Will it change in future? The First Computer

More information

NeuroFET Modeling. IC-CAP January 2012 NeuroFET Modeling

NeuroFET Modeling. IC-CAP January 2012 NeuroFET Modeling IC-CAP 201201 January 2012 NeuroFET Modeling 1 Agilent Technologies, Inc 2000-2011 3501 Stevens Creek Blvd, Santa Clara, CA 95052 USA No part of this documentation may be reproduced in any form or by any

More information

Cadence Inverter Transistor Sizing Tutorial Cadence Inverter Ocean Introduction Cadence Inverter Corners Tutorial Cadence Inverter VerilogA Tutorial

Cadence Inverter Transistor Sizing Tutorial Cadence Inverter Ocean Introduction Cadence Inverter Corners Tutorial Cadence Inverter VerilogA Tutorial Cadence Inverter Transistor Sizing Tutorial Cadence Inverter Ocean Introduction Cadence Inverter Corners Tutorial Cadence Inverter VerilogA Tutorial Alfred Sargezi & Zain Ali AMS Group - San Jose State

More information

BSIMCMG model parameter extraction. September, 2011

BSIMCMG model parameter extraction. September, 2011 BSIMCMG model parameter extraction September, 2011 Overview BSIMCMG parameter optimization: environment BSIMCMG model UTMOST IV BSIMCMG parameter optimization sequence Basic flow of MOS model parameter

More information

SmartSpice Verilog-A Interface. Behavioral and Structural Modeling Tool - Device Model Development

SmartSpice Verilog-A Interface. Behavioral and Structural Modeling Tool - Device Model Development SmartSpice Verilog-A Interface Behavioral and Structural Modeling Tool - Device Model Development Verilog-A Models and Features Agenda Overview Design Capability Compact Modeling Verilog-A Inteface - 2

More information

Latch-Up. Parasitic Bipolar Transistors

Latch-Up. Parasitic Bipolar Transistors Latch-Up LATCH-UP CIRCUIT Latch-up is caused by an SCR (Silicon Controlled Rectifier) circuit. Fabrication of CMOS integrated circuits with bulk silicon processing creates a parasitic SCR structure. The

More information

Analog and Telecommunication Electronics

Analog and Telecommunication Electronics Politecnico di Torino Electronic Eng. Master Degree Analog and Telecommunication Electronics F1 - Power devices: diodes» Switches» pn Junction» Diode models» Dynamic behavior» Zener diodes AY 2015-16 26/04/2016-1

More information

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application

AOZ8900. Ultra-Low Capacitance TVS Diode Array PRELIMINARY. Features. General Description. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning. This device

More information

Analog and Telecommunication Electronics

Analog and Telecommunication Electronics Politecnico di Torino - ICT School Analog and Telecommunication Electronics F4 - Actuator driving» Driving BJT switches» Driving MOS-FET» SOA and protection» Smart switches 30/05/2014-1 ATLCE - F4-2011

More information

AOZ8882. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application

AOZ8882. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The AOZ8882 is a transient voltage suppressor array designed to protect high speed data lines such as HDMI, MDDI, USB, SATA, and Gigabit Ethernet

More information

Addressable Test Chip Technology for IC Design and Manufacturing. Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03

Addressable Test Chip Technology for IC Design and Manufacturing. Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03 Addressable Test Chip Technology for IC Design and Manufacturing Dr. David Ouyang CEO, Semitronix Corporation Professor, Zhejiang University 2014/03 IC Design & Manufacturing Trends Both logic and memory

More information

New Verilog A Model Compiler for SPICE 3F5

New Verilog A Model Compiler for SPICE 3F5 New Verilog A Model Compiler for SPICE 3F5 1 Introduction 2 Features 3 Development 4 Examples : 4 1 : Simple R C model 4 2 : Bipolar : HICUM models level 0, level 2.1, level 2.2... 4 3 : Mos : EKV 2.6

More information

Tutorial on getting started in Cadence. Advanced Analog Circuits Spring 2015 Instructor: Prof. Harish Krishnaswamy TA: Jahnavi Sharma

Tutorial on getting started in Cadence. Advanced Analog Circuits Spring 2015 Instructor: Prof. Harish Krishnaswamy TA: Jahnavi Sharma Tutorial on getting started in Cadence Advanced Analog Circuits Spring 2015 Instructor: Prof. Harish Krishnaswamy TA: Jahnavi Sharma Getting Started Start Cadence from the terminal by using the command

More information

Reliability Simulation based on Verilog-A. Marq Kole Behavioral Modelling And Simulation conference

Reliability Simulation based on Verilog-A. Marq Kole Behavioral Modelling And Simulation conference Reliability Simulation based on Verilog-A Marq Kole Behavioral Modelling And Simulation conference September 20, 2007 Outline Device Degradation and Circuit Reliability Reliability Physics Reliability

More information

What s new in IC-CAP 2009?

What s new in IC-CAP 2009? What s new in IC-CAP 2009? Overview of the new features included in the upcoming release September 2009 Device Modeling Marketing Team Agilent EEsof EDA IC-CAP 2009 Release Page 1 Doc Version 1.4 Agenda

More information

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ELECTRICAL & ELECTRONICS ENGINEERING QUESTION BANK EE T34 - Electronic Devices and Circuits II YEAR / III SEMESTER RGCET 1 UNIT-I 1. How

More information

Low Voltage 1.65 V to 3.6 V, Bidirectional Logic Level Translation, Bypass Switch ADG3233

Low Voltage 1.65 V to 3.6 V, Bidirectional Logic Level Translation, Bypass Switch ADG3233 Data Sheet Low Voltage. V to. V, Bidirectional Logic Level Translation, Bypass Switch ADG FEATURES Operates from. V to. V supply rails Bidirectional level translation, unidirectional signal path -lead

More information

Basic Sample and Hold Element. Prof. Paul Hasler Georgia Institute of Technology

Basic Sample and Hold Element. Prof. Paul Hasler Georgia Institute of Technology Basic Sample and Hold Element Prof. Paul Hasler Georgia Institute of Technology Sample and Hold Elements Sample and Hold Elements Amplitude (Hold) (Sample) (Hold) Time Sample and Hold Elements Amplitude

More information

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS PART A

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS PART A RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS 1. Define Electronics. 2. What is meant by forbidden energy gap. 3. Classify

More information

CHAPTER 5. Voltage Regulator

CHAPTER 5. Voltage Regulator CHAPTER 5 Voltage Regulator In your robot, the energy is derived from batteries. Specifically, there are two sets of batteries wired up to act as voltage sources; a 9V battery, and two 1.5V batteries in

More information

Trends and Challenges

Trends and Challenges Trends and Challenges High accuracy is required in characterization, verification & signoff Increasing design complexities: -scale design ( ) using nano-scale technologies ( ) Shrinking design margins

More information

Student Workbook. Mentor Graphics Corporation All rights reserved.

Student Workbook. Mentor Graphics Corporation All rights reserved. Eldo Platform Basic Student Workbook Mentor Graphics Corporation All rights reserved. This document contains information that is trade secret and proprietary to Mentor Graphics Corporation or its licensors

More information

Reversible motor driver

Reversible motor driver Reversible motor driver The BA6289F and BA6417F are reversible-motor drivers, with an output current of 600mA for the former and 1A for the latter. Two logic inputs allow four output modes: forward, reverse,

More information

= 25 C) of Demonstration Amplifier. Parameter 500 MHz 1.0 GHz 1.5 GHz 2.0 GHz 2.5 GHz Units. Small Signal Gain

= 25 C) of Demonstration Amplifier. Parameter 500 MHz 1.0 GHz 1.5 GHz 2.0 GHz 2.5 GHz Units. Small Signal Gain Rev 5.0 May 2015 CGH40090PP 90 W, RF Power GaN HEMT Cree s CGH40090PP is an unmatched, gallium nitride (GaN) high electron mobility transistor (HEMT). The CGH40090PP, operating from a 28 volt rail, offers

More information

EE E6930 Advanced Digital Integrated Circuits. Spring, 2002 Lecture 18. Introduction to Verilog-A/Verilog-AMS

EE E6930 Advanced Digital Integrated Circuits. Spring, 2002 Lecture 18. Introduction to Verilog-A/Verilog-AMS EE E6930 Advanced Digital Integrated Circuits Spring, 2002 Lecture 18. Introduction to Verilog-A/Verilog-AMS References D. Fitzpatrick and I. Miller, Analog Behavior Modeling with the Verilog-A Language,

More information

Simple Emitter and Collector Scaling Approach with VBIC for Low-cost SiGe:C HBT s

Simple Emitter and Collector Scaling Approach with VBIC for Low-cost SiGe:C HBT s Simple Emitter and Collector Scaling Approach with VBIC for Low-cost SiGe:C HBT s René F. Scholz *, B. Senapati*, A. Chakravorty #, D. Knoll *, C.K. Maiti # * IHP, Frankfurt (Oder), Germany # IIT, Kharagpur,

More information

Agilent 1GC GHz Integrated Diode Limiter TC231P Data Sheet

Agilent 1GC GHz Integrated Diode Limiter TC231P Data Sheet Agilent 1GC1-8235 0-20 GHz Integrated Diode Limiter TC231P Data Sheet Features Two Independent Limiters for Single ended or Differential Signals Can be Biased for Adjustable Limit Level and Signal Detection

More information

SiMKit Release Notes. for SiMKit version 2.3. First Edition. Philips ED&T/Analogue Simulation

SiMKit Release Notes. for SiMKit version 2.3. First Edition. Philips ED&T/Analogue Simulation SiMKit Release Notes for SiMKit version 2.3 First Edition Philips ED&T/Analogue Simulation Eindhoven, March 2006 This document is provided without warranty of any kind, either expressed or implied, including,

More information

Getting started. Starting Capture. To start Capture. This chapter describes how to start OrCAD Capture.

Getting started. Starting Capture. To start Capture. This chapter describes how to start OrCAD Capture. Getting started 1 This chapter describes how to start OrCAD Capture. Starting Capture The OrCAD Release 9 installation process puts Capture in the \PROGRAM FILES\ORCAD\CAPTURE folder, and adds Pspice Student

More information

PDK-Based Analog/Mixed-Signal/RF Design Flow 11/17/05

PDK-Based Analog/Mixed-Signal/RF Design Flow 11/17/05 PDK-Based Analog/Mixed-Signal/RF Design Flow 11/17/05 Silvaco s What is a PDK? Which people build, use, and support PDKs? How do analog/mixed-signal/rf engineers use a PDK to design ICs? What is an analog/mixed-signal/rf

More information

Chapter 1: A Quick Tour of ICS Chapter The Setup Editor 26

Chapter 1: A Quick Tour of ICS Chapter The Setup Editor 26 Chapter 1: A Quick Tour of ICS 5 What is ICS SOFTWARE? How ICS Stores Information Test Setups The Test Setup/Project File Relationship Test Setup Applications The Setup Editor Project Files Creating Project

More information

What s new in IC-CAP 2009 Update 1

What s new in IC-CAP 2009 Update 1 What s new in IC-CAP 2009 Update 1 Overview of the new features included in this release March 2010 Device Modeling Marketing Team Agilent EEsof EDA IC-CAP 2009 Update 1 Release Page 1 Doc Version 1.0

More information

SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road QUESTION BANK (DESCRIPTIVE) UNIT I

SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road QUESTION BANK (DESCRIPTIVE) UNIT I QUESTION BANK 2017 SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road 517583 QUESTION BANK (DESCRIPTIVE) Subject with Code : Basic Electronic Devices (16EC401) Year

More information

Low Voltage 1.65 V to 3.6 V, Bidirectional Logic Level Translation, Bypass Switch ADG3233

Low Voltage 1.65 V to 3.6 V, Bidirectional Logic Level Translation, Bypass Switch ADG3233 Low Voltage. V to. V, Bidirectional Logic Level Translation, Bypass Switch FEATURES Operates from. V to. V supply rails Bidirectional level translation, unidirectional signal path -lead SOT- and MSOP packages

More information

Cadence simulation technology for PCB design

Cadence simulation technology for PCB design DATASHEET CADENCE SIMULATION FOR PCB DESIGN On larger designs especially, PCB design teams need fast and reliable simulation to achieve convergence. Cadence simulation technology for PCB design offers

More information

Modeling Power Electronics Components Using SimElectronics and SimPowerSystems Vivek Raju Application Engineer

Modeling Power Electronics Components Using SimElectronics and SimPowerSystems Vivek Raju Application Engineer Modeling Power Electronics Components Using SimElectronics and SimPowerSystems Vivek Raju Application Engineer 2014 The MathWorks, Inc. 1 Key Takeaway Modeling Power Electronics Components Using SimElectronics

More information

AZC002-02N Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact)

AZC002-02N Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact) Features ESD Protect for 2 high-speed I/O channels Provide ESD protection for each channel to IEC 61000-4-2 (ESD) ±15kV (air), ±8kV (contact) IEC 61000-4-4 (EFT) (5/50ns) Level-3, 20A for I/O, 40A for

More information

Device Parameters Extraction Within Silvaco Simulation Software. Dragica Vasileska Arizona State University

Device Parameters Extraction Within Silvaco Simulation Software. Dragica Vasileska Arizona State University Device Parameters Extraction Within Silvaco Simulation Software Dragica Vasileska Arizona State University Device parameter extraction is an important ingredient in the device simulation process as parameters

More information

Digital System Design

Digital System Design Digital System Design Analog time varying signals that can take on any value across a continuous range of voltage, current or other metric Digital signals are modeled with two states, 0 or 1 underneath

More information

TVW MSOP 04 AD0 Engineering Specification

TVW MSOP 04 AD0 Engineering Specification TVW MSOP 4 AD 1 Scope TVW MSOP 4 AD s are TVS arrays designed to protect power/control lines and high-speed signal lines from overvoltage hazard of Electrostatic Discharge (ESD), Electrical Fast Transients

More information

Verilog-A Standardization for Compact Modeling

Verilog-A Standardization for Compact Modeling Verilog-A Standardization for Compact Modeling Marek Mierzwinski Santa Rosa, CA MOS-AK /GSA Workshop December, 2011 Washington, DC Outline A quick history Why Verilog-A has become the language of choice

More information

AZC099-04S 4 IEC (ESD)

AZC099-04S 4 IEC (ESD) Features ESD Protect for 4 high-speed I/O channels Provide ESD protection for each channel to IEC 000-4- (ESD) ±kv (air), ±8kV (contact) IEC 000-4-4 (EFT) (/0ns) Level-3, 0A for I/O, 40A for Power IEC

More information

IEC (EFT) 40A

IEC (EFT) 40A Features ESD Protect for high-speed I/O channels Provide ESD protection for each channel to IEC 61000-4- (ESD) ±1kV (air), ±8kV (contact) IEC 61000-4-4 (EFT) 40A (/0ns) IEC 61000-4- (Lightning) 1A (8/0µs)

More information

Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury

Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury Super E-Line Applications in Automotive Electronics Replacement of Large Packaged Transistors with an Enhanced TO92 Product David Bradbury Car buyers are now demanding greater and greater sophistication

More information

EM MICROELECTRONIC offers ALP018 for MPW service through CMP. ALP018 : Analog Low Power 180nm process, optimized for Analog and Low Voltage Designs

EM MICROELECTRONIC offers ALP018 for MPW service through CMP. ALP018 : Analog Low Power 180nm process, optimized for Analog and Low Voltage Designs EM MICROELECTRONIC offers ALP018 for MPW service through CMP Christian Terrier ALP018 : Analog Low Power 180nm process, optimized for Analog and Low Voltage Designs Creating integrated Circuits since Products

More information

AZC002-04S Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact)

AZC002-04S Low Capacitance ESD Protection Array For High Speed Data Interfaces Features IEC (ESD) ±15kV (air), ±8kV (contact) Features ESD Protect for 4 high-speed I/O channels Provide ESD protection for each channel to IEC 000-4- (ESD) ±kv (air), ±8kV (contact) IEC 000-4-4 (EFT) (/0ns) Level-3, 0A for I/O, 40A for Power IEC

More information

A Unified Environment for Modeling Very Deep Submicron MOS Transistors inside Agilent s IC-CAP

A Unified Environment for Modeling Very Deep Submicron MOS Transistors inside Agilent s IC-CAP A Unified Environment for Modeling Very Deep Submicron MOS Transistors inside Agilent s IC-CAP MIXDES 2002 Wroclaw, 20.-22. June 2002 Dr. Thomas Gneiting*, Prof. Dr.-Ing. Haybatolah Khakzar** * Advanced

More information

Power IC 용 ESD 보호기술. 구용서 ( Yong-Seo Koo ) Electronic Engineering Dankook University, Korea

Power IC 용 ESD 보호기술. 구용서 ( Yong-Seo Koo ) Electronic Engineering Dankook University, Korea Power IC 용 ESD 보호기술 구용서 ( Yong-Seo Koo ) Electronic Engineering Dankook University, Korea yskoo@dankook.ac.kr 031-8005-3625 Outline Introduction Basic Concept of ESD Protection Circuit ESD Technology Issue

More information

Phototriac Coupler for the Industrial Machinery, Consumer Electronics, and SSR Markets FEATURES

Phototriac Coupler for the Industrial Machinery, Consumer Electronics, and SSR Markets FEATURES VDE Pending Phototriac Coupler for the Industrial Machinery, Consumer Electronics, and SSR Markets Phototriac Coupler FEATURES TYPICAL APPLICATIONS ZC Zero-cross circuit. Two types available: Non zero-cross

More information

Parameter Sweep. Description. Setup. Parameters. Modified by on 13-Sep-2017

Parameter Sweep. Description. Setup. Parameters. Modified by on 13-Sep-2017 Parameter Sweep Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Description The Parameter Sweep feature allows you to sweep the value of a device in defined increments, over a specified

More information

UOTFT: Universal Organic TFT Model for Circuit Design

UOTFT: Universal Organic TFT Model for Circuit Design UOTFT: Universal Organic TFT Model for Circuit Design S. Mijalković, D. Green, A. Nejim Silvaco Europe, St Ives, Cambridgeshire, UK A. Rankov, E. Smith, T. Kugler, C. Newsome, J. Halls Cambridge Display

More information

CS250 DISCUSSION #2. Colin Schmidt 9/18/2014 Std. Cell Slides adapted from Ben Keller

CS250 DISCUSSION #2. Colin Schmidt 9/18/2014 Std. Cell Slides adapted from Ben Keller CS250 DISCUSSION #2 Colin Schmidt 9/18/2014 Std. Cell Slides adapted from Ben Keller LAST TIME... Overview of course structure Class tools/unix basics THIS TIME... Synthesis report overview for Lab 2 Lab

More information

Multi-site Probing for Wafer-Level Reliability

Multi-site Probing for Wafer-Level Reliability Multi-site Probing for Wafer-Level Reliability Louis Solis De Ancona 1 Sharad Prasad 2, David Pachura 2 1 Agilent Technologies 2 LSI Logic Corporation s Outline Introduction Multi-Site Probing Challenges

More information

Lecture 4a. CMOS Fabrication, Layout and Simulation. R. Saleh Dept. of ECE University of British Columbia

Lecture 4a. CMOS Fabrication, Layout and Simulation. R. Saleh Dept. of ECE University of British Columbia Lecture 4a CMOS Fabrication, Layout and Simulation R. Saleh Dept. of ECE University of British Columbia res@ece.ubc.ca 1 Fabrication Fabrication is the process used to create devices and wires. Transistors

More information

Compact Modeling for PV and Aging Effects. Correlated PV and Aging corner models. ESE MOS-AK Rome. a leap ahead. in Compact Modeling

Compact Modeling for PV and Aging Effects. Correlated PV and Aging corner models. ESE MOS-AK Rome. a leap ahead. in Compact Modeling Compact Modeling for PV and Aging Effects Correlated PV and Aging corner models ESE MOS-AK Rome a leap ahead in Compact Modeling This work is funded by: Granted Medea+ Project Motivation General constraint

More information

PAM8304-EV board User Guide AE Department. Date Revision Description Comment

PAM8304-EV board User Guide AE Department. Date Revision Description Comment 1. Revision Information -EV board User Guide AE Department Date Revision Description Comment 2013/5/31 V1.0 Initial release 1 of 5 2. Key Features Supply Voltage from 2.8V to 6.0V 3.0W@10% THD Output with

More information

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application

AOZ8101. Ultra-Low Capacitance TVS Diode Array. General Description. Features. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The AOZ8101 is a transient voltage suppressor array designed to protect high speed data lines from Electro Static Discharge (ESD) and lightning.

More information

Modeling and Optimization of Real Systems

Modeling and Optimization of Real Systems Modeling and Optimization of Real Systems CRC Seminar Presentation Fernando Garcia University of Notre Dame February 5, 2014 Fernando Garcia Modeling and Optimization of Real Systems 1 / 24 Motivation

More information

AOZ8102. Ultra-Low Capacitance TVS Diode Array. Features. General Description. Applications. Typical Application

AOZ8102. Ultra-Low Capacitance TVS Diode Array. Features. General Description. Applications. Typical Application Ultra-Low Capacitance TS Diode Array General Description The is a transient voltage suppressor array designed to protect high speed data lines from SD and lightning. This device incorporates eight surge

More information

Board-Data Processing. VHDL Exercises. Exercise 1: Basics of VHDL Programming. Stages of the Development process using FPGA s in Xilinx ISE.

Board-Data Processing. VHDL Exercises. Exercise 1: Basics of VHDL Programming. Stages of the Development process using FPGA s in Xilinx ISE. Board-Data Processing VHDL Exercises Exercise 1: Basics of VHDL Programming Stages of the Development process using FPGA s in Xilinx ISE. Basics of VHDL VHDL (Very High Speed IC Hardware description Language)

More information

RClamp0504S RailClamp Low Capacitance TVS Array

RClamp0504S RailClamp Low Capacitance TVS Array - RailClamp Description RailClamps are surge rated diode arrays designed to protect high speed data interfaces. This series has been specifically designed to protect sensitive components which are connected

More information

SML. Spice Manipulation Language. Ron Alleyne Rob Toth Spencer Greenberg Michael Apap

SML. Spice Manipulation Language. Ron Alleyne Rob Toth Spencer Greenberg Michael Apap SML Spice Manipulation Language Ron Alleyne Rob Toth Spencer Greenberg Michael Apap What is SPICE? Simulation Program with Integrated Circuit Emphasis Uses complex systems of equations to solve for voltages

More information

INPAQ Global RF/Component Solutions

INPAQ Global RF/Component Solutions TVL SC7 4 AC Specification Product Name Series Part No Package Size Transient Voltage Suppressor TVS Series TVL SC7 4 AC SC7-6L TVL SC7 4 AC Engineering Specification 1. Scope TVL SC7 4 AC s are TVS arrays

More information

High-side Power Distribution Switch NCT3521U

High-side Power Distribution Switch NCT3521U High-side Power Distribution Switch NCT3521U -Table of Content- 1. GENERAL DESCRIPTION...1 2. FEATURES...1 3. APPLICATIONS...2 4. PIN CONFIGURATION AND DESCRIPTION...2 5. TYPICAL APPLICATION CIRCUIT...3

More information

Correlated Double Sampler (CDS) AD9823

Correlated Double Sampler (CDS) AD9823 Correlated Double Sampler (CDS) AD9823 FEATURES 40 MHz correlated double sampler (CDS) Fixed 3.5 db CDS gain Low noise optical black clamp circuit 3 V single-supply operation 4-lead TSSOP package CCDIN

More information

Product Specifications

Product Specifications Product Specifications The ksa RateRat Pro is a turnkey, real-time, in-situ optical reflectance probe designed for deposition monitoring of semi-absorbent thin films. The RateRat Pro measures deposition

More information

Simulation and Modeling for Signal Integrity and EMC

Simulation and Modeling for Signal Integrity and EMC Simulation and Modeling for Signal Integrity and EMC Lynne Green Sr. Member of Consulting Staff Cadence Design Systems, Inc. 320 120th Ave NE Bellevue, WA 98005 USA (425) 990-1288 http://www.cadence.com

More information

Huntron Workstation Tracker 2800/2800S Tutorial

Huntron Workstation Tracker 2800/2800S Tutorial Huntron Workstation Tracker 2800/2800S Tutorial HUNTRON WORKSTATION TRACKER 2800/2800S TUTORIAL... 1 Installation Instructions 2 Huntron Workstation Main Interface 3 The Toolbar 4 Hardware Setup 4 Using

More information

HIPEX Full-Chip Parasitic Extraction. Summer 2004 Status

HIPEX Full-Chip Parasitic Extraction. Summer 2004 Status HIPEX Full-Chip Parasitic Extraction Summer 2004 Status What is HIPEX? HIPEX Full-Chip Parasitic Extraction products perform 3D-accurate and 2D-fast extraction of parasitic capacitors and resistors from

More information

EM8D-100L EMI FILTER/TVS ARRAY DESCRIPTION DFN-16 PACKAGE FEATURES APPLICATIONS MECHANICAL CHARACTERISTICS CIRCUIT DIAGRAM & PIN CONFIGURATION

EM8D-100L EMI FILTER/TVS ARRAY DESCRIPTION DFN-16 PACKAGE FEATURES APPLICATIONS MECHANICAL CHARACTERISTICS CIRCUIT DIAGRAM & PIN CONFIGURATION EMI FILTER/TVS ARRAY DESCRIPTION The is a DFN-16, 8 line low pass filter array with integrated TVS diodes. The is designed to suppress unwanted EMI/RFI signals and provide ESD protection for high-speed

More information

New Verilog A Model Compiler for SPICE 3F5

New Verilog A Model Compiler for SPICE 3F5 New Verilog A Model Compiler for SPICE 3F5 1 Introduction 2 Features 3 Development 4 Examples : 4 1 : Simple R C model 4 2 : Bipolar : HICUM models 4 3 : Mos : EKV 2.6 models 5 Remaining Works... 6 Other

More information

CHAPTER 3 SIMULATION TOOLS AND

CHAPTER 3 SIMULATION TOOLS AND CHAPTER 3 SIMULATION TOOLS AND Simulation tools used in this simulation project come mainly from Integrated Systems Engineering (ISE) and SYNOPSYS and are employed in different areas of study in the simulation

More information

Parag Choudhary Engineering Architect

Parag Choudhary Engineering Architect Parag Choudhary Engineering Architect Agenda Overview of Design Trends & Designer Challenges PCB Virtual Prototyping in PSpice Simulator extensions for Models and Abstraction levels Examples of a coding

More information

Ultrafast Soft Recovery Rectifier Diode

Ultrafast Soft Recovery Rectifier Diode APT30DQ100BG Datasheet Ultrafast Soft Recovery Rectifier Diode Final April 2018 Contents 1 Revision History... 1 1.1 Revision D... 1 1.2 Revision C... 1 1.3 Revision B... 1 1.4 Revision A... 1 2 Product

More information

Hipex Full-Chip Parasitic Extraction

Hipex Full-Chip Parasitic Extraction What is Hipex? products perform 3D-accurate and 2D-fast extraction of parasitic capacitors and resistors from hierarchical layouts into hierarchical transistor-level netlists using nanometer process technology

More information

What is the difference between SIMPLIS and Spice?

What is the difference between SIMPLIS and Spice? What is the difference between SIMPLIS and Spice? SIMPLIS SIMPLIS uses piecewise linear (PWL) analysis and modeling techniques All nonlinearities are modeled with piecewise linear approximations At any

More information

DEI1604 SURGE BlOCKING MODULE (SBM)

DEI1604 SURGE BlOCKING MODULE (SBM) Device Engineering Incorporated 385 East Alamo Drive Chandler, AZ 855 Phone: (480) 30308 Fax: (480) 303084 Email: admin@deiaz.com DEI1604 SURGE BlOCKING MODULE (SBM) 1. FEATURES Bidirectional surge protection

More information

MAINTENANCE MANUAL KEYPAD/DISPLAY PANEL ASSEMBLIES 19D902913G3, G4, G10 (CONVENTIONAL) 19D902913G5, G6 (EDACS)

MAINTENANCE MANUAL KEYPAD/DISPLAY PANEL ASSEMBLIES 19D902913G3, G4, G10 (CONVENTIONAL) 19D902913G5, G6 (EDACS) A MAINTENANCE MANUAL KEYPAD/DISPLAY PANEL ASSEMBLIES 19D902913G3, G4, G10 (CONVENTIONAL) 19D902913G5, G6 (EDACS) TABLE OF CONTENTS Page SPECIFICATIONS............................................... Front

More information

CGH40006S. 6 W, RF Power GaN HEMT, Plastic APPLICATIONS FEATURES

CGH40006S. 6 W, RF Power GaN HEMT, Plastic APPLICATIONS FEATURES Rev 3.1 April 2017 CGH40006S 6 W, RF Power GaN HEMT, Plastic Cree s CGH40006S is an unmatched, gallium nitride (GaN) high electron mobility transistor (HEMT). The CGH40006S, operating from a 28 volt rail,

More information