HW6 Text Problem NE2.4, using method from class for state transition matrix estimated with the Taylor series

Size: px
Start display at page:

Download "HW6 Text Problem NE2.4, using method from class for state transition matrix estimated with the Taylor series"

Transcription

1

2

3

4

5 EGR 326 HW6 Text Problem NE2.4, using method from class for state transition matrix estimated with the Taylor series >> A >> x0 2 1 With 3 terms from the Taylor Series: >> MatrxExpCalc e At with three terms = x(t) with three terms = With 4 terms from the Taylor Series: e At with four terms = x(t) with four terms =

6 EGR 326 HW 6 Thermal System Solution March 2017 Model of Thermal Dynamics of a Small Cabin The model is developed from the dynamic thermal equation Q stored = Q flowin +Q generated Q flowout + ( dw dt ) " dt C in % h $ ' = Q solar +Q heater Q convection:conduction # dt & " C p ρv dt % in $ ' = (yw / m 2 )(windowarea)+vi (T T ) in out # dt & define the state variable of this first order system: x = T in T in = 1 " T in ( + Q solar +Q heater + T + % out C $ * - h # R th ) R ' where the [] indicate the input, u, to the system Th,& y = [1]x +[0]u R th Note that in this model, the term yw/m 2 is to indicate that you select the numerical value for y in the units of Watts/m 2 and multiply this value by the area of your windows (in m 2 ). Also, the term (dw/dt) is not needed in this cabin model, unless you are in fact doing work on your house, such as compressing it, or sliding it around. There are many options for how to represent this system, and also for the assumptions you make. You are unlikely to have made all the same assumptions as I have made in these solutions. Matlab Script % Cabin_script.m --> with Thermal_HW6.mdl % J Cardell, March 2017 % Script for Simulink model of the small cabin thermal dynamics % System Parameters Cp = 1005; % Air specific heat J/kg K rho = 1.2; % Air density at 25 C; kg/m^3 vol = 256; % Volume of cabin, m^3 Qsolar = 600*6.0*60; % Solar input: 600W/m^2 % assuming window area = 6.0m^2; *60sec/min Qheater = 1500*60; Rth = 0.1/60; % 1500W heater; * 60sec/min % Thermal resistance of cabin = 0.1 K/W %(flat resp if R=10); /60sec/min Tout = 273; % Outside temperature is 0C = 273K Tout_Rth = Tout/Rth; % For 'Q input' due to convection along outside walls % Run the simulink model % Note that in the model, the initial condition for Tin is set to 20 C sim('thermal_hw6'); % Define data vectors written to Matlab workspace by Simulink 'To % Workspace' block.

7 EGR 326 HW 6 Thermal System Solution March 2017 t = Qin.time; u = Qin.signals.values; y1 = Tinside.signals.values(:,1); % plot the data figure hold on subplot(2, 1, 1) plot(t, u, 'r-', 'LineWidth', 2) title('sum of All Qin') ylabel('heat Transfer (J/min)') grid subplot(2, 1, 2) plot(t, y1, 'b-', 'LineWidth', 2) title('response of Inside Temperature to Q Dynamics') ylabel('inside Temperature (K)') xlabel('t (min)') grid hold off % Run the second model - with the (Tin - Tout)/Rth term explicitly % modeled in this Simulink.mdl file sim('thermal_hw6_v2'); % Define data vectors written to Matlab workspace by Simulink 'To % Workspace' block. t2 = Qin2.time; u2 = Qin2.signals.values; y2 = Tinside2.signals.values(:,1); % plot the data figure (2) hold on subplot(2, 1, 1) plot(t2, u2, 'r-', 'LineWidth', 2) title('sum of All Qin') ylabel('heat Transfer (J/min)') grid subplot(2, 1, 2) plot(t2, y2, 'b-', 'LineWidth', 2) title('response of Inside Temperature to Q Dynamics, Version 2') ylabel('inside Temperature (K)') xlabel('t (min)') grid hold off

8 EGR 326 HW 6 Thermal System Solution March 2017 Version 1 of Cabin Model Model with T in as the dynamic variable, separated from the (T out /R Th ) term in the Simulink diagram. Note that T in is fedback, and divided by R Th in the dynamic loop, and (T out /R Th ) is a separate input source. Version 2 of Cabin Model Model with T in as the dynamic variable as above, yet the (T in T out )/R Th term in this diagram is modeled explicitly as that mathematical term. Note that these models are identical in behavior and graphs produced.

