Differential Equations and Lumped Element Circuits

Size: px
Start display at page:

Download "Differential Equations and Lumped Element Circuits"

Transcription

1 Differential Equations and Lumped Element Circuits 8 Introduction Chapter 8 of the text discusses the numerical solution of ordinary differential equations. Differential equations and in particular linear constant coefficient differential equations (LCCDEs), are very important to electrical engineers. Electrical engineering (EE) majors take an entire semester of differential equations. First semester EE majors have had little or no exposure to differential equations. To motivate the future study of differential equations this short overview chapter will describe how LCCDEs appear in the solution of lumped element circuits problems. The Time Domain Response of RLC Circuits A lumped element circuit is composed of an interconnection of resistors, capacitors, and inductors Chapter 8: Introduction 8 1

2 The voltage current terminal relationships for these elements are shown below Resistor v R = Ri R i R = 1 ---v R R i R v + R - R Inductor v L L di L = t i L = -- v L L ( λ) dλ i L + v L - L Capacitor i C C dv C = t v C = --- i C C ( λ) dλ i C + v C - C When an RLC electrical network is configured to have a single input and single output (SISO) voltage (current) xt () RLC yt () Network voltage (current) Chapter 8: The Time Domain Response of RLC Circuits 8 2

3 Assuming the network is composed of n reactive elements, that is the number of inductors plus the number of capacitors is n, it can be shown that the output yt () and input xt () are related via an nth order LCCDE d n yt () a n d n 1 yt () n + a n n a 0 yt () d n xt () b n d n 1 xt () = n + b n n b 0 xt () (8.1) Example: An RLC lowpass filter R L v + i it () v - C o Using the terminal relationships defined above we can write that Note that v i Ri L dit () 1 = i( λ) dλ C it () C dv o = t (8.2) (8.3) Chapter 8: The Time Domain Response of RLC Circuits 8 3

4 Following substitution of (8.3)into (8.2) we obtain or v i RC dv o LC d2 v o = v o LCv o ''t () + RCv o ' + v o = v i (8.4) (8.5) To solve (8.5) numerically we can use the MATLAB function lsim(sys,u,t) (control system toolbox, also in student edition) LSIM(SYS,U,T) plots the time response of the LTI system SYS to the input signal described by U and T. The time vector T consists of regularly spaced time samples and U is a matrix with as many columns as inputs and whose i- th row specifies the input value at time T(i). For instance, t = 0:0.01:5; u = sin(t); lsim(sys,u,t) simulates the response of SYS to u(t) = sin(t) during 5 seconds. The input SYS is a system object that can be created to correspond to (8.5) using the MATLAB function tf(b,a) (control system toolbox, also in student edition) The vectors a and b are of the form a = [an an-1 an-2... a0]; b = [bn bn-1 bn-2... b0]; For the RLC circuit considered here a = [LC RC 1]; b = [1]; Chapter 8: The Time Domain Response of RLC Circuits 8 4

5 The waveform in vector U can be any time varying function represented in sampled form Test inputs can be generated using the MATLAB function GENSIG (control system toolbox, also in student edition) GENSIG Periodic signal generator for time response simulations with LSIM. [U,T] = GENSIG(TYPE,TAU) generates a scalar signal U of class TYPE and period TAU. The following classes are supported: TYPE = 'sin' --- sine wave TYPE = 'square' --- square wave TYPE = 'pulse' --- periodic pulse GENSIG returns a vector T of time samples and the vector U of signal values at these samples. All generated signals have unit amplitude. [U,T] = GENSIG(TYPE,TAU,TF,TS) further specifies the time duration TF of the signal and the spacing TS of the time samples in T. Consider the system response for R = 1 ohm, L = 5 henries, and C = 3 farads We will apply a squarewave with a 200 second period for 500 seconds» [u,t] = gensig('square',200,500,1);» R=1; L=5; C=3; lsim(tf([1],[c*l C*R 1]),u,t)» % A labeled output plot is automatically generated Chapter 8: The Time Domain Response of RLC Circuits 8 5

6 Linear Simulation Results v o R=1; L=5; C=3 1 Amplitude Time (sec.) By increasing the resistance the overshoot can be reduced, but the risetime is increased Chapter 8: The Time Domain Response of RLC Circuits 8 6

7 Linear Simulation Results 1.2 v o R=2; L=5; C= Amplitude Time (sec.) Chapter 8: The Time Domain Response of RLC Circuits 8 7

Solving a RLC Circuit using Convolution with DERIVE for Windows

