Hands-on Homework 2: Modeling transmission lines

Size: px
Start display at page:

Download "Hands-on Homework 2: Modeling transmission lines"

Transcription

1 Hands-on Homework 2: Modeling transmission lines ntroduction n class, we developed a model for a infinite length lossless transmission line (t-line). t was configured as a ladder network of vanishingly small, identical, series and shunt elements. Such a transmission line will have a fixed characteristic impedance Z o and time-of-flight delay T f which we derrived. Using circuit simulation we will confirm the models validity. Then using this model, you will build a delay line with a specified Zo and delay. This exercise also serves as a jumpstart to driving spice (specifically ngspice) from a netlist. A detailed examination of the simulation files used will be given. Feel free to copy and modify for your needs. However, you are not relieved of understanding what is going on in the files. Spice Simulation of the nfinite ength T-line Model onsider the infinite length t-line model we developed. Vin Zo Figure : nfinite length t-line model The characteristic 2 impedance Z o and the flight time T f of such a line was developed in lecture. The values of and are measured on a per-unit-length basis. Note that the series, shunt configuration a low pass filter. f however, and are allowed to be arbitrarily small, the transimssion line will have a correspondingly large bandwidth. A network with a large bandwidth will allow digital pulses to traverse the network with low distortion. n lecture we found that: T f = Z MP o = 2 We now confirm these results by building a slightly Vin simplified Vout 3 t-line model. onsider a digital wave edge propagating downb the network GND 2 as shown in Figure 2. Behind the edge, constant current 4.5V U 0uF 3 AO20EK 4 VDD 7 GND U2 N 8 OUT Zo

2 9 i 0 out Vin tline_seg in out flows. n front of the edge, no current flows. Only at the edge, is there a changing current. Thus, Zo we can look at one section of the network composed of two s and one. Since this is a series circuit, we can simplify it by consolidating the two inductors into one. 2 ten instances of the subcircuit R2 80 Figure 2: ombining two series inductors into one MP Vin Vout 3 The second simplifcation is to limit the size of the network to one-hundred B and elements. GND Although it s nowhere near an infinite number of elements, we will 4.5Vfind that it s actually quite U accurate for our situation. n addition, with a termination resistor at the end of the network, it will look infinitely long. AO20EK et s build our test case around a 80 ohm transmission line that exhibits a 4ns delay. Using the 4 VDD N equations we derived for delay T f, and characteristic impedance Z o, the values for total 2 and 7 GND OUT 8 are easily determined. Dividing the total and 3 by 00, we know the value of each incremental U2 Zo4 and element. Below, we will develop the ngspice file for simulating the 00 element-lengthline. f you a concatenate b inc order, each piece shown, you will have a complete, executable ngspice file. nh network simulating 4ns, 80ohm line 2 *This model uses 3 00 sections 4 to create the 4ns line.param Vdd = 3.3 ;Vdd is assumed to be 3.3 Volts.param Vth = 3.3/2 ;set the swithing threshold to /2 Vdd 3 2 0uF 3 The first line in any spice file is the title line. Wether TTE or you use line one as a title line, its still a title. f you put a netlist element or simulationfe: command here, it will become the title REVSON: and otherwise ignored. There is no need for a comment PAGE character in the title. OF You may also DRAWN remindby: yourself that line one is the title by putting.title on line one. omment lines in spice usually begin with a *. A semicolon may be used as an end of line comment delimiter as well. Two parameters are defined; one for V dd and V th. They allow the use of a text variable in the spice file improving readability and flexibility. For example, if the supply voltage changes, we can change it in one place instead of everywhere it was used. Smart software practices hold true in spice files too! Since we are going to build a model with 00 sections, a hierarchical approach is the only practical way. magine trying to draw a schematic with 00 and elements. We build the spice model by using ten subcircuits that each hold ten and elements. A spice subcircuit is a hierarchical block that contains another spice netlist. t is placed within a top-level netlist to encapsulate circuitry for complexity hiding. 2

3 A subcircuit is analogous to a function call in. t is called from another body of code. t is supplied arguments, but they are the ports on the subcircuit block. Our subcircuit internal representation and equivalent block diagram are shown below. in a 2 9 i 0 out tline_seg in out Figure 3: Encapsulation of 0 sections into one subcircuit The subcircuit below creates a 0 element portion of a 00 element, 80 ohm t-line. ********************************************************************** *subcircuit composed of 0 v_in sections useddly_in to make up the longer tline.subckt tline_seg in out _val=3.2nh _val=0.5pf ten instances of the subcircuit l in a _val 0. l2 a b _val l3 b c _val V l4 c d _val l5 d e _val l6 e f _val l7 f g _val l8 g h _val l9 h i _val l0 i out _val c a _val c2 b _val c3 c _val c4 d _val c5 e _val c6 f _val c7 g _val c8 h _val c9 i _val v_in dly_in c0 out _val Zo.ends tline_seg ************************************************************ V 2 a 2 b 3 c R Subcircuits begin with.subckt followed by the subcircuit name then the names of its ports. The port names are understood internal to the subcircuit. The elements in the subcircuit are connected as with any spice netlist. The subcircuit ends with the.ends command. n cases where there are many elements of the same value, or where you may want to override values, parameters may be added to the subcircuit. Here val and val at the subcircuit call set the values of all the and elements. These values are defaults and my be overridden at instaniation time. v 3 3