9 EGR 326 HW 6 Thermal System Solution March 2017 Results of running the model: Behavior of the inside temperature 5 x 105 Sum of All Qin Heat Transfer (J/min) Inside Temperature (K) Response of Inside Temperature to Q Dynamics t (min) Thermal System Model Discussion: Response of Inside Temperature Our system is a first order system, with a single energy storage element the interior of the cabin, and a single dynamic, or state, variable the temperature of the interior of the cabin. We could develop a more complex, higher order system, if we included other thermal storage elements such as the walls, the roof, the floor (which could be a huge, concrete, thermal mass) The input plot shows the aggregate input from the solar flux, Qsolar, electric heater, Qheater, and the conduction and convection heat transfer due to the temperature difference between inside and outside temperatures and the thermal resistance of the cabin. For the results plotted above, the sun is shining into the cabin for 10 minutes and the heater is on for 5 minutes. The convectionconduction effect is active for all time. Note that many of you had a more expected use of the inputs, in that while the sun was shining, the heater was not on, and visa-versa. This is probably a better representation of the inputs than I have above! Without Q solar or Q heater, the indoor temperature falls slowly, as seen from 0 to 10 minutes, and after 20 minutes. With the input from the sun and the heater, the indoor temperature rises from around 293 to 301K, or 20 to 28 C.

10 EGR 326 HW 6 Thermal System Solution March 2017 The response time of the indoor temperature is quantified in the time constant of this system, with τ = R Th C h (lumped thermal resistance times lumped thermal capacitance). This is the same expression as for the time constant in an RC circuit! For this system, τ = (0.1 K/W)(1005 J/kg K)(1.2 kg/m 3 )(256 m 3 ) 30,874s 8 hours, 35 minutes. This is the time it would take for the system to reach 63% of its maximum value, which clearly would be way to hot for anyone to survive. Discussion: Dynamics in Thermal Systems The oscillations in electrical and mechanical systems can be interpreted as the exchange of energy between different types of dynamic elements. For electrical systems, energy is exchanged between electrical and magnetic fields in capacitors and inductors. In mechanical systems kinetic and potential energy is exchanged between masses and springs. Thermal systems have only one type of dynamic element, a thermal capacitance that stores energy, and one type of energy (thermal or heat energy). Without two types of dynamic elements to be exchanging energy there can be no oscillations heat always flows from higher to lower temperatures with the dynamic thermal elements that we encounter in this universe. From this perspective, we can see that there is no source for oscillations within thermal systems, only exponential growth and decay, along with dissipation of thermal energy. Also, from thermodynamics we know that the natural response of heat transfer is from high temperature to low temperature, indicating that there will not be overshoot or oscillation in a thermal dynamic system.

Lecture 39. PHYC 161 Fall 2016

Lecture 39. PHYC 161 Fall 2016 Lecture 39 PHYC 161 Fall 016 Announcements DO THE ONLINE COURSE EVALUATIONS - response so far is < 8 % Magnetic field energy A resistor is a device in which energy is irrecoverably dissipated. By contrast,

More information

Inductance, RL and RLC Circuits

Inductance, RL and RLC Circuits Inductance, RL and RLC Circuits Inductance Temporarily storage of energy by the magnetic field When the switch is closed, the current does not immediately reach its maximum value. Faraday s law of electromagnetic

More information

PES 1120 Spring 2014, Spendier Lecture 35/Page 1

PES 1120 Spring 2014, Spendier Lecture 35/Page 1 PES 0 Spring 04, Spendier Lecture 35/Page Today: chapter 3 - LC circuits We have explored the basic physics of electric and magnetic fields and how energy can be stored in capacitors and inductors. We

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

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

Thermal System Closed-Loop Temperature Control

Thermal System Closed-Loop Temperature Control Thermal System Closed-Loop Temperature Control aluminum plate thin-film resistive heater ceramic insulation conduction and convection heat transfer AD590 temperature sensor microcontroller on-off closed-loop

More information

Slide 1 / 26. Inductance by Bryan Pflueger