Solving a RLC Circuit using Convolution with DERIVE for Windows Solving a RLC Circuit using Convolution with DERIVE for Windows Michel Beaudin École de technologie supérieure, rue Notre-Dame Ouest Montréal (Québec) Canada, H3C K3 mbeaudin@seg.etsmtl.ca - Introduction

More information

9. Introduction and Chapter Objectives

9. Introduction and Chapter Objectives Real Analog - Circuits 1 Chapter 9: Introduction to State Variable Models 9. Introduction and Chapter Objectives In our analysis approach of dynamic systems so far, we have defined variables which describe

More information

Signals and Systems Chapter 2

Signals and Systems Chapter 2 Signals and Systems Chapter 2 Continuous-Time Systems Prof. Yasser Mostafa Kadah Overview of Chapter 2 Systems and their classification Linear time-invariant systems System Concept Mathematical transformation

More information

Matlab Controller Design. 1. Control system toolbox 2. Functions for model analysis 3. Linear system simulation 4. Biochemical reactor linearization

Matlab Controller Design. 1. Control system toolbox 2. Functions for model analysis 3. Linear system simulation 4. Biochemical reactor linearization Matlab Controller Design. Control system toolbox 2. Functions for model analysis 3. Linear system simulation 4. Biochemical reactor linearization Control System Toolbox Provides algorithms and tools for

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 14 121011 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review Steady-State Analysis RC Circuits RL Circuits 3 DC Steady-State

More information

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18

Circuit Analysis-II. Circuit Analysis-II Lecture # 5 Monday 23 rd April, 18 Circuit Analysis-II Capacitors in AC Circuits Introduction ü The instantaneous capacitor current is equal to the capacitance times the instantaneous rate of change of the voltage across the capacitor.

More information

To find the step response of an RC circuit

To find the step response of an RC circuit To find the step response of an RC circuit v( t) v( ) [ v( t) v( )] e tt The time constant = RC The final capacitor voltage v() The initial capacitor voltage v(t ) To find the step response of an RL circuit

More information

LAPLACE TRANSFORMATION AND APPLICATIONS. Laplace transformation It s a transformation method used for solving differential equation.

LAPLACE TRANSFORMATION AND APPLICATIONS. Laplace transformation It s a transformation method used for solving differential equation. LAPLACE TRANSFORMATION AND APPLICATIONS Laplace transformation It s a transformation method used for solving differential equation. Advantages The solution of differential equation using LT, progresses

More information

The Phasor Solution Method

The Phasor Solution Method APPENDIX A The Phasor Solution Method This appendix is intended as a review of the important phasor methods of solving electric circuits and other linear systems in which the excitation is a singlefrequency

More information

Solutions to these tests are available online in some places (but not all explanations are good)...

Solutions to these tests are available online in some places (but not all explanations are good)... The Physics GRE Sample test put out by ETS https://www.ets.org/s/gre/pdf/practice_book_physics.pdf OSU physics website has lots of tips, and 4 additional tests http://www.physics.ohiostate.edu/undergrad/ugs_gre.php

More information

Texas A & M University Department of Mechanical Engineering MEEN 364 Dynamic Systems and Controls Dr. Alexander G. Parlos

Texas A & M University Department of Mechanical Engineering MEEN 364 Dynamic Systems and Controls Dr. Alexander G. Parlos Texas A & M University Department of Mechanical Engineering MEEN 364 Dynamic Systems and Controls Dr. Alexander G. Parlos Lecture 5: Electrical and Electromagnetic System Components The objective of this

More information

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax: Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho kwangho@hansung.ac.kr Tel: 02-760-4253 Fax:02-760-4435 Overview Review on Laplace transform Learn about transfer

More information

Lecture 7: Laplace Transform and Its Applications Dr.-Ing. Sudchai Boonto

Lecture 7: Laplace Transform and Its Applications Dr.-Ing. Sudchai Boonto Dr-Ing Sudchai Boonto Department of Control System and Instrumentation Engineering King Mongkut s Unniversity of Technology Thonburi Thailand Outline Motivation The Laplace Transform The Laplace Transform

More information

8. Introduction and Chapter Objectives

8. Introduction and Chapter Objectives Real Analog - Circuits Chapter 8: Second Order Circuits 8. Introduction and Chapter Objectives Second order systems are, by definition, systems whose input-output relationship is a second order differential

More information

Response of Second-Order Systems

Response of Second-Order Systems Unit 3 Response of SecondOrder Systems In this unit, we consider the natural and step responses of simple series and parallel circuits containing inductors, capacitors and resistors. The equations which