4 To use the subcircuit in the top level circuit, it is called with a line that begins with an X, followed by a unique number if there are multiple instances of the subcircuit. A small x will also work, but the capital version stands out more in the netlist. Wires are connected to the subcircuit in the same order in in whichathey were 2 declared in the subcircuit 9 i declaration. 0 outat the end of the line, the name of the subcircuit being used is named. Below we see ten instantiations of the subcircuit called.. tline seg tied in series. Pay attention to indentation. t s not just pretty; it2 helps prevent mistakes. 9 0 Vin *0 subcircuit calls to the tline segments * input output name X dly_in a tline_seg X2 a b tline_seg X3 b c tline_seg X4 c d tline_seg X5 d e tline_seg X6 e f tline_seg X7 f g tline_seg X8 g h tline_seg X9 h i tline_seg X0 i tline_seg tline_seg in out Below is the entire circuit we are modeling. V v_in 0. dly_in ten instances of the subcircuit R2 80 Figure 4: Top level schematic *input source with ns delay, 2nS edges, 25ns pulse width, 50ns cycle time V vin 0 PUSE(0 Vdd ns 2ns 2ns 25ns 50ns) vin dly_in 0. ;0. ohm resistor used to determine the input current R2 80 ;terminating resistor at end of network v_in dly_in a 2 b 3 c 4 A pulsed source is declared along with a 0. ohm current sensing resistor. This resistor is used to determine the input current Zo into the network. We will need it to determine the input impedance of the network. You will see how this is done later. We have also placed an 80 ohm resistor at the V end of the network to terminate it. This makes the network look like it is infinitely long as any cannot tell the difference from looking into a longer segement of 80 ohm transmission line and a resistor. This completes our circuit netlist. We need to tell the simulator what to do. This is done via simulation directives. n this case we use the.tran command to run a transient simulation. The simulation will run for 50ns and sample data every 00ps. 3 4

5 .tran 00ps 50ns ;run tranisient simulation for 50ns *measure the time delay at switching threshold (Vth) from input to output of tline.meas tran tdelay trig v(dly_in) val=vth rise= td=00ps targ v() val=vth rise= td=00ps *measure the input impedance during the rising edge at the switching threshold.meas tran z_in find par( (v(dly_in)/((v(vin)-v(dly_in))/0.)) ) when v(dly_in)=vth.control * plot v(dly_in) v() v(vin) xl 00ps 50ns * gnuplot gnuplt_4ns_80ohm v(dly_in) v() v(vin) xl 00ps 50ns.endc.end Once the simulation has run, we can gather data and make automated measurements. We use the.meas command to do this. The.meas command is complex with many options and possibilities for making measurements. With the measure command, we confirm the t-line delay and determine its input impedance. The first.meas command measures the delay. The result generated is called tdelay. The measurement is triggered when the first rising edge of node v(dly in) reaches V th. The check for the trigger begins after a 00ps delay. The target or point at which the measurement is ended is reached when first rising edge of node v(dly out) reaches V th. The second.meas command measures the input impedance. We choose V th as the point on the rising edge to take the measurement. The result generated is called zin. The input impedance is determined by dividing the voltage at the input of the network by the current flowing into the network. The current into the network is sampled by the 0. ohm resistor. After we run the simulation, ngspice prints results into the invoking shell window showing the delay to be close to 4ns and the input impedance to be about 82 ohms. Measurements for Transient Analysis tdelay = e-09 targ= e-09 trig= e-09 z_in = e0 ts also important to also see the waveforms of the signals generated. This maybe done with either the plot or gnuplot command inside the.control and.endc commands. Uncomment plot to see results interactively or use gnuplot for nice looking plots. The simulation result from gnuplot here shows an approximate 4ns delay and good pulse shape fidelity. 5

6 in a 2 9 i 0 out lc network simulating 4ns, 80ohm line 0 v(dly_in) v() v(vin) Vin V tline_seg in out V v_in 0 dly_in ten instances of the subcircuit 5e-09 e-08.5e-08 2e e-08 3e e-08 4e e-08 5e s R2 80 Figure 5: Pulse applied to 00 section t-line model Building a working delay line The last digit of your student D will determine the characteristics of the delay line you will build. See the table in the grading section to find your variation of the network parameters. Develop the spice circuit simulation model of your delay line and then physically build the circuit. Here is the 3 schematic of the simulation model. AO 4 VD 7 GN V v_in Zo dly_in a 2 b 3 c Figure 6: Simulation model of the circuit to build This circuit is slightly different than the first model. nstead of a parallel termination resistor at the output of the network, there is a Z o ohm series termination resistor at the input. Another difference is that to simplify the circuit, only four sections are used instead of one-hundred. The oscillator is modeled using the same pulse statement as before. For an example, suppose you are building a 50 ohm, 5ns delay line with four sections. Our spice netlist would look like the following. TTE FE: PAGE 6

7 network simulating 5ns, 50ohm line.param Vdd = 3.3 ;Vdd is 3.3 Volts.param Vth =.5 ;set the sampling voltage to.5 volts *input source with ns delay, 2nS edges, 25ns pulse width, 50ns cycle time Vin vin 0 PUSE(0 Vdd ns 2ns 2ns 25ns 50ns) ********************************************************************** *subcircuit composed of section used to make up the longer tline.subckt tline_seg in out in out ; student supplied out ; student supplied.ends tline_seg ************************************************************ vin dly_in 50 ;series termination resistor X dly_in a tline_seg X2 a b tline_seg X3 b c tline_seg X4 c tline_seg.control tran 00ps 50ns plot v(dly_in) v() xl 00ps 50ns.endc *measure the time delay at switching threshold (Vth) from input to output of tline.meas tran tdelay trig v(dly_in) val=vth rise= td=00ps targ v() val=vth rise= td=00ps *measure the input impedance during the rising edge at the switching threshold.meas tran z_in find par( (v(dly_in)/((v(vin)-v(dly_in))/50)) ) when v(dly_in)=vth.end Here are the simulation results from ngspice. The delay is pretty close to our target values even with only four sections. The input impedance is rather off. This may be an artifact of the small number of elements in the delay line. Measurements for Transient Analysis tdelay = e-09 targ= e-09 trig= e-09 z_in = e0 Note that the voltage at which the delay and input impeadance was changed to allow a measurement with the voltage pedestal present at the network input. 7

