Initial Value Problems

Size: px
Start display at page:

Download "Initial Value Problems"

Transcription

1 Iniial Value Problems ChEn 2450 d d f(, ) (0) 0 6 ODE.key - November 26, 2014

2 Example - Cooking a Lobser Assumpions: The lobser remains a a uniform emperaure. This implies ha he hermal conduciviy of he lobser is large. This is likely a poor assumpion! The lobser is a cylinder wih lengh L and radius r. The lobser s mass remains consan wih ime (reasonable assumpion) The hea capaciy of he lobser is approximaely ha of waer (quesionable, bu reasonable assumpion). Wha is he emperaure of he lobser afer 3 minues? A 2 rl + 2 r2 L 0.3 m r 0.1 m m 1 kg cp 4200 J kg K Boiling i in waer Baking i in he oven (convecive hea ransfer) (radiaive hea ransfer) dt d ha (T mcp h 500 dt d T ) J m2 1 s Exac soluion: ha T T1 + (T0 T1 ) exp mcp A 4 (T mcp T4 ) 8 J m2 K s Exac soluion: (requires soluion of a nonlinear equaion) an 1 T T1 7 + an 1 T T1 an 1 T0 T1 + anh 1 T0 T T1 ODE.key - November 26, 2014

3 Explici Time Inegraion Forward Euler Single ODE: Iniial condiion: d d f(, ) (0) 0 Firs order forward-difference approximaion: d d n n+1 n+1 n n + + O( ) d d n In words: ϕn+1 is approximaed using he slope of he funcion a he previous ime sep. Forward Euler Δ +Δ n + f( n, Forward Euler n ) Why explici? Because all informaion is explicily known o move soluion forward. Wha happens as we decrease? Forward Euler Algorihm: Given ϕn, n, end,, f(,ϕ): 1. Se n Calculae ϕn+1. (requires calcluaion of f(n,ϕn) ) 3. Se nn+1, ϕn ϕn+1 4. If n<end, reurn o sep Reurn ϕn. 8 ODE.key - November 26, 2014

4 Example - Lobsers Again... In waer (convecive hea ransfer) dt d ha mc p (T T ) funcion rhs lobser_convecion(, T ) % The ime-change of emperaure of a lobser pu in % boiling waer, assuming ha he emperaure of he % lobser is spaially uniform. In hea ransfer, you % will learn ha his is called a "lumped" analysis. Twaer ; % emperaure of boiling waer (K) m 1.0; % lobser's mass (kg) cp 4200; % lobser's hea capaciy. h 500; % hea ransfer coefficien (W/(m2 K)) L 0.3; % lengh (m) r 0.1; % radius (m) % area, assuming ha he lobser is a cylinder. A 2*pi*r*L + 2*pi*r^2; rhs -h*a/(m*cp) * (T-Twaer); In he oven (radiaive hea ransfer) dt d A mc p (T 4 T 4 ) funcion rhs lobser_radiaion(, T ) % The ime-change of emperaure of a lobser pu in an oven, % assuming ha he emperaure of he lobser is spaially % uniform. In hea ransfer, you will learn ha his is % called a "lumped" analysis. Tinf 400; % oven emperaure, K sigma e-8; % Sefan-Bolzmann consan, (J/(m2 K s)) emiss 1.0; % emissiviy (no unis) m 1.0; % lobser's mass (kg) cp 4200; % lobser's hea capaciy. L 0.3; % lengh (m) r 0.1; % radius (m) % area, assuming ha he lobser is a cylinder. A 2*pi*r*L + 2*pi*r^2; rhs -sigma*emiss*a/(m*cp) * (T^4-Tinf^4); 9 ODE.key - November 26, 2014

5 Sysems of ODEs Examples in Chemical Engineering: Kineics (muliple reacing species). Coupled processes (e.g. variable energy and composiion, ec). Ofen arise from discreizaion of PDEs Approach: use vecor of soluion variables, and a funcion which reurns he rhs as a vecor. d 1 d f 1 (, 1, 2,..., n), d 2 d f 2 (, 1, 2,..., n),. d n d f n (, 1, 2,..., n), d d F (, ) ( 0) 0 10 ODE.key - November 26, 2014

6 Example: A Falling Objec A 0, we release an objec a x0 and i sars falling o earh. Find x() and v(). A low Reynolds number, (ball in molasses) he drag force is proporional o v. A high Reynolds number (skydiver), he drag force is proporional o v 2. d 2 x d 2 g v d 2 x d 2 g v2 x(0) 0, x() g 2 dx d 0 0 Order reducion: wrie a second-order ODE as a sysem of firs-order ODEs! dx d v dv d g v [ 1 + exp ( )] v() g (1 exp( )) x(0) 0, dx d 0 0 analyic soluion sill possible, bu messy... Order reducion: dx d v dv d g v2 11 ODE.key - November 26, 2014

7 Implici Time Inegraion Backward Euler d d f(, ) d d n+1 Forward difference in ime Forward Euler (explici) Backward difference in ime Backward Euler (implici) n+1 n + O( ) Backward Euler n+1 n + d d n+1 n + f( n+1, n+1 ) Backward Euler Forward Euler Δ +Δ Problem: we don know f(ϕn+1,n+1) Implici If f(ϕn+1,n+1) is nonlinear in ϕ hen we mus solve a nonlinear equaion a each imesep. g( n+1 ) n+1 n f n+1, Repea he lobser example using backward Euler... n+1 Backward Euler Algorihm: Given ϕn, n, end,, f(,ϕ): 1. Guess ϕn Se n+1n+. 3. Solve g(ϕn+1)0 for ϕn+1 (nonlinear equaion) 4. Se nn+1, ϕn ϕn If n<end, reurn o sep Reurn ϕn. 12 ODE.key - November 26, 2014