More information

Figure Circuit for Question 1. Figure Circuit for Question 2

Figure Circuit for Question 1. Figure Circuit for Question 2 Exercises 10.7 Exercises Multiple Choice 1. For the circuit of Figure 10.44 the time constant is A. 0.5 ms 71.43 µs 2, 000 s D. 0.2 ms 4 Ω 2 Ω 12 Ω 1 mh 12u 0 () t V Figure 10.44. Circuit for Question

More information

EE-202 Exam III April 6, 2017

EE-202 Exam III April 6, 2017 EE-202 Exam III April 6, 207 Name: (Please print clearly.) Student ID: CIRCLE YOUR DIVISION DeCarlo--202 DeCarlo--2022 7:30 MWF :30 T-TH INSTRUCTIONS There are 3 multiple choice worth 5 points each and

More information

Source-Free RC Circuit

Source-Free RC Circuit First Order Circuits Source-Free RC Circuit Initial charge on capacitor q = Cv(0) so that voltage at time 0 is v(0). What is v(t)? Prof Carruthers (ECE @ BU) EK307 Notes Summer 2018 150 / 264 First Order

More information

I System variables: states, inputs, outputs, & measurements. I Linear independence. I State space representation

I System variables: states, inputs, outputs, & measurements. I Linear independence. I State space representation EE C28 / ME C34 Feedback Control Systems Lecture Chapter 3 Modeling in the Time Domain Lecture abstract Alexandre Bayen Department of Electrical Engineering & Computer Science University of California

More information

Note 11: Alternating Current (AC) Circuits

Note 11: Alternating Current (AC) Circuits Note 11: Alternating Current (AC) Circuits V R No phase difference between the voltage difference and the current and max For alternating voltage Vmax sin t, the resistor current is ir sin t. the instantaneous

More information

EXP. NO. 3 Power on (resistive inductive & capacitive) load Series connection

EXP. NO. 3 Power on (resistive inductive & capacitive) load Series connection OBJECT: To examine the power distribution on (R, L, C) series circuit. APPARATUS 1-signal function generator 2- Oscilloscope, A.V.O meter 3- Resisters & inductor &capacitor THEORY the following form for

More information

Chapter 10: Sinusoids and Phasors

Chapter 10: Sinusoids and Phasors Chapter 10: Sinusoids and Phasors 1. Motivation 2. Sinusoid Features 3. Phasors 4. Phasor Relationships for Circuit Elements 5. Impedance and Admittance 6. Kirchhoff s Laws in the Frequency Domain 7. Impedance

More information

MODULE I. Transient Response:

MODULE I. Transient Response: Transient Response: MODULE I The Transient Response (also known as the Natural Response) is the way the circuit responds to energies stored in storage elements, such as capacitors and inductors. If a capacitor

More information

Sinusoidal Response of RLC Circuits

Sinusoidal Response of RLC Circuits Sinusoidal Response of RLC Circuits Series RL circuit Series RC circuit Series RLC circuit Parallel RL circuit Parallel RC circuit R-L Series Circuit R-L Series Circuit R-L Series Circuit Instantaneous

More information

Electric Circuit Theory

Electric Circuit Theory Electric Circuit Theory Nam Ki Min nkmin@korea.ac.kr 010-9419-2320 Chapter 8 Natural and Step Responses of RLC Circuits Nam Ki Min nkmin@korea.ac.kr 010-9419-2320 8.1 Introduction to the Natural Response

More information

First-order transient

First-order transient EIE209 Basic Electronics First-order transient Contents Inductor and capacitor Simple RC and RL circuits Transient solutions Constitutive relation An electrical element is defined by its relationship between

More information

f = 1 T 6 a.c. (Alternating Current) Circuits Most signals of interest in electronics are periodic : they repeat regularly as a function of time.

f = 1 T 6 a.c. (Alternating Current) Circuits Most signals of interest in electronics are periodic : they repeat regularly as a function of time. Analogue Electronics (Aero).66 66 Analogue Electronics (Aero) 6.66 6 a.c. (Alternating Current) Circuits Most signals of interest in electronics are periodic : they repeat regularly as a function of time.

More information

Laplace Transform Problems

Laplace Transform Problems AP Calculus BC Name: Laplace Transformation Day 3 2 January 206 Laplace Transform Problems Example problems using the Laplace Transform.. Solve the differential equation y! y = e t, with the initial value

More information

AC Circuits. The Capacitor