Slide 1 / 26. Inductance by Bryan Pflueger Slide 1 / 26 Inductance 2011 by Bryan Pflueger Slide 2 / 26 Mutual Inductance If two coils of wire are placed near each other and have a current passing through them, they will each induce an emf on one

More information

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS 2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM In the circuit shown above, resistors 1 and 2 of resistance R 1 and R 2, respectively, and an inductor of inductance L are connected to a battery of emf e and

More information

Handout 10: Inductance. Self-Inductance and inductors

Handout 10: Inductance. Self-Inductance and inductors 1 Handout 10: Inductance Self-Inductance and inductors In Fig. 1, electric current is present in an isolate circuit, setting up magnetic field that causes a magnetic flux through the circuit itself. This

More information

Index. Index. More information. in this web service Cambridge University Press

Index. Index. More information.  in this web service Cambridge University Press A-type elements, 4 7, 18, 31, 168, 198, 202, 219, 220, 222, 225 A-type variables. See Across variable ac current, 172, 251 ac induction motor, 251 Acceleration rotational, 30 translational, 16 Accumulator,

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

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

Chapter 32. Inductance

Chapter 32. Inductance Chapter 32 Inductance Joseph Henry 1797 1878 American physicist First director of the Smithsonian Improved design of electromagnet Constructed one of the first motors Discovered self-inductance Unit of

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

Inductance. Slide 2 / 26. Slide 1 / 26. Slide 4 / 26. Slide 3 / 26. Slide 6 / 26. Slide 5 / 26. Mutual Inductance. Mutual Inductance.

Inductance. Slide 2 / 26. Slide 1 / 26. Slide 4 / 26. Slide 3 / 26. Slide 6 / 26. Slide 5 / 26. Mutual Inductance. Mutual Inductance. Slide 1 / 26 Inductance 2011 by Bryan Pflueger Slide 2 / 26 Mutual Inductance If two coils of wire are placed near each other and have a current passing through them, they will each induce an emf on one

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

Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the time-varying current.

Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the time-varying current. Inductance Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the time-varying current. Basis of the electrical circuit element called an

More information

Principles of Food and Bioprocess Engineering (FS 231) Problems on Heat Transfer

Principles of Food and Bioprocess Engineering (FS 231) Problems on Heat Transfer Principles of Food and Bioprocess Engineering (FS 1) Problems on Heat Transfer 1. What is the thermal conductivity of a material 8 cm thick if the temperature at one end of the product is 0 C and the temperature

More information

Chapter 30. Inductance. PowerPoint Lectures for University Physics, 14th Edition Hugh D. Young and Roger A. Freedman Lectures by Jason Harlow

Chapter 30. Inductance. PowerPoint Lectures for University Physics, 14th Edition Hugh D. Young and Roger A. Freedman Lectures by Jason Harlow Chapter 30 Inductance PowerPoint Lectures for University Physics, 14th Edition Hugh D. Young and Roger A. Freedman Lectures by Jason Harlow Learning Goals for Chapter 30 Looking forward at how a time-varying

More information

PROBLEM 1.2 ( ) 25 C 15 C dx L 0.30 m Ambient air temperature, T2 (C)

PROBLEM 1.2 ( ) 25 C 15 C dx L 0.30 m Ambient air temperature, T2 (C) PROBLEM 1.2 KNOWN: Inner surface temperature and thermal conductivity of a concrete wall. FIND: Heat loss by conduction through the wall as a function of ambient air temperatures ranging from -15 to 38

More information

EM Oscillations. David J. Starling Penn State Hazleton PHYS 212

EM Oscillations. David J. Starling Penn State Hazleton PHYS 212 I ve got an oscillating fan at my house. The fan goes back and forth. It looks like the fan is saying No. So I like to ask it questions that a fan would say no to. Do you keep my hair in place? Do you

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

Coupled Electrical Oscillators Physics Advanced Physics Lab - Summer 2018 Don Heiman, Northeastern University, 5/24/2018

Coupled Electrical Oscillators Physics Advanced Physics Lab - Summer 2018 Don Heiman, Northeastern University, 5/24/2018 Coupled Electrical Oscillators Physics 3600 - Advanced Physics Lab - Summer 08 Don Heiman, Northeastern University, 5/4/08 I. INTRODUCTION The objectives of this experiment are: () explore the properties

More information

AP Physics C Mechanics Objectives