8 Example dc d kc2 wih c(0) given Backward Euler c n+1 c n k(c n+1 ) 2 residual form g(c n+1 )(k )(c n+1 ) 2 + c n+1 c n analyic soluion c n+1 1 ± p 1+4k c n 2k numeric soluion g 0 2(k )c n+1 )+1 Newon updae c n+1 k+1 cn+1 k c n+1 k g(c n+1 k ) g 0 (c n+1 k ) k (c n+1 k ) 2 + c n+1 k 2k c n+1 k +1 k - ieraion couner n - ime level couner c n Ierae unil convergence - hen move on o nex ime level. 13 ODE.key - November 26, 2014

9 Example: Cyclical Sysems Change of heigh of car as a funcion of ime: dy d r sin( ) r - radius of ferris wheel ω - roaion rae (radians/ime) θ 14 ODE.key - November 26, 2014

10 Crank-Nicholson f( n, n ) f( n+1, n+1 ) n+1 n n+1 n Firs-order accurae in ime. Add 1/2 forward Euler + 1/2 backward Euler (average slope) n+1 n 1 2 f(n+1, n+1 ) + f( n, Second-order accurae in ime. n ) g( n+1 ) n+1 n 1 2 f(n+1, n+1 ) + f( n, n ) Forward Euler Crank Nicholson Δ Backward Euler +Δ Crank-Nicholson Algorihm: Given ϕn, n, end,, f(,ϕ): 1. Guess ϕn+1 ϕn. 2. Se n+1n+. 3. Solve g(ϕn+1)0 for ϕn+1 (nonlinear equaion) 4. Se nn+1, ϕn ϕn+1 5. If n<end, reurn o sep Reurn ϕn. 15 ODE.key - November 26, 2014

11 Time Inegraion wih Malab s Inegraors 1. Creae he RHS funcion in he form f(,φ). RHS funcion should produce a column vecor. 2. Deermine he ime(s) ha you wan he soluion Eiher [sar,end] or a vecor of specific imes. 3. Use he appropriae inegraor (ode45, ode15s): Funcion ode45 ode15s Descripion Explici ime inegraor. Try his firs. Bes for non-siff problems Implici ime inegraor. Use his for siff problems (when ode45 sruggles) [,phi] ode45( rhsfun, [0,end], phi0 ); [,phi] ode45( rhsfun, ps, phi0 ); [,phi] ode15s( rhsfun, [0,end], phi0 ); [,phi] ode15s( rhsfun, ps, phi0 ); 16 ODE.key - November 26, 2014

12 Example: A Sysem of ODEs Hypoheical reacion mechanism: A k 1! B 2B k 2! B + C B + C k 3! A + C k k k da d k 1A + k 3 BC db d k 1A k 2 B 2 k 3 BC dc d k 2B 2 Solve his using: Forward Euler Backward Euler ODE45 ODE15s 17 ODE.key - November 26, 2014

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Simulaion-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Week Descripion Reading Maerial 2 Compuer Simulaion of Dynamic Models Finie Difference, coninuous saes, discree ime Simple Mehods Euler Trapezoid

More information

Ordinary Differential Equations

Ordinary Differential Equations Lecure 22 Ordinary Differenial Equaions Course Coordinaor: Dr. Suresh A. Karha, Associae Professor, Deparmen of Civil Engineering, IIT Guwahai. In naure, mos of he phenomena ha can be mahemaically described

More information

CHEMICAL KINETICS: 1. Rate Order Rate law Rate constant Half-life Temperature Dependence

CHEMICAL KINETICS: 1. Rate Order Rate law Rate constant Half-life Temperature Dependence CHEMICL KINETICS: Rae Order Rae law Rae consan Half-life Temperaure Dependence Chemical Reacions Kineics Chemical ineics is he sudy of ime dependence of he change in he concenraion of reacans and producs.

More information

Solutions to Assignment 1

Solutions to Assignment 1 MA 2326 Differenial Equaions Insrucor: Peronela Radu Friday, February 8, 203 Soluions o Assignmen. Find he general soluions of he following ODEs: (a) 2 x = an x Soluion: I is a separable equaion as we

More information

MA Study Guide #1

MA Study Guide #1 MA 66 Su Guide #1 (1) Special Tpes of Firs Order Equaions I. Firs Order Linear Equaion (FOL): + p() = g() Soluion : = 1 µ() [ ] µ()g() + C, where µ() = e p() II. Separable Equaion (SEP): dx = h(x) g()

More information

Unsteady Mass- Transfer Models

Unsteady Mass- Transfer Models See T&K Chaper 9 Unseady Mass- Transfer Models ChEn 6603 Wednesday, April 4, Ouline Conex for he discussion Soluion for ransien binary diffusion wih consan c, N. Soluion for mulicomponen diffusion wih

More information

Ordinary dierential equations

Ordinary dierential equations Chaper 5 Ordinary dierenial equaions Conens 5.1 Iniial value problem........................... 31 5. Forward Euler's mehod......................... 3 5.3 Runge-Kua mehods.......................... 36

More information

1.6. Slopes of Tangents and Instantaneous Rate of Change

1.6. Slopes of Tangents and Instantaneous Rate of Change 1.6 Slopes of Tangens and Insananeous Rae of Change When you hi or kick a ball, he heigh, h, in meres, of he ball can be modelled by he equaion h() 4.9 2 v c. In his equaion, is he ime, in seconds; c represens

More information

Comparison between the Discrete and Continuous Time Models

Comparison between the Discrete and Continuous Time Models Comparison beween e Discree and Coninuous Time Models D. Sulsky June 21, 2012 1 Discree o Coninuous Recall e discree ime model Î = AIS Ŝ = S Î. Tese equaions ell us ow e populaion canges from one day o