AC Circuits. The Capacitor The Capacitor Two conductors in close proximity (and electrically isolated from one another) form a capacitor. An electric field is produced by charge differences between the conductors. The capacitance

More information

EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA

EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA EXPERIMENT 07 TO STUDY DC RC CIRCUIT AND TRANSIENT PHENOMENA DISCUSSION The capacitor is a element which stores electric energy by charging the charge on it. Bear in mind that the charge on a capacitor

More information

Physics for Scientists & Engineers 2

Physics for Scientists & Engineers 2 Electromagnetic Oscillations Physics for Scientists & Engineers Spring Semester 005 Lecture 8! We have been working with circuits that have a constant current a current that increases to a constant current

More information

.. Use of non-programmable scientific calculator is permitted.

.. Use of non-programmable scientific calculator is permitted. This question paper contains 8+3 printed pages] Roll No. S. No. of Question Paper 7981 Cnique Paper Code 1\;ame of the Paper ~ame of the Course Semester Duration : 3 Hours 2511102 Circuit Analysis [DC-1.1]

More information

1 Phasors and Alternating Currents

1 Phasors and Alternating Currents Physics 4 Chapter : Alternating Current 0/5 Phasors and Alternating Currents alternating current: current that varies sinusoidally with time ac source: any device that supplies a sinusoidally varying potential

More information

ECE2262 Electric Circuits. Chapter 6: Capacitance and Inductance

ECE2262 Electric Circuits. Chapter 6: Capacitance and Inductance ECE2262 Electric Circuits Chapter 6: Capacitance and Inductance Capacitors Inductors Capacitor and Inductor Combinations Op-Amp Integrator and Op-Amp Differentiator 1 CAPACITANCE AND INDUCTANCE Introduces

More information

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18 Circuit Analysis-III Sinusoids Example #1 ü Find the amplitude, phase, period and frequency of the sinusoid: v (t ) =12cos(50t +10 ) Signal Conversion ü From sine to cosine and vice versa. ü sin (A ± B)

More information

EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1

EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1 EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1 PURPOSE: To experimentally study the behavior of a parallel RLC circuit by using pulse excitation and to verify that

More information

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem.

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem. page 57 1.7 Modeling Problems Using First-Order Linear Differential Equations 57 For Problems 33 38, use a differential equation solver to determine the solution to each of the initial-value problems and

More information

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011

ELECTRONICS E # 1 FUNDAMENTALS 2/2/2011 FE Review 1 ELECTRONICS E # 1 FUNDAMENTALS Electric Charge 2 In an electric circuit it there is a conservation of charge. The net electric charge is constant. There are positive and negative charges. Like

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Fall 2009 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its circuit

More information

Lab Experiment 2: Performance of First order and second order systems

Lab Experiment 2: Performance of First order and second order systems Lab Experiment 2: Performance of First order and second order systems Objective: The objective of this exercise will be to study the performance characteristics of first and second order systems using

More information

RC, RL, and LCR Circuits

RC, RL, and LCR Circuits RC, RL, and LCR Circuits EK307 Lab Note: This is a two week lab. Most students complete part A in week one and part B in week two. Introduction: Inductors and capacitors are energy storage devices. They

More information

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16 EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16 Instructions: Write your name and section number on all pages Closed book, closed notes; Computers and cell phones are not allowed You can use

More information

HOMEWORK 4: MATH 265: SOLUTIONS. y p = cos(ω 0t) 9 ω 2 0

HOMEWORK 4: MATH 265: SOLUTIONS. y p = cos(ω 0t) 9 ω 2 0 HOMEWORK 4: MATH 265: SOLUTIONS. Find the solution to the initial value problems y + 9y = cos(ωt) with y(0) = 0, y (0) = 0 (account for all ω > 0). Draw a plot of the solution when ω = and when ω = 3.

More information

I. Impedance of an R-L circuit.

I. Impedance of an R-L circuit. I. Impedance of an R-L circuit. [For inductor in an AC Circuit, see Chapter 31, pg. 1024] Consider the R-L circuit shown in Figure: 1. A current i(t) = I cos(ωt) is driven across the circuit using an AC

More information

Lecture 2. Introduction to Systems (Lathi )

Lecture 2. Introduction to Systems (Lathi ) Lecture 2 Introduction to Systems (Lathi 1.6-1.8) Pier Luigi Dragotti Department of Electrical & Electronic Engineering Imperial College London URL: www.commsp.ee.ic.ac.uk/~pld/teaching/ E-mail: p.dragotti@imperial.ac.uk