AP Physics C Mechanics Objectives AP Physics C Mechanics Objectives I. KINEMATICS A. Motion in One Dimension 1. The relationships among position, velocity and acceleration a. Given a graph of position vs. time, identify or sketch a graph

More information

Chapter 30 Inductance

Chapter 30 Inductance Chapter 30 Inductance In this chapter we investigate the properties of an inductor in a circuit. There are two kinds of inductance mutual inductance and self-inductance. An inductor is formed by taken

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2003 Experiment 17: RLC Circuit (modified 4/15/2003) OBJECTIVES

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2003 Experiment 17: RLC Circuit (modified 4/15/2003) OBJECTIVES MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8. Spring 3 Experiment 7: R Circuit (modified 4/5/3) OBJECTIVES. To observe electrical oscillations, measure their frequencies, and verify energy

More information

C R. Consider from point of view of energy! Consider the RC and LC series circuits shown:

C R. Consider from point of view of energy! Consider the RC and LC series circuits shown: ircuits onsider the R and series circuits shown: ++++ ---- R ++++ ---- Suppose that the circuits are formed at t with the capacitor charged to value. There is a qualitative difference in the time development

More information

Active Figure 32.3 (SLIDESHOW MODE ONLY)

Active Figure 32.3 (SLIDESHOW MODE ONLY) RL Circuit, Analysis An RL circuit contains an inductor and a resistor When the switch is closed (at time t = 0), the current begins to increase At the same time, a back emf is induced in the inductor

More information

Lecture Fluid system elements

Lecture Fluid system elements Lecture 8.1 Fluid system elements volumetric flowrate pressure drop Detailed distributed models of fluids, such as the Navier-Stokes equations, are necessary for understanding many aspects of fluid systems

More information

Assessment Schedule 2015 Physics: Demonstrate understanding of electrical systems (91526)

Assessment Schedule 2015 Physics: Demonstrate understanding of electrical systems (91526) NCEA Level 3 Physics (91526) 2015 page 1 of 6 Assessment Schedule 2015 Physics: Demonstrate understanding of electrical systems (91526) Evidence Q Evidence Achievement Achievement with Merit Achievement

More information

First and Second Order Circuits. Claudio Talarico, Gonzaga University Spring 2015

First and Second Order Circuits. Claudio Talarico, Gonzaga University Spring 2015 First and Second Order Circuits Claudio Talarico, Gonzaga University Spring 2015 Capacitors and Inductors intuition: bucket of charge q = Cv i = C dv dt Resist change of voltage DC open circuit Store voltage

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

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

Alternating Current. Symbol for A.C. source. A.C.

Alternating Current. Symbol for A.C. source. A.C. Alternating Current Kirchoff s rules for loops and junctions may be used to analyze complicated circuits such as the one below, powered by an alternating current (A.C.) source. But the analysis can quickly

More information

PROBLEM 1.3. dt T1 T dx L 0.30 m

PROBLEM 1.3. dt T1 T dx L 0.30 m PROBLEM 1.3 KNOWN: Inner surface temperature and thermal conductivity of a concrete wall. FIND: Heat loss by conduction through the wall as a function of outer surface temperatures ranging from -15 to

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

University of Rome Tor Vergata

University of Rome Tor Vergata University of Rome Tor Vergata Faculty of Engineering Department of Industrial Engineering THERMODYNAMIC AND HEAT TRANSFER HEAT TRANSFER dr. G. Bovesecchi gianluigi.bovesecchi@gmail.com 06-7259-727 (7249)

More information

Interconnection Relationships. Derive Input/Output Models. School of Mechanical Engineering Purdue University

Interconnection Relationships. Derive Input/Output Models. School of Mechanical Engineering Purdue University hermal Systems Basic Modeling Elements esistance esistance Conduction Convection adiation Capacitance Interconnection elationships Energy Balance - st Law of hermodynamics Derive Input/Output Models ME375

More information

Louisiana State University Physics 2102, Exam 2, March 5th, 2009.

Louisiana State University Physics 2102, Exam 2, March 5th, 2009. PRINT Your Name: Instructor: Louisiana State University Physics 2102, Exam 2, March 5th, 2009. Please be sure to PRINT your name and class instructor above. The test consists of 4 questions (multiple choice),

More information