More information

Math 333 Problem Set #2 Solution 14 February 2003

Math 333 Problem Set #2 Solution 14 February 2003 Mah 333 Problem Se #2 Soluion 14 February 2003 A1. Solve he iniial value problem dy dx = x2 + e 3x ; 2y 4 y(0) = 1. Soluion: This is separable; we wrie 2y 4 dy = x 2 + e x dx and inegrae o ge The iniial

More information

2) Of the following questions, which ones are thermodynamic, rather than kinetic concepts?

2) Of the following questions, which ones are thermodynamic, rather than kinetic concepts? AP Chemisry Tes (Chaper 12) Muliple Choice (40%) 1) Which of he following is a kineic quaniy? A) Enhalpy B) Inernal Energy C) Gibb s free energy D) Enropy E) Rae of reacion 2) Of he following quesions,

More information

Chapter 2. First Order Scalar Equations

Chapter 2. First Order Scalar Equations Chaper. Firs Order Scalar Equaions We sar our sudy of differenial equaions in he same way he pioneers in his field did. We show paricular echniques o solve paricular ypes of firs order differenial equaions.

More information

KINEMATICS IN ONE DIMENSION

KINEMATICS IN ONE DIMENSION KINEMATICS IN ONE DIMENSION PREVIEW Kinemaics is he sudy of how hings move how far (disance and displacemen), how fas (speed and velociy), and how fas ha how fas changes (acceleraion). We say ha an objec

More information

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance Ch: Moion along a sraigh line Moion Posiion and Displacemen Average Velociy and Average Speed Insananeous Velociy and Speed Acceleraion Consan Acceleraion: A Special Case Anoher Look a Consan Acceleraion

More information

Chapter 3 Boundary Value Problem

Chapter 3 Boundary Value Problem Chaper 3 Boundary Value Problem A boundary value problem (BVP) is a problem, ypically an ODE or a PDE, which has values assigned on he physical boundary of he domain in which he problem is specified. Le

More information

A First Course on Kinetics and Reaction Engineering. Class 19 on Unit 18

A First Course on Kinetics and Reaction Engineering. Class 19 on Unit 18 A Firs ourse on Kineics and Reacion Engineering lass 19 on Uni 18 Par I - hemical Reacions Par II - hemical Reacion Kineics Where We re Going Par III - hemical Reacion Engineering A. Ideal Reacors B. Perfecly

More information

Lecture 13 RC/RL Circuits, Time Dependent Op Amp Circuits

Lecture 13 RC/RL Circuits, Time Dependent Op Amp Circuits Lecure 13 RC/RL Circuis, Time Dependen Op Amp Circuis RL Circuis The seps involved in solving simple circuis conaining dc sources, resisances, and one energy-sorage elemen (inducance or capaciance) are:

More information

Parametrics and Vectors (BC Only)

Parametrics and Vectors (BC Only) Paramerics and Vecors (BC Only) The following relaionships should be learned and memorized. The paricle s posiion vecor is r() x(), y(). The velociy vecor is v(),. The speed is he magniude of he velociy

More information

Mathcad Lecture #8 In-class Worksheet Curve Fitting and Interpolation

Mathcad Lecture #8 In-class Worksheet Curve Fitting and Interpolation Mahcad Lecure #8 In-class Workshee Curve Fiing and Inerpolaion A he end of his lecure, you will be able o: explain he difference beween curve fiing and inerpolaion decide wheher curve fiing or inerpolaion

More information

dt = C exp (3 ln t 4 ). t 4 W = C exp ( ln(4 t) 3) = C(4 t) 3.

dt = C exp (3 ln t 4 ). t 4 W = C exp ( ln(4 t) 3) = C(4 t) 3. Mah Rahman Exam Review Soluions () Consider he IVP: ( 4)y 3y + 4y = ; y(3) = 0, y (3) =. (a) Please deermine he longes inerval for which he IVP is guaraneed o have a unique soluion. Soluion: The disconinuiies

More information

MA 214 Calculus IV (Spring 2016) Section 2. Homework Assignment 1 Solutions

MA 214 Calculus IV (Spring 2016) Section 2. Homework Assignment 1 Solutions MA 14 Calculus IV (Spring 016) Secion Homework Assignmen 1 Soluions 1 Boyce and DiPrima, p 40, Problem 10 (c) Soluion: In sandard form he given firs-order linear ODE is: An inegraing facor is given by

More information

Some Basic Information about M-S-D Systems

Some Basic Information about M-S-D Systems Some Basic Informaion abou M-S-D Sysems 1 Inroducion We wan o give some summary of he facs concerning unforced (homogeneous) and forced (non-homogeneous) models for linear oscillaors governed by second-order,

More information

04. Kinetics of a second order reaction

04. Kinetics of a second order reaction 4. Kineics of a second order reacion Imporan conceps Reacion rae, reacion exen, reacion rae equaion, order of a reacion, firs-order reacions, second-order reacions, differenial and inegraed rae laws, Arrhenius

More information

3.6 Derivatives as Rates of Change

3.6 Derivatives as Rates of Change 3.6 Derivaives as Raes of Change Problem 1 John is walking along a sraigh pah. His posiion a he ime >0 is given by s = f(). He sars a =0from his house (f(0) = 0) and he graph of f is given below. (a) Describe

More information

Math 116 Second Midterm March 21, 2016

Math 116 Second Midterm March 21, 2016 Mah 6 Second Miderm March, 06 UMID: EXAM SOLUTIONS Iniials: Insrucor: Secion:. Do no open his exam unil you are old o do so.. Do no wrie your name anywhere on his exam. 3. This exam has pages including