More information

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2 EE 4: Introduction to Microelectronic Circuits Spring 8: Midterm Venkat Anantharam 3/9/8 Total Time Allotted : min Total Points:. This is a closed book exam. However, you are allowed to bring two pages

More information

Introduction to AC Circuits (Capacitors and Inductors)

Introduction to AC Circuits (Capacitors and Inductors) Introduction to AC Circuits (Capacitors and Inductors) Amin Electronics and Electrical Communications Engineering Department (EECE) Cairo University elc.n102.eng@gmail.com http://scholar.cu.edu.eg/refky/

More information

School of Engineering Faculty of Built Environment, Engineering, Technology & Design

School of Engineering Faculty of Built Environment, Engineering, Technology & Design Module Name and Code : ENG60803 Real Time Instrumentation Semester and Year : Semester 5/6, Year 3 Lecture Number/ Week : Lecture 3, Week 3 Learning Outcome (s) : LO5 Module Co-ordinator/Tutor : Dr. Phang

More information

Learnabout Electronics - AC Theory

Learnabout Electronics - AC Theory Learnabout Electronics - AC Theory Facts & Formulae for AC Theory www.learnabout-electronics.org Contents AC Wave Values... 2 Capacitance... 2 Charge on a Capacitor... 2 Total Capacitance... 2 Inductance...

More information

Where, τ is in seconds, R is in ohms and C in Farads. Objective of The Experiment

Where, τ is in seconds, R is in ohms and C in Farads. Objective of The Experiment Introduction The famous multivibrator circuit was first introduced in a publication by Henri Abraham and Eugene Bloch in 1919. Multivibrators are electronic circuits designed for the purpose of applying

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts Signals A signal is a pattern of variation of a physical quantity as a function of time, space, distance, position, temperature, pressure, etc. These quantities are usually

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 20 121101 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Chapters 1-3 Circuit Analysis Techniques Chapter 10 Diodes Ideal Model

More information

Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N

Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N Modeling and Simulation Revision IV D R. T A R E K A. T U T U N J I P H I L A D E L P H I A U N I V E R S I T Y, J O R D A N 2 0 1 7 Modeling Modeling is the process of representing the behavior of a real

More information

Exercise 1: RC Time Constants

Exercise 1: RC Time Constants Exercise 1: RC EXERCISE OBJECTIVE When you have completed this exercise, you will be able to determine the time constant of an RC circuit by using calculated and measured values. You will verify your results

More information

Capacitor. Capacitor (Cont d)

Capacitor. Capacitor (Cont d) 1 2 1 Capacitor Capacitor is a passive two-terminal component storing the energy in an electric field charged by the voltage across the dielectric. Fixed Polarized Variable Capacitance is the ratio of

More information

ENGR 2405 Chapter 8. Second Order Circuits

ENGR 2405 Chapter 8. Second Order Circuits ENGR 2405 Chapter 8 Second Order Circuits Overview The previous chapter introduced the concept of first order circuits. This chapter will expand on that with second order circuits: those that need a second

More information

a + b Time Domain i(τ)dτ.

a + b Time Domain i(τ)dτ. R, C, and L Elements and their v and i relationships We deal with three essential elements in circuit analysis: Resistance R Capacitance C Inductance L Their v and i relationships are summarized below.

More information

ECE 314 Signals and Systems Fall 2012

ECE 314 Signals and Systems Fall 2012 ECE 31 ignals and ystems Fall 01 olutions to Homework 5 Problem.51 Determine the impulse response of the system described by y(n) = x(n) + ax(n k). Replace x by δ to obtain the impulse response: h(n) =

More information

Signals and systems Lecture (S3) Square Wave Example, Signal Power and Properties of Fourier Series March 18, 2008

Signals and systems Lecture (S3) Square Wave Example, Signal Power and Properties of Fourier Series March 18, 2008 Signals and systems Lecture (S3) Square Wave Example, Signal Power and Properties of Fourier Series March 18, 2008 Today s Topics 1. Derivation of a Fourier series representation of a square wave signal

More information

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance:

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance: RLC Series Circuit In this exercise you will investigate the effects of changing inductance, capacitance, resistance, and frequency on an RLC series AC circuit. We can define effective resistances for

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts 1 Signals A signal is a pattern of variation of a physical quantity, often as a function of time (but also space, distance, position, etc). These quantities are usually the

More information

First Order RC and RL Transient Circuits