Using MATLAB with the Convolution Method

Using MATLAB with the Convolution Method ECE 350 Linear Systems I MATLAB Tutorial #5 Using MATLAB with the Convolution Method A linear system with input, x(t), and output, y(t), can be described in terms of its impulse response, h(t). x(t) h(t)

More information

Feedback Control part 2

Feedback Control part 2 Overview Feedback Control part EGR 36 April 19, 017 Concepts from EGR 0 Open- and closed-loop control Everything before chapter 7 are open-loop systems Transient response Design criteria Translate criteria

More information

TSU Spring 2010 Physics 2020 Final Exam Name. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

TSU Spring 2010 Physics 2020 Final Exam Name. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. TSU Spring 2010 Physics 2020 Final Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) Convection can occur 1) A) only in gases. B) only

More information

Physical Modelling with Simscape Rick Hyde

Physical Modelling with Simscape Rick Hyde Physical Modelling with Simscape Rick Hyde 1 2013 The MathWorks, Inc. Outline Part 1: Introduction to Simscape Review approaches to modelling Overview of Simscape-based libraries Introduction to physical

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

ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER. 3 August 2004

ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER. 3 August 2004 ECE309 INTRODUCTION TO THERMODYNAMICS & HEAT TRANSFER 3 August 004 Final Examination R. Culham This is a 3 hour, closed-book examination. You are permitted to use one 8.5 in. in. crib sheet (both sides),

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

Electromagnetic Induction (Chapters 31-32)

Electromagnetic Induction (Chapters 31-32) Electromagnetic Induction (Chapters 31-3) The laws of emf induction: Faraday s and Lenz s laws Inductance Mutual inductance M Self inductance L. Inductors Magnetic field energy Simple inductive circuits

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

Class #12: Experiment The Exponential Function in Circuits, Pt 1

Class #12: Experiment The Exponential Function in Circuits, Pt 1 Class #12: Experiment The Exponential Function in Circuits, Pt 1 Purpose: The objective of this experiment is to begin to become familiar with the properties and uses of the exponential function in circuits

More information

Chapter 32. Inductance

Chapter 32. Inductance Chapter 32 Inductance Inductance Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the time-varying current. Basis of the electrical circuit

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocwmitedu 00 Dynamics and Control II Spring 00 For information about citing these materials or our Terms of Use, visit: http://ocwmitedu/terms Massachusetts Institute of Technology

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

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT Chapter 31: ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT 1 A charged capacitor and an inductor are connected in series At time t = 0 the current is zero, but the capacitor is charged If T is the

More information

Step Response of First-Order Systems

Step Response of First-Order Systems INTRODUCTION This tutorial discusses the response of a first-order system to a unit step function input. In particular, it addresses the time constant and how that affects the speed of the system s response.

More information

COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING

COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING COURSE: MCE 524 DISCLAIMER The contents of this document are intended for practice and leaning purposes at the

More information

Chapter 23: Magnetic Flux and Faraday s Law of Induction

Chapter 23: Magnetic Flux and Faraday s Law of Induction Chapter 3: Magnetic Flux and Faraday s Law of Induction Answers Conceptual Questions 6. Nothing. In this case, the break prevents a current from circulating around the ring. This, in turn, prevents the

More information

General Response of Second Order System

General Response of Second Order System General Response of Second Order System Slide 1 Learning Objectives Learn to analyze a general second order system and to obtain the general solution Identify the over-damped, under-damped, and critically

More information

Thermal Systems. Basic Modeling Elements. Interconnection Relationships. Derive Input/Output Models. Resistance. Capacitance

Thermal Systems. Basic Modeling Elements. Interconnection Relationships. Derive Input/Output Models. Resistance. Capacitance hermal Systems Basic Modeling Elements Resistance Conduction Convection Radiation Capacitance Interconnection Relationships Energy Balance - 1st Law of hermodynamics Derive Input/Output Models ME375 hermal

More information

Chapter 1: 20, 23, 35, 41, 68, 71, 76, 77, 80, 85, 90, 101, 103 and 104.

Chapter 1: 20, 23, 35, 41, 68, 71, 76, 77, 80, 85, 90, 101, 103 and 104. Chapter 1: 0, 3, 35, 1, 68, 71, 76, 77, 80, 85, 90, 101, 103 and 10. 1-0 The filament of a 150 W incandescent lamp is 5 cm long and has a diameter of 0.5 mm. The heat flux on the surface of the filament,