8 simulation of 4 section, 5ns, 50ohm line 3.5 v(vin) v(dly_in) v() V.5 Vin Zo e-09 e-08.5e-08 2e e-08 3e e-08 4e e-08 5e-08 Figure 7: Waveforms from 5ns, 50ohm delay network s Build the real thing Here is the circuit you will build. t is the physical realization of the model we just developed. B 4.5V MP Vin Vout 3 GND U 2 0uF 4 F 3 4 VDD PAGE AO20EK 7 GND U2 N 8 OUT Zo4 OF 2 2 DRAWN BY: 3 3 Figure 8: Breadboard circuit of delay line to build 4 4 The value of the termination resistor depends on the output impedance of the oscillator. The oscillator has an output impedance of about 4 ohms. So the value of to properly terminate the network is Z o 4. The inductors are built using toroidal cores. The physical shape of the toroids keep the magnetic field well contained and lessens interaction with nearby objects. One turn on a toroid is TTE FE: REVSON: defined as one pass through the toroid, not a lap around the core. The winding on the toroids 8

9 should occupy about two thirds of the form. Don t allow the turns to overlap. On the protoboard, keep the toroids spaced a bit so they do not capacitively or inductively couple. The number of turns required for a Micrometals T25-2 with an A l value of.2 is given by: N = desired inductance in nh Determine the turns required and wind all four inductors. Remembering that wires are inductors, assemble the circuit on the breadboard using short leads. However, leave yourself enough room to make measurements. Also, remember that your scope probe tip will change the capacitance required at the end of the delay network. Here is a a picture of a 5ns, 50 ohm delay network built on the protoboard to give you a rough idea of what it should look like. Note both probes are using short ground leads..2 Figure 9: Delay line built on protoboard Measure the delay by using two scope probes (borrow one from a friend). This will be measured at the same points as your simulation. apture the waveform at both points with the scope and include in your lab report. Here is a scope capture of my 5ns, 50 ohm delay network. The actual delay is 5.7ns. The output waveform shape is maintained fairly well. The top trace is dly out, the bottom trace dly in. Note that the pedestal on dly in is 0ns; or twice the delay of the network. The network is working like an actual transmission line. The end of the pedestal on dly out corresponds to the reflection returning from the end of the network. You will learn more about this soon. 9

10 Figure 0: dly out (top) dly in (bottom) from 5ns, 50 ohm delay network Using the characteristics of voltage dividers and your measurements, determine the input impedance of your delay line. nclude your calculations in your lab report. Grading ast digit of student D T f Z o 0-5ns 00 ohms 2-3 0ns 00 ohms ns 70 ohms 6-7 7ns 70 ohms 8-9 7ns 4 ohms Table : Ds verses network values 0

11 Deliverable Grade Weighting Demonstratable, working prototype of delay line 30% Report, consisting of : spice file used to simulate the delay line you built 0% output from spice run showing delay and input impedance 0% scope picture showing dly in, dly out, and delay 30% calculation of input impedance 20% Poorly formatted writeup -0% an t make measurement from scope picture -20% ncorrect scope reading -20% an t read scope settings -20% Prototype circuit is obviously wrong -40% ate, up to one week -20% Table 2: Grading metrics

Schematic and Layout Simulation Exercise

Schematic and Layout Simulation Exercise University of California, Berkeley EE141 Fall 2009 Laboratory Exercise 4 Schematic and Layout Simulation Exercise The objective of this laboratory exercise is to walk you through the process of simulating

More information

ECE 391: Suggested Homework Problems

ECE 391: Suggested Homework Problems TITLE ECE 391: Suggested Homework Problems Reflections 1. Multiple digital devices wish to communicate over a shared 5Ω transmission line. Only one driver will be enabled at any time and any receiver may

More information

LABORATORY 4. Palomar College ENGR210 Spring 2017 ASSIGNED: 3/21/17

LABORATORY 4. Palomar College ENGR210 Spring 2017 ASSIGNED: 3/21/17 LABORATORY 4 ASSIGNED: 3/21/17 OBJECTIVE: The purpose of this lab is to evaluate the transient and steady-state circuit response of first order and second order circuits. MINIMUM EQUIPMENT LIST: You will

More information

Lab 6: MOSFET AMPLIFIER

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

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering

EE320L Electronics I. Laboratory. Laboratory Exercise #2. Basic Op-Amp Circuits. Angsuman Roy. Department of Electrical and Computer Engineering EE320L Electronics I Laboratory Laboratory Exercise #2 Basic Op-Amp Circuits By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las Vegas Objective: The purpose of

More information

ECE 201 LAB 6 INTRODUCTION TO SPICE/PSPICE

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

More information

Xcircuit and Spice. February 26, 2007

Xcircuit and Spice. February 26, 2007 Xcircuit and Spice February 26, 2007 This week we are going to start with a new tool, namely Spice. Spice is a circuit simulator. The variant of spice we will use here is called Spice-Opus, and is a combined