First Order RC and RL Transient Circuits First Order R and RL Transient ircuits Objectives To introduce the transients phenomena. To analyze step and natural responses of first order R circuits. To analyze step and natural responses of first

More information

A capacitor is a device that stores electric charge (memory devices). A capacitor is a device that stores energy E = Q2 2C = CV 2

A capacitor is a device that stores electric charge (memory devices). A capacitor is a device that stores energy E = Q2 2C = CV 2 Capacitance: Lecture 2: Resistors and Capacitors Capacitance (C) is defined as the ratio of charge (Q) to voltage (V) on an object: C = Q/V = Coulombs/Volt = Farad Capacitance of an object depends on geometry

More information

e jωt y (t) = ω 2 Ke jωt K =

e jωt y (t) = ω 2 Ke jωt K = BME 171, Sec 2: Homework 2 Solutions due Tue, Sep 16 by 5pm 1. Consider a system governed by the second-order differential equation a d2 y(t) + b dy(t) where a, b and c are nonnegative real numbers. (a)

More information

Announcements: Today: more AC circuits

Announcements: Today: more AC circuits Announcements: Today: more AC circuits I 0 I rms Current through a light bulb I 0 I rms I t = I 0 cos ωt I 0 Current through a LED I t = I 0 cos ωt Θ(cos ωt ) Theta function (is zero for a negative argument)

More information

Alternating Current Circuits. Home Work Solutions

Alternating Current Circuits. Home Work Solutions Chapter 21 Alternating Current Circuits. Home Work s 21.1 Problem 21.11 What is the time constant of the circuit in Figure (21.19). 10 Ω 10 Ω 5.0 Ω 2.0µF 2.0µF 2.0µF 3.0µF Figure 21.19: Given: The circuit

More information

EE313 Fall 2013 Exam #1 (100 pts) Thursday, September 26, 2013 Name. 1) [6 pts] Convert the following time-domain circuit to the RMS Phasor Domain.

EE313 Fall 2013 Exam #1 (100 pts) Thursday, September 26, 2013 Name. 1) [6 pts] Convert the following time-domain circuit to the RMS Phasor Domain. Name If you have any questions ask them. Remember to include all units on your answers (V, A, etc). Clearly indicate your answers. All angles must be in the range 0 to +180 or 0 to 180 degrees. 1) [6 pts]

More information

Sinusoids and Phasors

Sinusoids and Phasors CHAPTER 9 Sinusoids and Phasors We now begins the analysis of circuits in which the voltage or current sources are time-varying. In this chapter, we are particularly interested in sinusoidally time-varying

More information

Problem info Geometry model Labelled Objects Results Nonlinear dependencies

Problem info Geometry model Labelled Objects Results Nonlinear dependencies Problem info Problem type: Transient Magnetics (integration time: 9.99999993922529E-09 s.) Geometry model class: Plane-Parallel Problem database file names: Problem: circuit.pbm Geometry: Circuit.mod Material

More information

The complete solution to systems with inputs

The complete solution to systems with inputs The complete solution to systems with inputs Slide Learning Objectives Analyze linear time-invariant systems with inputs Solve for the homogeneous response of the system Natural response without inputs

More information

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and Lecture 6: Impedance (frequency dependent resistance in the s- world), Admittance (frequency dependent conductance in the s- world), and Consequences Thereof. Professor Ray, what s an impedance? Answers:

More information

Handout 11: AC circuit. AC generator

Handout 11: AC circuit. AC generator Handout : AC circuit AC generator Figure compares the voltage across the directcurrent (DC) generator and that across the alternatingcurrent (AC) generator For DC generator, the voltage is constant For

More information

Physics 116A Notes Fall 2004

Physics 116A Notes Fall 2004 Physics 116A Notes Fall 2004 David E. Pellett Draft v.0.9 Notes Copyright 2004 David E. Pellett unless stated otherwise. References: Text for course: Fundamentals of Electrical Engineering, second edition,

More information

Chapter 13. Capacitors

Chapter 13. Capacitors Chapter 13 Capacitors Objectives Describe the basic structure and characteristics of a capacitor Discuss various types of capacitors Analyze series capacitors Analyze parallel capacitors Analyze capacitive

More information

Module 24: Outline. Expt. 8: Part 2:Undriven RLC Circuits

Module 24: Outline. Expt. 8: Part 2:Undriven RLC Circuits Module 24: Undriven RLC Circuits 1 Module 24: Outline Undriven RLC Circuits Expt. 8: Part 2:Undriven RLC Circuits 2 Circuits that Oscillate (LRC) 3 Mass on a Spring: Simple Harmonic Motion (Demonstration)