More information

Finite Element Analysis of Structures

Finite Element Analysis of Structures KAIT OE5 Finie Elemen Analysis of rucures Mid-erm Exam, Fall 9 (p) m. As shown in Fig., we model a russ srucure of uniform area (lengh, Area Am ) subjeced o a uniform body force ( f B e x N / m ) using

More information

APPM 2360 Homework Solutions, Due June 10

APPM 2360 Homework Solutions, Due June 10 2.2.2: Find general soluions for he equaion APPM 2360 Homework Soluions, Due June 10 Soluion: Finding he inegraing facor, dy + 2y = 3e µ) = e 2) = e 2 Muliplying he differenial equaion by he inegraing

More information

Q.1 Define work and its unit?

Q.1 Define work and its unit? CHP # 6 ORK AND ENERGY Q.1 Define work and is uni? A. ORK I can be define as when we applied a force on a body and he body covers a disance in he direcion of force, hen we say ha work is done. I is a scalar

More information

Sub Module 2.6. Measurement of transient temperature

Sub Module 2.6. Measurement of transient temperature Mechanical Measuremens Prof. S.P.Venkaeshan Sub Module 2.6 Measuremen of ransien emperaure Many processes of engineering relevance involve variaions wih respec o ime. The sysem properies like emperaure,

More information

MOMENTUM CONSERVATION LAW

MOMENTUM CONSERVATION LAW 1 AAST/AEDT AP PHYSICS B: Impulse and Momenum Le us run an experimen: The ball is moving wih a velociy of V o and a force of F is applied on i for he ime inerval of. As he resul he ball s velociy changes

More information

dy dx = xey (a) y(0) = 2 (b) y(1) = 2.5 SOLUTION: See next page

dy dx = xey (a) y(0) = 2 (b) y(1) = 2.5 SOLUTION: See next page Assignmen 1 MATH 2270 SOLUTION Please wrie ou complee soluions for each of he following 6 problems (one more will sill be added). You may, of course, consul wih your classmaes, he exbook or oher resources,

More information

Elementary Differential Equations and Boundary Value Problems

Elementary Differential Equations and Boundary Value Problems Elemenar Differenial Equaions and Boundar Value Problems Boce. & DiPrima 9 h Ediion Chaper 1: Inroducion 1006003 คณ ตศาสตร ว ศวกรรม 3 สาขาว ชาว ศวกรรมคอมพ วเตอร ป การศ กษา 1/2555 ผศ.ดร.อร ญญา ผศ.ดร.สมศ

More information

Math 334 Test 1 KEY Spring 2010 Section: 001. Instructor: Scott Glasgow Dates: May 10 and 11.

Math 334 Test 1 KEY Spring 2010 Section: 001. Instructor: Scott Glasgow Dates: May 10 and 11. 1 Mah 334 Tes 1 KEY Spring 21 Secion: 1 Insrucor: Sco Glasgow Daes: Ma 1 and 11. Do NOT wrie on his problem saemen bookle, excep for our indicaion of following he honor code jus below. No credi will be

More information

Chapter 13 Homework Answers

Chapter 13 Homework Answers Chaper 3 Homework Answers 3.. The answer is c, doubling he [C] o while keeping he [A] o and [B] o consan. 3.2. a. Since he graph is no linear, here is no way o deermine he reacion order by inspecion. A

More information

Morning Time: 1 hour 30 minutes Additional materials (enclosed):

Morning Time: 1 hour 30 minutes Additional materials (enclosed): ADVANCED GCE 78/0 MATHEMATICS (MEI) Differenial Equaions THURSDAY JANUARY 008 Morning Time: hour 30 minues Addiional maerials (enclosed): None Addiional maerials (required): Answer Bookle (8 pages) Graph

More information

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 1-3

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 1-3 A.P. Physics B Uni 1 Tes Reiew Physics Basics, Moemen, and Vecors Chapers 1-3 * In sudying for your es, make sure o sudy his reiew shee along wih your quizzes and homework assignmens. Muliple Choice Reiew:

More information

PHYS 1401 General Physics I Test 3 Review Questions

PHYS 1401 General Physics I Test 3 Review Questions PHYS 1401 General Physics I Tes 3 Review Quesions Ch. 7 1. A 6500 kg railroad car moving a 4.0 m/s couples wih a second 7500 kg car iniially a res. a) Skech before and afer picures of he siuaion. b) Wha

More information

F.LE.A.4: Exponential Growth

F.LE.A.4: Exponential Growth Regens Exam Quesions F.LE.A.4: Exponenial Growh www.jmap.org Name: F.LE.A.4: Exponenial Growh 1 A populaion of rabbis doubles every days according o he formula P = 10(2), where P is he populaion of rabbis

More information

Chapter 15: Phenomena. Chapter 15 Chemical Kinetics. Reaction Rates. Reaction Rates R P. Reaction Rates. Rate Laws

Chapter 15: Phenomena. Chapter 15 Chemical Kinetics. Reaction Rates. Reaction Rates R P. Reaction Rates. Rate Laws Chaper 5: Phenomena Phenomena: The reacion (aq) + B(aq) C(aq) was sudied a wo differen emperaures (98 K and 35 K). For each emperaure he reacion was sared by puing differen concenraions of he 3 species

More information

Math 105 Second Midterm March 16, 2017

Math 105 Second Midterm March 16, 2017 Mah 105 Second Miderm March 16, 2017 UMID: Insrucor: Iniials: Secion: 1. Do no open his exam unil you are old o do so. 2. Do no wrie your name anywhere on his exam. 3. This exam has 9 pages including his

More information

EXERCISES FOR SECTION 1.5