More information

NGSPICE- Usage and Examples

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

More information

HSPICE. Chan-Ming Chang

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

More information

Experiment 5.A. Basic Wireless Control. ECEN 2270 Electronics Design Laboratory 1

Experiment 5.A. Basic Wireless Control. ECEN 2270 Electronics Design Laboratory 1 .A Basic Wireless Control ECEN 2270 Electronics Design Laboratory 1 Procedures 5.A.0 5.A.1 5.A.2 5.A.3 5.A.4 5.A.5 5.A.6 Turn in your pre lab before doing anything else. Receiver design band pass filter

More information

Department of Electrical & Computer Engineering Technology. EET 3086C Circuit Analysis Laboratory Experiments. Masood Ejaz

Department of Electrical & Computer Engineering Technology. EET 3086C Circuit Analysis Laboratory Experiments. Masood Ejaz Department of Electrical & Computer Engineering Technology EET 3086C Circuit Analysis Laboratory Experiments Masood Ejaz Experiment # 1 DC Measurements of a Resistive Circuit and Proof of Thevenin Theorem

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

PCB Crosstalk Simulation Toolkit Mark Sitkowski Design Simulation Systems Ltd Based on a paper by Ladd & Costache

PCB Crosstalk Simulation Toolkit Mark Sitkowski Design Simulation Systems Ltd   Based on a paper by Ladd & Costache PCB Crosstalk Simulation Toolkit Mark Sitkowski Design Simulation Systems Ltd www.designsim.com.au Based on a paper by Ladd & Costache Introduction Many of the techniques used for the modelling of PCB

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

More information

EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation

EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation EECS 312: Digital Integrated Circuits Lab Project 1 Introduction to Schematic Capture and Analog Circuit Simulation Teacher: Robert Dick GSI: Shengshuo Lu Assigned: 5 September 2013 Due: 17 September 2013

More information

Experiment 1: Instrument Familiarization (8/28/06)

Experiment 1: Instrument Familiarization (8/28/06) Electrical Measurement Issues Experiment 1: Instrument Familiarization (8/28/06) Electrical measurements are only as meaningful as the quality of the measurement techniques and the instrumentation applied

More information

Experiment 1: Instrument Familiarization

Experiment 1: Instrument Familiarization Electrical Measurement Issues Experiment 1: Instrument Familiarization Electrical measurements are only as meaningful as the quality of the measurement techniques and the instrumentation applied to the

More information

LT Spice Getting Started Very Quickly. First Get the Latest Software!

LT Spice Getting Started Very Quickly. First Get the Latest Software! LT Spice Getting Started Very Quickly First Get the Latest Software! 1. After installing LT Spice, run it and check to make sure you have the latest version with respect to the latest version available

More information

Project. A circuit simulation project to transition you from lumped component-based circuit theory In Part 1 and Part 2, you built an LC network:

Project. A circuit simulation project to transition you from lumped component-based circuit theory In Part 1 and Part 2, you built an LC network: Project A circuit simulation project to transition you from lumped component-based circuit theory In Part 1 and Part 2, you built an LC network: And, you did transient simulations of the following circuits

More information

Probe Considerations for Low Voltage Measurements such as Ripple

Probe Considerations for Low Voltage Measurements such as Ripple Probe Considerations for Low Voltage Measurements such as Ripple Our thanks to Tektronix for allowing us to reprint the following article. Figure 1. 2X Probe (CH1) and 10X Probe (CH2) Lowest System Vertical

More information

OPERATIONAL AMPLIFIERS (OP-AMPS) II

OPERATIONAL AMPLIFIERS (OP-AMPS) II OPERATIONAL AMPLIFIERS (OP-AMPS) II LAB 5 INTRO: INTRODUCTION TO INVERTING AMPLIFIERS AND OTHER OP-AMP CIRCUITS GOALS In this lab, you will characterize the gain and frequency dependence of inverting op-amp

More information

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill

Engineering 3821 Fall Pspice TUTORIAL 1. Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill Engineering 3821 Fall 2003 Pspice TUTORIAL 1 Prepared by: J. Tobin (Class of 2005) B. Jeyasurya E. Gill 2 INTRODUCTION The PSpice program is a member of the SPICE (Simulation Program with Integrated Circuit

More information

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page!

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page! ECE3204 D2015 Lab 1 The Operational Amplifier: Inverting and Non-inverting Gain Configurations Gain-Bandwidth Product Relationship Frequency Response Limitation Transfer Function Measurement DC Errors

More information

Lab 4: Analysis of the Stereo Amplifier

Lab 4: Analysis of the Stereo Amplifier ECE 212 Spring 2010 Circuit Analysis II Names: Lab 4: Analysis of the Stereo Amplifier Objectives In this lab exercise you will use the power supply to power the stereo amplifier built in the previous

More information

ET1210: Module 5 Inductance and Resonance

ET1210: Module 5 Inductance and Resonance Part 1 Inductors Theory: When current flows through a coil of wire, a magnetic field is created around the wire. This electromagnetic field accompanies any moving electric charge and is proportional to

More information

Measuring Power Supply Switching Loss with an Oscilloscope

Measuring Power Supply Switching Loss with an Oscilloscope Measuring Power Supply Switching Loss with an Oscilloscope Our thanks to Tektronix for allowing us to reprint the following. Ideally, the switching device is either on or off like a light switch, and instantaneously

More information

LAB EXERCISE 3 FET Amplifier Design and Linear Analysis

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

More information

CHAPTER 6 PHASE LOCKED LOOP ARCHITECTURE FOR ADC

CHAPTER 6 PHASE LOCKED LOOP ARCHITECTURE FOR ADC 138 CHAPTER 6 PHASE LOCKED LOOP ARCHITECTURE FOR ADC 6.1 INTRODUCTION The Clock generator is a circuit that produces the timing or the clock signal for the operation in sequential circuits. The circuit

More information

Simulating Inductors and networks.

Simulating Inductors and networks. Simulating Inductors and networks. Using the Micro-cap7 software, CB introduces a hands on approach to Spice circuit simulation to devise new, improved, user models, able to accurately mimic inductor behaviour

More information

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

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

More information

Exclusive Technology Feature

Exclusive Technology Feature ISSUE: February 2011 Primary-Side Current Monitoring Won t Stop Overcurrents In DCM-Operated Flybacks by John Bottrill, Senior Applications Engineer, and Lisa Dinwoodie, Applications Engineer, Power Management,

More information

University of Pennsylvania Department of Electrical and Systems Engineering ESE319

University of Pennsylvania Department of Electrical and Systems Engineering ESE319 University of Pennsylvania Department of Electrical and Systems Engineering ESE39 Laboratory Experiment Parasitic Capacitance and Oscilloscope Loading This lab is designed to familiarize you with some

More information

Lab 3: Circuit Simulation with PSPICE

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

More information

Mentor Analog Simulators

Mentor Analog Simulators ENGR-434 Spice Netlist Syntax Details Introduction Rev 5/25/11 As you may know, circuit simulators come in several types. They can be broadly grouped into those that simulate a circuit in an analog way,

More information

UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency

UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency Jamie E. Reinhold December 15, 2011 Abstract The design, simulation and layout of a UMAINE ECE Morse code Read Only Memory and transmitter

More information

AN643. Si446x/Si4362 RX LNA Matching. 1. Introduction. 2. Match Network Topology Three-Element Match Network

AN643. Si446x/Si4362 RX LNA Matching. 1. Introduction. 2. Match Network Topology Three-Element Match Network Si446x/Si4362 RX LNA Matching 1. Introduction The purpose of this application note is to provide a description of the impedance matching of the RX differential low noise amplifier (LNA) on the Si446x/Si4362

More information

Class #3: Experiment Signals, Instrumentation, and Basic Circuits

Class #3: Experiment Signals, Instrumentation, and Basic Circuits Class #3: Experiment Signals, Instrumentation, and Basic Circuits Purpose: The objectives of this experiment are to gain some experience with the tools we use (i.e. the electronic test and measuring equipment

More information

Introduction to SwitcherCAD

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

More information

LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN

LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN OBJECTIVES 1. To design and DC bias the JFET transistor oscillator for a 9.545 MHz sinusoidal signal. 2. To simulate JFET transistor oscillator using MicroCap

More information

Revision: Jan 29, E Main Suite D Pullman, WA (509) Voice and Fax

Revision: Jan 29, E Main Suite D Pullman, WA (509) Voice and Fax Revision: Jan 29, 2011 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview The purpose of this lab assignment is to provide users with an introduction to some of the equipment which

More information

if the conductance is set to zero, the equation can be written as following t 2 (4)

if the conductance is set to zero, the equation can be written as following t 2 (4) 1 ECEN 720 High-Speed Links: Circuits and Systems Lab1 - Transmission Lines Objective To learn about transmission lines and time-domain reflectometer (TDR). Introduction Wires are used to transmit clocks

More information

Department of Electrical and Computer Engineering Lab 6: Transformers

Department of Electrical and Computer Engineering Lab 6: Transformers ESE Electronics Laboratory A Department of Electrical and Computer Engineering 0 Lab 6: Transformers. Objectives ) Measure the frequency response of the transformer. ) Determine the input impedance of

More information

Modeling The Effects of Leakage Inductance On Flyback Converters (Part 2): The Average Model

Modeling The Effects of Leakage Inductance On Flyback Converters (Part 2): The Average Model ISSUE: December 2015 Modeling The Effects of Leakage Inductance On Flyback Converters (Part 2): The Average Model by Christophe Basso, ON Semiconductor, Toulouse, France In the first part of this article,

More information

Lab Equipment EECS 311 Fall 2009

Lab Equipment EECS 311 Fall 2009 Lab Equipment EECS 311 Fall 2009 Contents Lab Equipment Overview pg. 1 Lab Components.. pg. 4 Probe Compensation... pg. 8 Finite Instrumentation Impedance. pg.10 Simulation Tools..... pg. 10 1 - Laboratory

More information

Transformer. V1 is 1.0 Vp-p at 10 Khz. William R. Robinson Jr. p1of All rights Reserved

Transformer. V1 is 1.0 Vp-p at 10 Khz. William R. Robinson Jr. p1of All rights Reserved V1 is 1.0 Vp-p at 10 Khz Step Down Direction Step Up Direction William R. Robinson Jr. p1of 24 Purpose To main purpose is to understand the limitations of the B2Spice simulator transformer model that I

More information

EEC 116 Fall 2011 Lab #2: Analog Simulation Tutorial

EEC 116 Fall 2011 Lab #2: Analog Simulation Tutorial EEC 116 Fall 2011 Lab #2: Analog Simulation Tutorial Dept. of Electrical and Computer Engineering University of California, Davis Issued: September 28, 2011 Due: October 12, 2011, 4PM Reading: Rabaey Chapters