More information

Series & Parallel Resistors 3/17/2015 1

Series & Parallel Resistors 3/17/2015 1 Series & Parallel Resistors 3/17/2015 1 Series Resistors & Voltage Division Consider the single-loop circuit as shown in figure. The two resistors are in series, since the same current i flows in both

More information

EIT Quick-Review Electrical Prof. Frank Merat

EIT Quick-Review Electrical Prof. Frank Merat CIRCUITS 4 The power supplied by the 0 volt source is (a) 2 watts (b) 0 watts (c) 2 watts (d) 6 watts (e) 6 watts 4Ω 2Ω 0V i i 2 2Ω 20V Call the clockwise loop currents i and i 2 as shown in the drawing

More information

REACTANCE. By: Enzo Paterno Date: 03/2013

REACTANCE. By: Enzo Paterno Date: 03/2013 REACTANCE REACTANCE By: Enzo Paterno Date: 03/2013 5/2007 Enzo Paterno 1 RESISTANCE - R i R (t R A resistor for all practical purposes is unaffected by the frequency of the applied sinusoidal voltage or

More information

ECE Spring 2015 Final Exam

ECE Spring 2015 Final Exam ECE 20100 Spring 2015 Final Exam May 7, 2015 Section (circle below) Jung (1:30) 0001 Qi (12:30) 0002 Peleato (9:30) 0004 Allen (10:30) 0005 Zhu (4:30) 0006 Name PUID Instructions 1. DO NOT START UNTIL

More information

Problem Weight Total 100

Problem Weight Total 100 EE 350 Problem Set 3 Cover Sheet Fall 2016 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: Submission deadlines: Turn in the written solutions by 4:00 pm on Tuesday September

More information

FE Review 2/2/2011. Electric Charge. Electric Energy ELECTRONICS # 1 FUNDAMENTALS

FE Review 2/2/2011. Electric Charge. Electric Energy ELECTRONICS # 1 FUNDAMENTALS FE eview ELECONICS # FUNDAMENALS Electric Charge 2 In an electric circuit there is a conservation of charge. he net electric charge is constant. here are positive and negative charges. Like charges repel

More information

Circuits with Capacitor and Inductor

Circuits with Capacitor and Inductor Circuits with Capacitor and Inductor We have discussed so far circuits only with resistors. While analyzing it, we came across with the set of algebraic equations. Hereafter we will analyze circuits with

More information

Noise - irrelevant data; variability in a quantity that has no meaning or significance. In most cases this is modeled as a random variable.

Noise - irrelevant data; variability in a quantity that has no meaning or significance. In most cases this is modeled as a random variable. 1.1 Signals and Systems Signals convey information. Systems respond to (or process) information. Engineers desire mathematical models for signals and systems in order to solve design problems efficiently

More information

CDS 101/110: Lecture 3.1 Linear Systems

CDS 101/110: Lecture 3.1 Linear Systems CDS /: Lecture 3. Linear Systems Goals for Today: Describe and motivate linear system models: Summarize properties, examples, and tools Joel Burdick (substituting for Richard Murray) jwb@robotics.caltech.edu,

More information

Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits

Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the timevarying

More information

DOING PHYSICS WITH MATLAB

DOING PHYSICS WITH MATLAB DOING PHYSIS WITH MATAB THE FINITE DIFFERENE METHOD FOR THE NUMERIA ANAYSIS OF IRUITS ONTAINING RESISTORS, APAITORS AND INDUTORS MATAB DOWNOAD DIRETORY N01.m Voltage and current for a resistor, capacitor

More information

Inductors. Hydraulic analogy Duality with capacitor Charging and discharging. Lecture 12: Inductors

Inductors. Hydraulic analogy Duality with capacitor Charging and discharging. Lecture 12: Inductors Lecture 12: nductors nductors Hydraulic analogy Duality with capacitor Charging and discharging Robert R. McLeod, University of Colorado http://hilaroad.com/camp/projects/magnet.html 99 Lecture 12: nductors

More information

E40M. RC Circuits and Impedance. M. Horowitz, J. Plummer, R. Howe

E40M. RC Circuits and Impedance. M. Horowitz, J. Plummer, R. Howe E40M RC Circuits and Impedance Reading Reader: Chapter 6 Capacitance (if you haven t read it yet) Section 7.3 Impedance You should skip all the parts about inductors We will talk about them in a lecture

More information

Chapter 10: Sinusoidal Steady-State Analysis

Chapter 10: Sinusoidal Steady-State Analysis Chapter 10: Sinusoidal Steady-State Analysis 1 Objectives : sinusoidal functions Impedance use phasors to determine the forced response of a circuit subjected to sinusoidal excitation Apply techniques

More information

Some of the different forms of a signal, obtained by transformations, are shown in the figure. jwt e z. jwt z e

Some of the different forms of a signal, obtained by transformations, are shown in the figure. jwt e z. jwt z e Transform methods Some of the different forms of a signal, obtained by transformations, are shown in the figure. X(s) X(t) L - L F - F jw s s jw X(jw) X*(t) F - F X*(jw) jwt e z jwt z e X(nT) Z - Z X(z)

More information

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3.

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. Electromagnetic Oscillations and Alternating Current 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. RLC circuit in AC 1 RL and RC circuits RL RC Charging Discharging I = emf R

More information

Fourier series. XE31EO2 - Pavel Máša. Electrical Circuits 2 Lecture1. XE31EO2 - Pavel Máša - Fourier Series

Fourier series. XE31EO2 - Pavel Máša. Electrical Circuits 2 Lecture1. XE31EO2 - Pavel Máša - Fourier Series Fourier series Electrical Circuits Lecture - Fourier Series Filtr RLC defibrillator MOTIVATION WHAT WE CAN'T EXPLAIN YET Source voltage rectangular waveform Resistor voltage sinusoidal waveform - Fourier

More information

Bfh Ti Control F Ws 2008/2009 Lab Matlab-1

Bfh Ti Control F Ws 2008/2009 Lab Matlab-1 Bfh Ti Control F Ws 2008/2009 Lab Matlab-1 Theme: The very first steps with Matlab. Goals: After this laboratory you should be able to solve simple numerical engineering problems with Matlab. Furthermore,

More information

Basic RL and RC Circuits R-L TRANSIENTS: STORAGE CYCLE. Engineering Collage Electrical Engineering Dep. Dr. Ibrahim Aljubouri

Basic RL and RC Circuits R-L TRANSIENTS: STORAGE CYCLE. Engineering Collage Electrical Engineering Dep. Dr. Ibrahim Aljubouri st Class Basic RL and RC Circuits The RL circuit with D.C (steady state) The inductor is short time at Calculate the inductor current for circuits shown below. I L E R A I L E R R 3 R R 3 I L I L R 3 R

More information

AC&ST AUTOMATIC CONTROL AND SYSTEM THEORY SYSTEMS AND MODELS. Claudio Melchiorri

AC&ST AUTOMATIC CONTROL AND SYSTEM THEORY SYSTEMS AND MODELS. Claudio Melchiorri C. Melchiorri (DEI) Automatic Control & System Theory 1 AUTOMATIC CONTROL AND SYSTEM THEORY SYSTEMS AND MODELS Claudio Melchiorri Dipartimento di Ingegneria dell Energia Elettrica e dell Informazione (DEI)

More information

ECE Spring 2017 Final Exam

ECE Spring 2017 Final Exam ECE 20100 Spring 2017 Final Exam May 2, 2017 Section (circle below) Qi (12:30) 0001 Tan (10:30) 0004 Hosseini (7:30) 0005 Cui (1:30) 0006 Jung (11:30) 0007 Lin (9:30) 0008 Peleato-Inarrea (2:30) 0009 Name

More information

Interconnection of LTI Systems

Interconnection of LTI Systems EENG226 Signals and Systems Chapter 2 Time-Domain Representations of Linear Time-Invariant Systems Interconnection of LTI Systems Prof. Dr. Hasan AMCA Electrical and Electronic Engineering Department (ee.emu.edu.tr)

More information

REUNotes08-CircuitBasics May 28, 2008

REUNotes08-CircuitBasics May 28, 2008 Chapter One Circuits (... introduction here... ) 1.1 CIRCUIT BASICS Objects may possess a property known as electric charge. By convention, an electron has one negative charge ( 1) and a proton has one

More information

CDS 101/110: Lecture 3.1 Linear Systems

CDS 101/110: Lecture 3.1 Linear Systems CDS /: Lecture 3. Linear Systems Goals for Today: Revist and motivate linear time-invariant system models: Summarize properties, examples, and tools Convolution equation describing solution in response

More information

Problem Weight Score Total 100

Problem Weight Score Total 100 EE 350 EXAM IV 15 December 2010 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO DO SO Problem Weight Score 1 25 2 25 3 25 4 25 Total

More information