More information

Assessment Schedule 2016 Physics: Demonstrate understanding electrical systems (91526)

Assessment Schedule 2016 Physics: Demonstrate understanding electrical systems (91526) NCEA evel 3 Physics (91526) 2016 page 1 of 5 Assessment Schedule 2016 Physics: Demonstrate understanding electrical systems (91526) Evidence Statement NØ N1 N 2 A 3 A 4 M 5 M 6 E 7 E 8 0 1A 2A 3A 4A or

More information

Inductance, RL Circuits, LC Circuits, RLC Circuits

Inductance, RL Circuits, LC Circuits, RLC Circuits Inductance, R Circuits, C Circuits, RC Circuits Inductance What happens when we close the switch? The current flows What does the current look like as a function of time? Does it look like this? I t Inductance

More information

Relationship to Thermodynamics. Chapter One Section 1.3

Relationship to Thermodynamics. Chapter One Section 1.3 Relationship to Thermodynamics Chapter One Section 1.3 Alternative Formulations Alternative Formulations Time Basis: CONSERVATION OF ENERGY (FIRST LAW OF THERMODYNAMICS) An important tool in heat transfer

More information

Introduction to Heat and Mass Transfer. Week 7

Introduction to Heat and Mass Transfer. Week 7 Introduction to Heat and Mass Transfer Week 7 Example Solution Technique Using either finite difference method or finite volume method, we end up with a set of simultaneous algebraic equations in terms

More information

PHYS 272 (Spring 2018): Introductory Physics: Fields Problem-solving sessions

PHYS 272 (Spring 2018): Introductory Physics: Fields Problem-solving sessions Figure 1: Problem 1 Figure 2: Problem 2 PHYS 272 (Spring 2018): Introductory Physics: Fields Problem-solving sessions (1). A thin rod of length l carries a total charge Q distributed uniformly along its

More information

The self-inductance depends on the geometric shape of the coil. An inductor is a coil of wire used in a circuit to provide inductance is an inductor.

The self-inductance depends on the geometric shape of the coil. An inductor is a coil of wire used in a circuit to provide inductance is an inductor. Self Inductance and Mutual Inductance Script Self-Inductance Consider a coil carrying a current i. The current in the coil produces a magnetic field B that varies from point to point in the coil. The magnetic

More information

Physics 24 Exam 2 March 18, 2014

Physics 24 Exam 2 March 18, 2014 Exam Total / 200 Physics 24 Exam 2 March 18, 2014 Printed Name: Rec. Sec. Letter: Five multiple choice questions, 8 points each. Choose the best or most nearly correct answer. 1. You need to store electrical

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

Physics Higher level Paper 1

Physics Higher level Paper 1 M17/4/PHYSI/HPM/ENG/TZ1/XX Physics Higher level Paper 1 Monday 15 May 17 (afternoon) 1 hour Instructions to candidates Do not open this examination paper until instructed to do so. Answer all the questions.

More information

Lecture 27: FRI 20 MAR

Lecture 27: FRI 20 MAR Physics 2102 Jonathan Dowling Lecture 27: FRI 20 MAR Ch.30.7 9 Inductors & Inductance Nikolai Tesla Inductors: Solenoids Inductors are with respect to the magnetic field what capacitors are with respect

More information

QUESTION ANSWER. . e. Fourier number:

QUESTION ANSWER. . e. Fourier number: QUESTION 1. (0 pts) The Lumped Capacitance Method (a) List and describe the implications of the two major assumptions of the lumped capacitance method. (6 pts) (b) Define the Biot number by equations and

More information

Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March :00 to 8:00 PM

Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March :00 to 8:00 PM Name: ME 315: Heat and Mass Transfer Spring 2008 EXAM 2 Tuesday, 18 March 2008 7:00 to 8:00 PM Instructions: This is an open-book eam. You may refer to your course tetbook, your class notes and your graded

More information

A 2. The potential difference across the capacitor is F m N m /C m. R R m m R m R m 0

A 2. The potential difference across the capacitor is F m N m /C m. R R m m R m R m 0 30.53. Model: The charged metal spheres are isolated and far from each other and anything else. Solve: (a) The charge on a sphere of radius r, charged to a potential V 0 is given by the equations: The