More information

Practical 2P12 Semiconductor Devices

Practical 2P12 Semiconductor Devices Practical 2P12 Semiconductor Devices What you should learn from this practical Science This practical illustrates some points from the lecture courses on Semiconductor Materials and Semiconductor Devices

More information

Class #7: Experiment L & C Circuits: Filters and Energy Revisited

Class #7: Experiment L & C Circuits: Filters and Energy Revisited Class #7: Experiment L & C Circuits: Filters and Energy Revisited In this experiment you will revisit the voltage oscillations of a simple LC circuit. Then you will address circuits made by combining resistors

More information

AN-742 APPLICATION NOTE

AN-742 APPLICATION NOTE APPLICATION NOTE One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com Frequency Domain Response of Switched-Capacitor ADCs by Rob Reeder INTRODUCTION

More information

Elad Alon HW #1: Circuit Simulation EECS 141 Due Thursday, Aug. 30th, 5pm, box in 240 Cory

Elad Alon HW #1: Circuit Simulation EECS 141 Due Thursday, Aug. 30th, 5pm, box in 240 Cory UNIVERSITY OF CALIFORNIA College of Engineering Department of Electrical Engineering and Computer Sciences Last modified on August 20, 2012 by Elad Alon Elad Alon HW #1: Circuit Simulation EECS 141 Due

More information

High Current Amplifier

High Current Amplifier High Current Amplifier - Introduction High Current Amplifier High current amplifier is often a very useful piece of instrument to have in the lab. It is very handy for increasing the current driving capability

More information

EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab. Prelab Part I: RC Circuit

EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab. Prelab Part I: RC Circuit EE 2274 RC and Op Amp Circuit Completed Prior to Coming to Lab Prelab Part I: RC Circuit 1. Design a high pass filter (Fig. 1) which has a break point f b = 1 khz at 3dB below the midband level (the -3dB

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 019.101 Introductory Analog Electronics Laboratory Laboratory No. READING ASSIGNMENT

More information

Lab 2: Common Emitter Design: Part 2

Lab 2: Common Emitter Design: Part 2 Lab 2: Common Emitter Design: Part 2 ELE 344 University of Rhode Island, Kingston, RI 02881-0805, U.S.A. 1 Linearity in High Gain Amplifiers The common emitter amplifier, shown in figure 1, will provide

More information

PCB power supply noise measurement procedure

PCB power supply noise measurement procedure PCB power supply noise measurement procedure What has changed? Measuring power supply noise in high current, high frequency, low voltage designs is no longer simply a case of hooking up an oscilloscope

More information

LAB #10: Analog Interfacing

LAB #10: Analog Interfacing CS/EE 3720 Handout #10 Spring 2004 Myers LAB #10: Analog Interfacing You must checkoff this lab during your lab section of the week of April 19th. Lab writeup is due in class on April 27th. NO LATE CHECKOFFS

More information

IEEE P802.3cg 10BASE-T1S MDI Parallel Inductance

IEEE P802.3cg 10BASE-T1S MDI Parallel Inductance IEEE P802.3cg 10BASE-T1S MDI Parallel Inductance Scott Griffiths, Rockwell Automation David D. Brandt, Rockwell Automation IEEE P802.3cg 10 Mb/s Single Balanced Pair Ethernet Task Force Spokane Interim,

More information

Effects of Initial Conditions in a DRSSTC. Steven Ward. 6/26/09

Effects of Initial Conditions in a DRSSTC. Steven Ward.   6/26/09 Effects of Initial Conditions in a DRSSTC Steven Ward www.stevehv.4hv.org 6/26/09 The DRSSTC is based on the idea that the initial conditions of the tank circuit are that the primary inductor has zero

More information

Precalculations Individual Portion Filter Lab: Building and Testing Electrical Filters

Precalculations Individual Portion Filter Lab: Building and Testing Electrical Filters Name: Date of lab: Section number: M E 345. Lab 6 Precalculations Individual Portion Filter Lab: Building and Testing Electrical Filters Precalculations Score (for instructor or TA use only): / 20 1. (4)

More information

TTL LOGIC and RING OSCILLATOR TTL

TTL LOGIC and RING OSCILLATOR TTL ECE 2274 TTL LOGIC and RING OSCILLATOR TTL We will examine two digital logic inverters. The first will have a passive resistor pull-up output stage. The second will have an active transistor and current

More information

UNIVERSITY OF TECHNOLOGY, JAMAICA School of Engineering -

UNIVERSITY OF TECHNOLOGY, JAMAICA School of Engineering - UNIVERSITY OF TECHNOLOGY, JAMAICA School of Engineering - Electrical Engineering Science Laboratory Manual Table of Contents Safety Rules and Operating Procedures... 3 Troubleshooting Hints... 4 Experiment

More information

Circuit Simulation with SPICE OPUS

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

More information

Background (What Do Line and Load Transients Tell Us about a Power Supply?)

Background (What Do Line and Load Transients Tell Us about a Power Supply?) Maxim > Design Support > Technical Documents > Application Notes > Power-Supply Circuits > APP 3443 Keywords: line transient, load transient, time domain, frequency domain APPLICATION NOTE 3443 Line and

More information

Switched capacitor circuitry

Switched capacitor circuitry Switched capacitor circuitry This worksheet and all related files are licensed under the reative ommons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

HV739 ±100V 3.0A Ultrasound Pulser Demo Board

HV739 ±100V 3.0A Ultrasound Pulser Demo Board HV79 ±00V.0A Ultrasound Pulser Demo Board HV79DB Introduction The HV79 is a monolithic single channel, high-speed, high voltage, ultrasound transmitter pulser. This integrated, high performance circuit

More information

EECE 488: Short HSPICE Tutorial. Last updated by: Mohammad Beikahmadi January 2013

EECE 488: Short HSPICE Tutorial. Last updated by: Mohammad Beikahmadi January 2013 EECE 488: Short HSPICE Tutorial Last updated by: Mohammad Beikahmadi January 2013 SPICE? Simulation Program with Integrated Circuit Emphasis An open source analog circuit simulator Predicts circuit behavior,

More information

INTRODUCTION TO AC FILTERS AND RESONANCE

INTRODUCTION TO AC FILTERS AND RESONANCE AC Filters & Resonance 167 Name Date Partners INTRODUCTION TO AC FILTERS AND RESONANCE OBJECTIVES To understand the design of capacitive and inductive filters To understand resonance in circuits driven

More information

Lab 1: Basic RL and RC DC Circuits

Lab 1: Basic RL and RC DC Circuits Name- Surname: ID: Department: Lab 1: Basic RL and RC DC Circuits Objective In this exercise, the DC steady state response of simple RL and RC circuits is examined. The transient behavior of RC circuits

More information

BME 3512 Bioelectronics Laboratory Two - Passive Filters

BME 3512 Bioelectronics Laboratory Two - Passive Filters BME 35 Bioelectronics Laboratory Two - Passive Filters Learning Objectives: Understand the basic principles of passive filters. Laboratory Equipment: Agilent Oscilloscope Model 546A Agilent Function Generator

More information

1 of 11 30/08/2011 8:50 AM

1 of 11 30/08/2011 8:50 AM 1 of 11 30/08/2011 8:50 AM All Ferrite Beads Are Not Created Equal - Understanding the Importance of Ferrite Bead Material Behavior August 2010 Written by Chris Burket, TDK Corporation A common scenario:

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab Timer: Blinking LED Lights and Pulse Generator

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab Timer: Blinking LED Lights and Pulse Generator EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 9 555 Timer: Blinking LED Lights and Pulse Generator In many digital and analog circuits it is necessary to create a clock

More information

APPLICATION NOTE 735 Layout Considerations for Non-Isolated DC-DC Converters

APPLICATION NOTE 735 Layout Considerations for Non-Isolated DC-DC Converters Maxim > App Notes > AUTOMOTIVE GENERAL ENGINEERING TOPICS POWER-SUPPLY CIRCUITS PROTOTYPING AND PC BOARD LAYOUT Keywords: printed circuit board, PCB layout, parasitic inductance, parasitic capacitance,

More information

University of Pennsylvania Moore School of Electrical Engineering ESE319 Electronic Circuits - Modeling and Measurement Techniques

University of Pennsylvania Moore School of Electrical Engineering ESE319 Electronic Circuits - Modeling and Measurement Techniques University of Pennsylvania Moore School of Electrical Engineering ESE319 Electronic Circuits - Modeling and Measurement Techniques 1. Introduction. Students are often frustrated in their attempts to execute

More information

Class #8: Experiment Diodes Part I

Class #8: Experiment Diodes Part I Class #8: Experiment Diodes Part I Purpose: The objective of this experiment is to become familiar with the properties and uses of diodes. We used a 1N914 diode in two previous experiments, but now we

More information

Chapter 13: Comparators

Chapter 13: Comparators Chapter 13: Comparators So far, we have used op amps in their normal, linear mode, where they follow the op amp Golden Rules (no input current to either input, no voltage difference between the inputs).

More information

ENGR4300 Test 3A Fall 2002

ENGR4300 Test 3A Fall 2002 1. 555 Timer (20 points) Figure 1: 555 Timer Circuit For the 555 timer circuit in Figure 1, find the following values for R1 = 1K, R2 = 2K, C1 = 0.1uF. Show all work. a) (4 points) T1: b) (4 points) T2:

More information

P1: IML/OVY P2: IML/OVY QC: IML/OVY T1: IML MHBD Sandler MHBD017-Sandler-v4.cls October 7, :44

P1: IML/OVY P2: IML/OVY QC: IML/OVY T1: IML MHBD Sandler MHBD017-Sandler-v4.cls October 7, :44 Chapter 5 Flyback Converters The flyback converter has long been popular for low-power applications. The major attraction of the flyback topology is its low component count. At higher power levels, the

More information

1.2Vdc 1N4002. Anode V+

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

More information

EE 233 Circuit Theory Lab 3: First-Order Filters

EE 233 Circuit Theory Lab 3: First-Order Filters EE 233 Circuit Theory Lab 3: First-Order Filters Table of Contents 1 Introduction... 1 2 Precautions... 1 3 Prelab Exercises... 2 3.1 Inverting Amplifier... 3 3.2 Non-Inverting Amplifier... 4 3.3 Integrating

More information

EE320L Electronics I. Laboratory. Laboratory Exercise #3. Operational Amplifier Application Circuits. Angsuman Roy

EE320L Electronics I. Laboratory. Laboratory Exercise #3. Operational Amplifier Application Circuits. Angsuman Roy EE320L Electronics I Laboratory Laboratory Exercise #3 Operational Amplifier Application Circuits By Angsuman Roy Department of Electrical and Computer Engineering University of Nevada, Las Vegas Objective:

More information

Lab 2: Discrete BJT Op-Amps (Part I)