EXERCISES FOR SECTION 1.5 1.5 Exisence and Uniqueness of Soluions 43 20. 1 v c 21. 1 v c 1 2 4 6 8 10 1 2 2 4 6 8 10 Graph of approximae soluion obained using Euler s mehod wih = 0.1. Graph of approximae soluion obained using Euler

More information

PROBLEMS FOR MATH 162 If a problem is starred, all subproblems are due. If only subproblems are starred, only those are due. SLOPES OF TANGENT LINES

PROBLEMS FOR MATH 162 If a problem is starred, all subproblems are due. If only subproblems are starred, only those are due. SLOPES OF TANGENT LINES PROBLEMS FOR MATH 6 If a problem is sarred, all subproblems are due. If onl subproblems are sarred, onl hose are due. 00. Shor answer quesions. SLOPES OF TANGENT LINES (a) A ball is hrown ino he air. Is

More information

LAPLACE TRANSFORM AND TRANSFER FUNCTION

LAPLACE TRANSFORM AND TRANSFER FUNCTION CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION Professor Dae Ryook Yang Spring 2018 Dep. of Chemical and Biological Engineering 5-1 Road Map of he Lecure V Laplace Transform and Transfer funcions

More information

1. VELOCITY AND ACCELERATION

1. VELOCITY AND ACCELERATION 1. VELOCITY AND ACCELERATION 1.1 Kinemaics Equaions s = u + 1 a and s = v 1 a s = 1 (u + v) v = u + as 1. Displacemen-Time Graph Gradien = speed 1.3 Velociy-Time Graph Gradien = acceleraion Area under

More information

Announcements: Warm-up Exercise:

Announcements: Warm-up Exercise: Fri Apr 13 7.1 Sysems of differenial equaions - o model muli-componen sysems via comparmenal analysis hp//en.wikipedia.org/wiki/muli-comparmen_model Announcemens Warm-up Exercise Here's a relaively simple

More information

Problem Set #1. i z. the complex propagation constant. For the characteristic impedance:

Problem Set #1. i z. the complex propagation constant. For the characteristic impedance: Problem Se # Problem : a) Using phasor noaion, calculae he volage and curren waves on a ransmission line by solving he wave equaion Assume ha R, L,, G are all non-zero and independen of frequency From

More information

Mathcad Lecture #7 In-class Worksheet "Smart" Solve Block Techniques Handout

Mathcad Lecture #7 In-class Worksheet Smart Solve Block Techniques Handout Mahcad Lecure #7 In-class Workshee "Smar" Solve Block echniques Handou A he end of his lecure, you will be able o: use funcions in solve block equaions o improve convergence consruc solve blocks wih minimal

More information

Physics 180A Fall 2008 Test points. Provide the best answer to the following questions and problems. Watch your sig figs.

Physics 180A Fall 2008 Test points. Provide the best answer to the following questions and problems. Watch your sig figs. Physics 180A Fall 2008 Tes 1-120 poins Name Provide he bes answer o he following quesions and problems. Wach your sig figs. 1) The number of meaningful digis in a number is called he number of. When numbers

More information

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle

Physics 235 Chapter 2. Chapter 2 Newtonian Mechanics Single Particle Chaper 2 Newonian Mechanics Single Paricle In his Chaper we will review wha Newon s laws of mechanics ell us abou he moion of a single paricle. Newon s laws are only valid in suiable reference frames,

More information

6.003 Homework 1. Problems. Due at the beginning of recitation on Wednesday, February 10, 2010.

6.003 Homework 1. Problems. Due at the beginning of recitation on Wednesday, February 10, 2010. 6.003 Homework Due a he beginning of reciaion on Wednesday, February 0, 200. Problems. Independen and Dependen Variables Assume ha he heigh of a waer wave is given by g(x v) where x is disance, v is velociy,

More information

EXPLICIT TIME INTEGRATORS FOR NONLINEAR DYNAMICS DERIVED FROM THE MIDPOINT RULE

EXPLICIT TIME INTEGRATORS FOR NONLINEAR DYNAMICS DERIVED FROM THE MIDPOINT RULE Version April 30, 2004.Submied o CTU Repors. EXPLICIT TIME INTEGRATORS FOR NONLINEAR DYNAMICS DERIVED FROM THE MIDPOINT RULE Per Krysl Universiy of California, San Diego La Jolla, California 92093-0085,

More information

MATH 128A, SUMMER 2009, FINAL EXAM SOLUTION

MATH 128A, SUMMER 2009, FINAL EXAM SOLUTION MATH 28A, SUMME 2009, FINAL EXAM SOLUTION BENJAMIN JOHNSON () (8 poins) [Lagrange Inerpolaion] (a) (4 poins) Le f be a funcion defined a some real numbers x 0,..., x n. Give a defining equaion for he Lagrange

More information

LabQuest 24. Capacitors

LabQuest 24. Capacitors Capaciors LabQues 24 The charge q on a capacior s plae is proporional o he poenial difference V across he capacior. We express his wih q V = C where C is a proporionaliy consan known as he capaciance.

More information

ODEs II, Lecture 1: Homogeneous Linear Systems - I. Mike Raugh 1. March 8, 2004

ODEs II, Lecture 1: Homogeneous Linear Systems - I. Mike Raugh 1. March 8, 2004 ODEs II, Lecure : Homogeneous Linear Sysems - I Mike Raugh March 8, 4 Inroducion. In he firs lecure we discussed a sysem of linear ODEs for modeling he excreion of lead from he human body, saw how o ransform

More information

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B)

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B) SCORING GUIDELINES (Form B) Quesion A ank conains 15 gallons of heaing oil a ime =. During he ime inerval 1 hours, heaing oil is pumped ino he ank a he rae 1 H ( ) = + ( 1 + ln( + 1) ) gallons per hour.