More information

qxbxg. That is, the heat rate within the object is everywhere constant. From Fourier s

qxbxg. That is, the heat rate within the object is everywhere constant. From Fourier s PROBLEM.1 KNOWN: Steady-state, one-dimensional heat conduction through an axisymmetric shape. FIND: Sketch temperature distribution and explain shape of curve. ASSUMPTIONS: (1) Steady-state, one-dimensional

More information

Modeling and Simulation Revision III 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 III 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 III 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 0 1 4 Block Diagrams Block diagram models consist of two fundamental objects:

More information

Equivalent Circuits. Henna Tahvanainen. November 4, ELEC-E5610 Acoustics and the Physics of Sound, Lecture 3

Equivalent Circuits. Henna Tahvanainen. November 4, ELEC-E5610 Acoustics and the Physics of Sound, Lecture 3 Equivalent Circuits ELEC-E5610 Acoustics and the Physics of Sound, Lecture 3 Henna Tahvanainen Department of Signal Processing and Acoustics Aalto University School of Science and Technology November 4,

More information

Non-Continuum Energy Transfer: Overview

Non-Continuum Energy Transfer: Overview Non-Continuum Energy Transfer: Overview D. B. Go Slide 1 Topics Covered To Date Conduction - transport of thermal energy through a medium (solid/ liquid/gas) due to the random motion of the energy carriers

More information

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009.

Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. PRINT Your Name: Instructor: Louisiana State University Physics 2102, Exam 3 April 2nd, 2009. Please be sure to PRINT your name and class instructor above. The test consists of 4 questions (multiple choice),

More information

In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor

In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor and the inductor. We will consider these two types

More information

PROBLEM Node 5: ( ) ( ) ( ) ( )

PROBLEM Node 5: ( ) ( ) ( ) ( ) PROBLEM 4.78 KNOWN: Nodal network and boundary conditions for a water-cooled cold plate. FIND: (a) Steady-state temperature distribution for prescribed conditions, (b) Means by which operation may be extended

More information

3 The non-linear elements

3 The non-linear elements 3.1 Introduction The inductor and the capacitor are the two important passive circuit elements which have the ability to store and deliver finite amount of energy [49]. In an inductor, the energy is stored

More information

Real Analog Chapter 7: First Order Circuits. 7 Introduction and Chapter Objectives

Real Analog Chapter 7: First Order Circuits. 7 Introduction and Chapter Objectives 1300 Henley Court Pullman, WA 99163 509.334.6306 www.store. digilent.com 7 Introduction and Chapter Objectives First order systems are, by definition, systems whose inputoutput relationship is a first

More information

Induced Field Direction at Center of loop=

Induced Field Direction at Center of loop= Worksheet for Exploration 29.1: Lenz's Law Lenz's law is the part of Faraday's law that tells you in which direction the current in a loop will flow. Current flows in such a way as to oppose the change

More information

4.1 Derivation and Boundary Conditions for Non-Nipped Interfaces

4.1 Derivation and Boundary Conditions for Non-Nipped Interfaces Chapter 4 Roller-Web Interface Finite Difference Model The end goal of this project is to allow the correct specification of a roller-heater system given a general set of customer requirements. Often the

More information

2.4 Models of Oscillation

2.4 Models of Oscillation 2.4 Models of Oscillation In this section we give three examples of oscillating physical systems that can be modeled by the harmonic oscillator equation. Such models are ubiquitous in physics, but are

More information

P441 Analytical Mechanics - I. RLC Circuits. c Alex R. Dzierba. In this note we discuss electrical oscillating circuits: undamped, damped and driven.

P441 Analytical Mechanics - I. RLC Circuits. c Alex R. Dzierba. In this note we discuss electrical oscillating circuits: undamped, damped and driven. Lecture 10 Monday - September 19, 005 Written or last updated: September 19, 005 P441 Analytical Mechanics - I RLC Circuits c Alex R. Dzierba Introduction In this note we discuss electrical oscillating

More information

Modelling building integrated solar systems with MatLab: methodology and examples

Modelling building integrated solar systems with MatLab: methodology and examples Modelling building integrated solar systems with MatLab: methodology and examples Annamaria Buonomano, Ph.D. Dept. of Industrial Engineering University of Naples Federico II, Italy (annamaria.buonomano@unina.it)

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