Lab 2: Discrete BJT Op-Amps (Part I) Lab 2: Discrete BJT Op-Amps (Part I) This is a three-week laboratory. You are required to write only one lab report for all parts of this experiment. 1.0. INTRODUCTION In this lab, we will introduce and

More information

ECE 2274 MOSFET Voltmeter. Richard Cooper

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

More information

ETIN25 Analogue IC Design. Laboratory Manual Lab 2

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

More information

EE 3305 Lab I Revised July 18, 2003

EE 3305 Lab I Revised July 18, 2003 Operational Amplifiers Operational amplifiers are high-gain amplifiers with a similar general description typified by the most famous example, the LM741. The LM741 is used for many amplifier varieties

More information

1 ECE342 EMC Lab #5. Transmission Line Transients

1 ECE342 EMC Lab #5. Transmission Line Transients 1 ECE342 EMC Lab #5. Transmission Line Transients Name: Box: ( Individual work! Each student must turn in this lab worksheet with the three requested PSPICE simulation attachments. Each student is expected

More information

The Challenges of Differential Bus Design

The Challenges of Differential Bus Design The Challenges of Differential Bus Design February 20, 2002 presented by: Arthur Fraser TechKnowledge Page 1 Introduction Background Historically, differential interconnects were often twisted wire pairs

More information

Assignment 8 Analyzing Operational Amplifiers in MATLAB and PSpice

Assignment 8 Analyzing Operational Amplifiers in MATLAB and PSpice ECEL 301 ECE Laboratory I Dr. A. Fontecchio Assignment 8 Analyzing Operational Amplifiers in MATLAB and PSpice Goal Characterize critical parameters of the inverting or non-inverting opampbased amplifiers.

More information

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

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

More information

LABORATORY 3: Transient circuits, RC, RL step responses, 2 nd Order Circuits

LABORATORY 3: Transient circuits, RC, RL step responses, 2 nd Order Circuits LABORATORY 3: Transient circuits, RC, RL step responses, nd Order Circuits Note: If your partner is no longer in the class, please talk to the instructor. Material covered: RC circuits Integrators Differentiators

More information

High Side MOSFET Gate Drive: The Power of Well. Implemented Pulse Transformers

High Side MOSFET Gate Drive: The Power of Well. Implemented Pulse Transformers High Side MOSFET Gate Drive: The Power of Well Author: Fritz Schlunder SHEF Systems AN-1 Implemented Pulse Transformers Many different techniques and circuits are available for providing high side N-Channel

More information

Electronics and Instrumentation ENGR-4300 Spring 2004 Section Experiment 5 Introduction to AC Steady State

Electronics and Instrumentation ENGR-4300 Spring 2004 Section Experiment 5 Introduction to AC Steady State Experiment 5 Introduction to C Steady State Purpose: This experiment addresses combinations of resistors, capacitors and inductors driven by sinusoidal voltage sources. In addition to the usual simulation

More information

Using TDK SPICE Netlist Library and Its Basic Applications

Using TDK SPICE Netlist Library and Its Basic Applications Using TDK SPICE Netlist Library and Its Basic Applications Katsufumi EHATA Application Center, TDK Corporation Feb. 14, 2007. AN-NL06B001Rev1_en Abstract Given that circuit design by simulators has recently

More information

TAKE THE MYSTERY OUT OF PROBING. 7 Common Oscilloscope Probing Pitfalls to Avoid

TAKE THE MYSTERY OUT OF PROBING. 7 Common Oscilloscope Probing Pitfalls to Avoid TAKE THE MYSTERY OUT OF PROBING 7 Common Oscilloscope Probing Pitfalls to Avoid Introduction Understanding common probing pitfalls and how to avoid them is crucial in making better measurements. In an

More information

Model 25A Manual. Introduction:

Model 25A Manual. Introduction: Model 25A Manual Introduction: The Model 25A drive electronics is a high voltage push-pull linear power amplifier capable of output voltage swings in the order of 145v P-P, push-pull. The Model 25A provides

More information

ELEC3106 Electronics. Lab 4: EMI simulations with SPICE. Objective. Material. Simulations

ELEC3106 Electronics. Lab 4: EMI simulations with SPICE. Objective. Material. Simulations ELEC3106 Electronics Lab 4: EMI simulations with SPICE Objective The objective of this laboratory session is to give the students a good understanding of the possibilities a circuit simulator (as SPICE)

More information

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter

DESCRIPTION FEATURES APPLICATIONS TYPICAL APPLICATION. 500KHz, 18V, 2A Synchronous Step-Down Converter DESCRIPTION The is a fully integrated, high-efficiency 2A synchronous rectified step-down converter. The operates at high efficiency over a wide output current load range. This device offers two operation

More information

EE 421L Digital Electronics Laboratory. Laboratory Exercise #9 ADC and DAC

EE 421L Digital Electronics Laboratory. Laboratory Exercise #9 ADC and DAC EE 421L Digital Electronics Laboratory Laboratory Exercise #9 ADC and DAC Department of Electrical and Computer Engineering University of Nevada, at Las Vegas Objective: The purpose of this laboratory

More information

Laboratory Exercise 6 THE OSCILLOSCOPE

Laboratory Exercise 6 THE OSCILLOSCOPE Introduction Laboratory Exercise 6 THE OSCILLOSCOPE The aim of this exercise is to introduce you to the oscilloscope (often just called a scope), the most versatile and ubiquitous laboratory measuring

More information

Lab 10: Oscillators (version 1.1)

Lab 10: Oscillators (version 1.1) Lab 10: Oscillators (version 1.1) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive equipment.

More information