More information

Math Final Exam Solutions

Math Final Exam Solutions Mah 246 - Final Exam Soluions Friday, July h, 204 () Find explici soluions and give he inerval of definiion o he following iniial value problems (a) ( + 2 )y + 2y = e, y(0) = 0 Soluion: In normal form,

More information

y = (y 1)*(y 3) t

y = (y 1)*(y 3) t MATH 66 SPR REVIEW DEFINITION OF SOLUTION A funcion = () is a soluion of he differenial equaion d=d = f(; ) on he inerval ff < < fi if (d=d)() =f(; ()) for each so ha ff

More information

EE 301 Lab 2 Convolution

EE 301 Lab 2 Convolution EE 301 Lab 2 Convoluion 1 Inroducion In his lab we will gain some more experience wih he convoluion inegral and creae a scrip ha shows he graphical mehod of convoluion. 2 Wha you will learn This lab will

More information

CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang

CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang CHBE320 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS Professor Dae Ryook Yang Spring 208 Dep. of Chemical and Biological Engineering CHBE320 Process Dynamics and Conrol 4- Road Map of he Lecure

More information

ENGI 9420 Engineering Analysis Assignment 2 Solutions

ENGI 9420 Engineering Analysis Assignment 2 Solutions ENGI 940 Engineering Analysis Assignmen Soluions 0 Fall [Second order ODEs, Laplace ransforms; Secions.0-.09]. Use Laplace ransforms o solve he iniial value problem [0] dy y, y( 0) 4 d + [This was Quesion

More information

Math 1b. Calculus, Series, and Differential Equations. Final Exam Solutions

Math 1b. Calculus, Series, and Differential Equations. Final Exam Solutions Mah b. Calculus, Series, and Differenial Equaions. Final Exam Soluions Spring 6. (9 poins) Evaluae he following inegrals. 5x + 7 (a) (x + )(x + ) dx. (b) (c) x arcan x dx x(ln x) dx Soluion. (a) Using

More information

2002 November 14 Exam III Physics 191

2002 November 14 Exam III Physics 191 November 4 Exam III Physics 9 Physical onsans: Earh s free-fall acceleraion = g = 9.8 m/s ircle he leer of he single bes answer. quesion is worh poin Each 3. Four differen objecs wih masses: m = kg, m

More information

Sterilization D Values

Sterilization D Values Seriliaion D Values Seriliaion by seam consis of he simple observaion ha baceria die over ime during exposure o hea. They do no all live for a finie period of hea exposure and hen suddenly die a once,

More information

Energy Transport. Chapter 3 Energy Balance and Temperature. Temperature. Topics to be covered. Blackbody - Introduction

Energy Transport. Chapter 3 Energy Balance and Temperature. Temperature. Topics to be covered. Blackbody - Introduction Energy Transpor Chaper Energy Balance and Temperaure Energy can be ransmied by:. Conducion. Radiaion. Convecion Asro 960 One mechanism usually dominaes In solids, conducion dominaes In space and enuous

More information

UCLA: Math 3B Problem set 3 (solutions) Fall, 2018

UCLA: Math 3B Problem set 3 (solutions) Fall, 2018 UCLA: Mah 3B Problem se 3 (soluions) Fall, 28 This problem se concenraes on pracice wih aniderivaives. You will ge los of pracice finding simple aniderivaives as well as finding aniderivaives graphically

More information

AP CALCULUS AB/CALCULUS BC 2016 SCORING GUIDELINES. Question 1. 1 : estimate = = 120 liters/hr

AP CALCULUS AB/CALCULUS BC 2016 SCORING GUIDELINES. Question 1. 1 : estimate = = 120 liters/hr AP CALCULUS AB/CALCULUS BC 16 SCORING GUIDELINES Quesion 1 (hours) R ( ) (liers / hour) 1 3 6 8 134 119 95 74 7 Waer is pumped ino a ank a a rae modeled by W( ) = e liers per hour for 8, where is measured

More information

4.6 One Dimensional Kinematics and Integration

4.6 One Dimensional Kinematics and Integration 4.6 One Dimensional Kinemaics and Inegraion When he acceleraion a( of an objec is a non-consan funcion of ime, we would like o deermine he ime dependence of he posiion funcion x( and he x -componen of

More information

Math 115 Final Exam December 14, 2017

Math 115 Final Exam December 14, 2017 On my honor, as a suden, I have neiher given nor received unauhorized aid on his academic work. Your Iniials Only: Iniials: Do no wrie in his area Mah 5 Final Exam December, 07 Your U-M ID # (no uniqname):

More information

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still.

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still. Lecure - Kinemaics in One Dimension Displacemen, Velociy and Acceleraion Everyhing in he world is moving. Nohing says sill. Moion occurs a all scales of he universe, saring from he moion of elecrons in

More information

Embedded Systems and Software. A Simple Introduction to Embedded Control Systems (PID Control)

Embedded Systems and Software. A Simple Introduction to Embedded Control Systems (PID Control) Embedded Sysems and Sofware A Simple Inroducion o Embedded Conrol Sysems (PID Conrol) Embedded Sysems and Sofware, ECE:3360. The Universiy of Iowa, 2016 Slide 1 Acknowledgemens The maerial in his lecure

More information

Polymerization Technology Laboratory

Polymerization Technology Laboratory Versuch eacion Calorimery Polymerizaion Technology Laboraory eacion Calorimery 1. Subjec Isohermal and adiabaic emulsion polymerizaion of mehyl mehacrylae in a bach reacor. 2. Theory 2.1 Isohermal and

More information

MA 366 Review - Test # 1

MA 366 Review - Test # 1 MA 366 Review - Tes # 1 Fall 5 () Resuls from Calculus: differeniaion formulas, implici differeniaion, Chain Rule; inegraion formulas, inegraion b pars, parial fracions, oher inegraion echniques. (1) Order

More information

Single and Double Pendulum Models

Single and Double Pendulum Models Single and Double Pendulum Models Mah 596 Projec Summary Spring 2016 Jarod Har 1 Overview Differen ypes of pendulums are used o model many phenomena in various disciplines. In paricular, single and double

More information

2001 November 15 Exam III Physics 191

2001 November 15 Exam III Physics 191 1 November 15 Eam III Physics 191 Physical Consans: Earh s free-fall acceleraion = g = 9.8 m/s 2 Circle he leer of he single bes answer. quesion is worh 1 poin Each 3. Four differen objecs wih masses:

More information

ME425/525: Advanced Topics in Building Science

ME425/525: Advanced Topics in Building Science ME425/525: Advanced Topics in Building Science Indoor environmenal qualiy for susainable buildings: Lecure 6 Dr. Ellio T. Gall, Ph.D. Lecure 6 Today s objecives o Error propagaion Apply o SS soluion (venilaion,

More information

Basic Circuit Elements Professor J R Lucas November 2001

Basic Circuit Elements Professor J R Lucas November 2001 Basic Circui Elemens - J ucas An elecrical circui is an inerconnecion of circui elemens. These circui elemens can be caegorised ino wo ypes, namely acive and passive elemens. Some Definiions/explanaions

More information

CSE 3802 / ECE Numerical Methods in Scientific Computation. Jinbo Bi. Department of Computer Science & Engineering

CSE 3802 / ECE Numerical Methods in Scientific Computation. Jinbo Bi. Department of Computer Science & Engineering CSE 3802 / ECE 3431 Numerical Mehods in Scienific Compuaion Jinbo Bi Deparmen of Compuer Science & Engineering hp://www.engr.uconn.edu/~jinbo 1 Ph.D in Mahemaics The Insrucor Previous professional experience:

More information

Structural Dynamics and Earthquake Engineering

Structural Dynamics and Earthquake Engineering Srucural Dynamics and Earhquae Engineering Course 1 Inroducion. Single degree of freedom sysems: Equaions of moion, problem saemen, soluion mehods. Course noes are available for download a hp://www.c.up.ro/users/aurelsraan/

More information

Suggested Problem Solutions Associated with Homework #5

Suggested Problem Solutions Associated with Homework #5 Suggesed Problem Soluions Associaed wih Homework #5 431 (a) 8 Si has proons and neurons (b) 85 3 Rb has 3 proons and 48 neurons (c) 5 Tl 81 has 81 proons and neurons 43 IDENTIFY and SET UP: The ex calculaes

More information

CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang

CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS. Professor Dae Ryook Yang CHE302 LECTURE IV MATHEMATICAL MODELING OF CHEMICAL PROCESS Professor Dae Ryook Yang Fall 200 Dep. of Chemical and Biological Engineering Korea Universiy CHE302 Process Dynamics and Conrol Korea Universiy

More information

AP Chemistry--Chapter 12: Chemical Kinetics

AP Chemistry--Chapter 12: Chemical Kinetics AP Chemisry--Chaper 12: Chemical Kineics I. Reacion Raes A. The area of chemisry ha deals wih reacion raes, or how fas a reacion occurs, is called chemical kineics. B. The rae of reacion depends on he

More information

6.003 Homework #8 Solutions

6.003 Homework #8 Solutions 6.003 Homework #8 Soluions Problems. Fourier Series Deermine he Fourier series coefficiens a k for x () shown below. x ()= x ( + 0) 0 a 0 = 0 a k = e /0 sin(/0) for k 0 a k = π x()e k d = 0 0 π e 0 k d

More information

Module 2 F c i k c s la l w a s o s f dif di fusi s o i n

Module 2 F c i k c s la l w a s o s f dif di fusi s o i n Module Fick s laws of diffusion Fick s laws of diffusion and hin film soluion Adolf Fick (1855) proposed: d J α d d d J (mole/m s) flu (m /s) diffusion coefficien and (mole/m 3 ) concenraion of ions, aoms

More information

University Physics with Modern Physics 14th Edition Young TEST BANK

University Physics with Modern Physics 14th Edition Young TEST BANK Universi Phsics wih Modern Phsics 14h Ediion Young SOLUTIONS MANUAL Full clear download (no formaing errors) a: hps://esbankreal.com/download/universi-phsics-modern-phsics- 14h-ediion-oung-soluions-manual-/

More information

Differential Geometry: Numerical Integration and Surface Flow

Differential Geometry: Numerical Integration and Surface Flow Differenial Geomery: Numerical Inegraion and Surface Flow [Implici Fairing of Irregular Meshes using Diffusion and Curaure Flow. Desbrun e al., 1999] Energy Minimizaion Recall: We hae been considering

More information

System of Linear Differential Equations

System of Linear Differential Equations Sysem of Linear Differenial Equaions In "Ordinary Differenial Equaions" we've learned how o solve a differenial equaion for a variable, such as: y'k5$e K2$x =0 solve DE yx = K 5 2 ek2 x C_C1 2$y''C7$y

More information

v x + v 0 x v y + a y + v 0 y + 2a y + v y Today: Projectile motion Soccer problem Firefighter example

v x + v 0 x v y + a y + v 0 y + 2a y + v y Today: Projectile motion Soccer problem Firefighter example Thurs Sep 10 Assign 2 Friday SI Sessions: Moron 227 Mon 8:10-9:10 PM Tues 8:10-9:10 PM Thur 7:05-8:05 PM Read Read Draw/Image lay ou coordinae sysem Wha know? Don' know? Wan o know? Physical Processes?

More information

Equations of motion for constant acceleration

Equations of motion for constant acceleration Lecure 3 Chaper 2 Physics I 01.29.2014 Equaions of moion for consan acceleraion Course websie: hp://faculy.uml.edu/andriy_danylo/teaching/physicsi Lecure Capure: hp://echo360.uml.edu/danylo2013/physics1spring.hml

More information

ACCUMULATION. Section 7.5 Calculus AP/Dual, Revised /26/2018 7:27 PM 7.5A: Accumulation 1

ACCUMULATION. Section 7.5 Calculus AP/Dual, Revised /26/2018 7:27 PM 7.5A: Accumulation 1 ACCUMULATION Secion 7.5 Calculus AP/Dual, Revised 2019 vie.dang@humbleisd.ne 12/26/2018 7:27 PM 7.5A: Accumulaion 1 APPLICATION PROBLEMS A. Undersand he quesion. I is ofen no necessary o as much compuaion

More information

ln 2 1 ln y x c y C x

ln 2 1 ln y x c y C x Lecure 14 Appendi B: Some sample problems from Boas Here are some soluions o he sample problems assigned for Chaper 8 8: 6 Soluion: We wan o find he soluion o he following firs order equaion using separaion

More information

Solutions Problem Set 3 Macro II (14.452)

Solutions Problem Set 3 Macro II (14.452) Soluions Problem Se 3 Macro II (14.452) Francisco A. Gallego 04/27/2005 1 Q heory of invesmen in coninuous ime and no uncerainy Consider he in nie horizon model of a rm facing adjusmen coss o invesmen.

More information

IB Physics Kinematics Worksheet

IB Physics Kinematics Worksheet IB Physics Kinemaics Workshee Wrie full soluions and noes for muliple choice answers. Do no use a calculaor for muliple choice answers. 1. Which of he following is a correc definiion of average acceleraion?

More information

Physics 101: Lecture 03 Kinematics Today s lecture will cover Textbook Sections (and some Ch. 4)

Physics 101: Lecture 03 Kinematics Today s lecture will cover Textbook Sections (and some Ch. 4) Physics 101: Lecure 03 Kinemaics Today s lecure will coer Texbook Secions 3.1-3.3 (and some Ch. 4) Physics 101: Lecure 3, Pg 1 A Refresher: Deermine he force exered by he hand o suspend he 45 kg mass as

More information

Guest Lecturer Friday! Symbolic reasoning. Symbolic reasoning. Practice Problem day A. 2 B. 3 C. 4 D. 8 E. 16 Q25. Will Armentrout.

Guest Lecturer Friday! Symbolic reasoning. Symbolic reasoning. Practice Problem day A. 2 B. 3 C. 4 D. 8 E. 16 Q25. Will Armentrout. Pracice Problem day Gues Lecurer Friday! Will Armenrou. He d welcome your feedback! Anonymously: wrie somehing and pu i in my mailbox a 111 Whie Hall. Email me: sarah.spolaor@mail.wvu.edu Symbolic reasoning

More information

04. Kinetics of a second order reaction

04. Kinetics of a second order reaction 4. Kineics of a second order reacion Imporan conceps Reacion rae, reacion exen, reacion rae equaion, order of a reacion, firs-order reacions, second-order reacions, differenial and inegraed rae laws, rrhenius

More information

Ordinary differential equations. Phys 750 Lecture 7

Ordinary differential equations. Phys 750 Lecture 7 Ordinary differenial equaions Phys 750 Lecure 7 Ordinary Differenial Equaions Mos physical laws are expressed as differenial equaions These come in hree flavours: iniial-value problems boundary-value problems

More information

Oscillations. Periodic Motion. Sinusoidal Motion. PHY oscillations - J. Hedberg

Oscillations. Periodic Motion. Sinusoidal Motion. PHY oscillations - J. Hedberg Oscillaions PHY 207 - oscillaions - J. Hedberg - 2017 1. Periodic Moion 2. Sinusoidal Moion 3. How do we ge his kind of moion? 4. Posiion - Velociy - cceleraion 5. spring wih vecors 6. he reference circle

More information

Predator - Prey Model Trajectories and the nonlinear conservation law

Predator - Prey Model Trajectories and the nonlinear conservation law Predaor - Prey Model Trajecories and he nonlinear conservaion law James K. Peerson Deparmen of Biological Sciences and Deparmen of Mahemaical Sciences Clemson Universiy Ocober 28, 213 Ouline Drawing Trajecories

More information

Name: Teacher: DO NOT OPEN THE EXAMINATION PAPER UNTIL YOU ARE TOLD BY THE SUPERVISOR TO BEGIN PHYSICS FINAL EXAMINATION June 2010.

Name: Teacher: DO NOT OPEN THE EXAMINATION PAPER UNTIL YOU ARE TOLD BY THE SUPERVISOR TO BEGIN PHYSICS FINAL EXAMINATION June 2010. Name: Teacher: DO NOT OPEN THE EXAMINATION PAPER UNTIL YOU ARE TOLD BY THE SUPERVISOR TO BEGIN PHYSICS 224 FINAL EXAMINATION June 21 Value: 1% General Insrucions This examinaion consiss of wo pars. Boh

More information

= ( ) ) or a system of differential equations with continuous parametrization (T = R

= ( ) ) or a system of differential equations with continuous parametrization (T = R XIII. DIFFERENCE AND DIFFERENTIAL EQUATIONS Ofen funcions, or a sysem of funcion, are paramerized in erms of some variable, usually denoed as and inerpreed as ime. The variable is wrien as a funcion of

More information