Electricity & Magnetism Lecture 18

Electricity & Magnetism Lecture 18 Electricity & Magnetism ecture 18 Today s Concepts: A) Induc4on B) R Circuits Electricity & Magne/sm ecture 18, Slide 1 Extended deadline for next few FlipItPhysics homework:! 80% extended by one week.

More information

Some Important Electrical Units

Some Important Electrical Units Some Important Electrical Units Quantity Unit Symbol Current Charge Voltage Resistance Power Ampere Coulomb Volt Ohm Watt A C V W W These derived units are based on fundamental units from the meterkilogram-second

More information

PHYSICS 110A : CLASSICAL MECHANICS HW 2 SOLUTIONS. Here is a sketch of the potential with A = 1, R = 1, and S = 1. From the plot we can see

PHYSICS 110A : CLASSICAL MECHANICS HW 2 SOLUTIONS. Here is a sketch of the potential with A = 1, R = 1, and S = 1. From the plot we can see PHYSICS 11A : CLASSICAL MECHANICS HW SOLUTIONS (1) Taylor 5. Here is a sketch of the potential with A = 1, R = 1, and S = 1. From the plot we can see 1.5 1 U(r).5.5 1 4 6 8 1 r Figure 1: Plot for problem

More information

Last Homework. Reading: Chap. 33 and Chap. 33. Suggested exercises: 33.1, 33.3, 33.5, 33.7, 33.9, 33.11, 33.13, 33.15,

Last Homework. Reading: Chap. 33 and Chap. 33. Suggested exercises: 33.1, 33.3, 33.5, 33.7, 33.9, 33.11, 33.13, 33.15, Chapter 33. Electromagnetic Induction Electromagnetic induction is the scientific principle that underlies many modern technologies, from the generation of electricity to communications and data storage.

More information

Mutual Inductance. The field lines flow from a + charge to a - change

Mutual Inductance. The field lines flow from a + charge to a - change Capacitors Mutual Inductance Since electrical charges do exist, electric field lines have a starting point and an ending point. For example, if you have a + and a - change, the field lines would look something

More information

Divergent Fields, Charge, and Capacitance in FDTD Simulations

Divergent Fields, Charge, and Capacitance in FDTD Simulations Divergent Fields, Charge, and Capacitance in FDTD Simulations Christopher L. Wagner and John B. Schneider August 2, 1998 Abstract Finite-difference time-domain (FDTD) grids are often described as being

More information

PH2200 Practice Final Exam Summer 2003

PH2200 Practice Final Exam Summer 2003 INSTRUCTIONS 1. Write your name and student identification number on the answer sheet. 2. Please cover your answer sheet at all times. 3. This is a closed book exam. You may use the PH2200 formula sheet

More information

TRANSIENT HEAT CONDUCTION

TRANSIENT HEAT CONDUCTION TRANSIENT HEAT CONDUCTION Many heat conduction problems encountered in engineering applications involve time as in independent variable. This is transient or Unsteady State Heat Conduction. The goal 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

Physics 6B Summer 2007 Final

Physics 6B Summer 2007 Final Physics 6B Summer 2007 Final Question 1 An electron passes through two rectangular regions that contain uniform magnetic fields, B 1 and B 2. The field B 1 is stronger than the field B 2. Each field fills

More information

Physics Higher level Paper 1

Physics Higher level Paper 1 Physics Higher level Paper 1 Tuesday 31 October 17 (afternoon) 1 hour Instructions to candidates Do not open this examination paper until instructed to do so. Answer all the questions. For each question,

More information

Circuits. David J. Starling Penn State Hazleton PHYS 212

Circuits. David J. Starling Penn State Hazleton PHYS 212 Invention is the most important product of man s creative brain. The ultimate purpose is the complete mastery of mind over the material world, the harnessing of human nature to human needs. - Nikola Tesla

More information

Electric Currents. Resistors (Chapters 27-28)

Electric Currents. Resistors (Chapters 27-28) Electric Currents. Resistors (Chapters 27-28) Electric current I Resistance R and resistors Relation between current and resistance: Ohm s Law Resistivity ρ Energy dissipated by current. Electric power

More information