Application 6.5B Period Doubling and Chaos in Mechanical Systems

Size: px
Start display at page:

Download "Application 6.5B Period Doubling and Chaos in Mechanical Systems"

Transcription

1 Application 6.5B Period Doubling and Chaos in Mechanical Systems The first objective of this section is the application of the DE plotting techniques of the Section 6. and 6.4 applications to the investigation of mechanical systems that ehibit the phenomenon of period-doubling as a selected system parameter is varied. The Forced Duffing Equation Section 6.4 in the tet introduces the second-order differential equation m c k β = (1) to model the free velocity-damped vibrations of a mass m on a nonlinear spring. Recall that the term k in Eq. (1) represents the force eerted on the mass by a linear spring, whereas the term β represents the nonlinearity of an actual spring. We want now to discuss the forced vibrations that result when an eternal force F() t = F cos ωt acts on the mass. With such a force adjoined to the system in Eq. (1), we obtain the forced Duffing equation = cos (2) m c k β F ω t for the displacement (t) of the mass from its equilibrium position. If β = in (2) then we have a linear equation with stable periodic solutions. To illustrate the quite different behavior of a nonlinear system, we take k = 1 and m = c = β = ω = 1 in Eq. (2), so the differential equation is + + = cos () F t As an eercise you may verify that the two critical points ( 1, ) and (1, ) are stable. We want to eamine the dependence of the (presumably steady periodic) response (t) upon the amplitude F of the periodic eternal force of period 2π. First verify that the values F =.6 and F =.7 yield the two figures shown on the net page, which indicate a simple oscillation about a critical point if F =.6, and an oscillation with "doubled period" if F =.7. In each case the equation was solved numerically with initial conditions () = 1, () = and the resulting solution plotted for the range 1 t 2 (to show the steady periodic response remaining after the initial transient response has died out). Use t-plots (as in the predator-prey investigation of the 6. application) to verify that the period of the oscillation with 196 Chapter 6

2 F =.7 is, indeed, twice the period with F =.6. Then plot analogous figures with F =.75 and with F =.8 to illustrate successive period-doubling and finally chaos as the amplitude of the eternal force is increased in the range from F =.6 to F =.8. This period-doubling toward chaos is a common characteristic of the behavior of a nonlinear mechanical system as an appropriate physical parameter (such as m, c, k, β, F, or ω) in Eq. (2) is increased or decreased. No such phenomenon occurs in linear systems. Forced Duffing with F =.6 in Eq. () Forced Duffing with F =.7 in Eq. () ' ' Then investigate the parameter range 1. F 1.1 for the force constant in Eq. (). With F = 1. you should see a period 6π phase plane trajectory that encircles both stable critical points (as well as the unstable one). The period doubles around F = 1.7 and chaos sets in around F = 1.1. See whether you can spot a second period-doubling somewhere between F = 1.7 and F = 1.1. Produce both phase plane trajectories and t-solution curves on which you can measure the periods. The Lorenz Strange Attractor The genesis of the famous -dimensional Lorenz system () t = s+ sy y () t = z+ r y (4) z '( t) = y bz of differential equations is discussed in the tet. A solution curve in yz-space is best visualized by looking at its projection into some plane, typically one of the three coordinate planes. The figure on the net page shows the projection into the z-plane of the solution obtained by numerical integration from t = to t = with the parameter Application 6.5B 197

3 5 Lorenz Strange Attractor z values b = 8/, s = 1, r = 28 and the initial values () = 8, y() = 8, z() = 27. As the projection in this figure is traced in "real time", the moving solution point P( t ( ), yt ( ), zt ( )) appears to undergo a random number of oscillations on the right followed by a random number of oscillations on the left, then a random number of the right followed by a random number on the left, and so on. A close eamination of such projections of the Lorenz trajectory shows that it is not simply oscillating back and forth around a pair of critical points (as the figure may initially suggest). Instead, as t, the solution point P(t) on the trajectory wanders back in forth in space approaching closer and closer to a certain complicated set of points whose detailed structure is not yet fully understood. This elusive set that appears somehow to attract the solution point is the famous Lorenz strange attractor. First use an ODE plotting utility to reproduce the z-projection of the Lorenz trajectory shown above. Use the parameter values and initial conditions listed above and numerically integrate the Lorenz system on the interval t. Plot also the y- and yz-projections of this same solution. Net, eperiment with different parameter values and initial conditions. For instance, see if you can find a periodic solution with r = 7 (and b = 8/, s = 1 as before) and initial values = 4 and z = 64. To get a trajectory that almost repeats itself, you will need to try different values of y in the range < y < 1 and look at z-projections. 198 Chapter 6

4 The Rossler Band Another much-studied nonlinear three-dimensional system is the Rossler system () t = y z y () t = + ay (5) z '( t) = b+ z( c) The figure below shows an y-projection of the Rossler band, a chaotic attractor obtained with the values a =.98, b = 2, and c = 4 of the parameters in (5). In the y-plane the Rossler band looks folded, but in space it appears twisted like a Möbius strip. Investigate the period-doubling toward chaos that occurs with the Rossler system as the parameter a is increased, beginning with a =., a =.5, and a =.75 (take b = 2 and c = 4 in all cases). 4 The Rossler Band y In the following paragraphs we illustrate ODE plotting techniques by showing how to use Maple, Mathematica, and MATLAB to plot the forced Duffing, Lorenz, and Rossler trajectories pictured here. Application 6.5B 199

5 Using Maple To plot a periodic trajectory for the forced Duffing equation () we need only define the system F :=.6: m:=1: c:=1: k:=-1: b:=1: w:=1: deq1 := diff((t),t) = y: deq2 := m*diff(y(t),t) = -c*y - k* - b*^ + F*cos(w*t): and then load the DEtools package and use the DEplot function. For instance, the command with(detools): DEplot([deq1,deq2], [,y], t=1..2, {[()=1, y()=]}, stepsize=.1, linecolor=blue, arrows=none); plots the periodic trajectory obtained with F =.6. To picture the Rossler band, we first define the Rossler system a :=.98: b := 2: c := 4: deq1 := diff((t),t) = -y - z: deq2 := diff(y(t),t) = + a*y: deq := diff(z(t),t) = b + z*( - c): and then plot the desired y-projection: with(detools): DEplot([deq1,deq2,deq], [,y,z], t=..2, {[ ()=1,y()=1,z()=1 ]}, stepsize=.1, scene = [,y], thickness=, linecolor=blue, arrows=none); Using Mathematica To plot a periodic trajectory for the forced Duffing equation () we need only define the system F =.6; m = 1; c = 1; k = -1; b = 1; w = 1; 2 Chapter 6

6 deq1 = '[t] == y[t]; deq2 = m y'[t] == -c y[t] - k [t] - b [t]^ + F Cos[w t]; and then use NDSolve to integrate numerically. For instance, the command soln = NDSolve[ {deq1, deq2, []==1, y[]==}, {[t],y[t]}, {t,,2}, MaSteps->25 ];; yields an approimate solution on the interval t 2 satisfying the initial conditions () = 1, y() =. Then the command ParametricPlot[ Evaluate[{[t],y[t]} /. soln], {t,1,2}]; plots the periodic trajectory corresponding to F =.6. To picture the Rossler band, we first define the Rossler system a =.98; b = 2; c = 4; deq1 = '[t] == -y[t] - z[t]; deq2 = y'[t] == [t] + a y[t]; deq = z'[t] == b + z[t] ([t] - c); solve numerically, soln = NDSolve[ {deq1, deq2, deq, []==1, y[]==1, z[]==1}, {[t],y[t],z[t]}, {t,,2}, MaSteps->]; and then plot the y-projection: ParametricPlot[ Evaluate[{[t],y[t]} /. soln], {t,,2}]; Using MATLAB To plot a periodic trajectory for the forced Duffing equation () we first define the MATLAB function Application 6.5B 21

7 function yp = duffing(t,y) F =.6; m = 1; c = 1; k = -1; b = 1; w = 1; yp = y; = y(1); y = y(2); yp(1) = y; yp(2) = (-c*y - k* - b*.^ + F*cos(t))/m; as the m-file duffing.m defining the forced Duffing system. Note that it specifies the desired numerical values of the parameters in Eq. (2). Then the commands [t,y] = ode45('duffing',:.1:1,[1;]); n = length(t); [t,y] = ode45('duffing',1:.1:2,y(n,:)); plot(y(:,1),y(:,2)); plot the periodic y-trajectory corresponding to F =.6. Note that we solve first from t = to t = 1, then use the final value here as the initial value in solving from t = 1 to t = 2. To plot the Lorenz strange attractor, we first define the MATLAB function function yp = lorenz(t,y) yp = y; b = 8/; s = 1; r = 28; = y(1); z = y(); y = y(2); yp(1) = -s* + s*y; yp(2) = -.*z + r* - y; yp() =.*y - b*z; as the m-file lorenz.m. Then we solve numerically [t,y] = ode45('lorenz',:.5:,[-9;8;27]); and finally plot the z-projection: plot(y(:,1),y(:,)) 22 Chapter 6

Project 6.3 Predator-Prey and Your Own Game Preserve

Project 6.3 Predator-Prey and Your Own Game Preserve Project 6.3 Predator-Prey and Your Own Game Preserve The closed trajectories in the figure below represent periodic solutions of a typical predator-prey system, but provide no information as to the actual

More information

APPM 2460 CHAOTIC DYNAMICS

APPM 2460 CHAOTIC DYNAMICS APPM 2460 CHAOTIC DYNAMICS 1. Introduction Today we ll continue our exploration of dynamical systems, focusing in particular upon systems who exhibit a type of strange behavior known as chaos. We will

More information

Why are Discrete Maps Sufficient?

Why are Discrete Maps Sufficient? Why are Discrete Maps Sufficient? Why do dynamical systems specialists study maps of the form x n+ 1 = f ( xn), (time is discrete) when much of the world around us evolves continuously, and is thus well

More information

Lecture 1: A Preliminary to Nonlinear Dynamics and Chaos

Lecture 1: A Preliminary to Nonlinear Dynamics and Chaos Lecture 1: A Preliminary to Nonlinear Dynamics and Chaos Autonomous Systems A set of coupled autonomous 1st-order ODEs. Here "autonomous" means that the right hand side of the equations does not explicitly

More information

6.2 Brief review of fundamental concepts about chaotic systems

6.2 Brief review of fundamental concepts about chaotic systems 6.2 Brief review of fundamental concepts about chaotic systems Lorenz (1963) introduced a 3-variable model that is a prototypical example of chaos theory. These equations were derived as a simplification

More information

Lecture 14: Ordinary Differential Equation I. First Order

Lecture 14: Ordinary Differential Equation I. First Order Lecture 14: Ordinary Differential Equation I. First Order 1. Key points Maple commands dsolve 2. Introduction We consider a function of one variable. An ordinary differential equations (ODE) specifies

More information

MATH 100 Introduction to the Profession

MATH 100 Introduction to the Profession MATH 100 Introduction to the Profession Differential Equations in MATLAB Greg Fasshauer Department of Applied Mathematics Illinois Institute of Technology Fall 2012 fasshauer@iit.edu MATH 100 ITP 1 What

More information

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos Chapter 4 Non-Linear Oscillations and Chaos Non-Linear Differential Equations Up to now we have considered differential equations with terms that are proportional to the acceleration, the velocity, and

More information

4452 Mathematical Modeling Lecture 13: Chaos and Fractals

4452 Mathematical Modeling Lecture 13: Chaos and Fractals Math Modeling Lecture 13: Chaos and Fractals Page 1 442 Mathematical Modeling Lecture 13: Chaos and Fractals Introduction In our tetbook, the discussion on chaos and fractals covers less than 2 pages.

More information

More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n.

More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n. More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n. If there are points which, after many iterations of map then fixed point called an attractor. fixed point, If λ

More information

Dynamical Systems and Chaos Part I: Theoretical Techniques. Lecture 4: Discrete systems + Chaos. Ilya Potapov Mathematics Department, TUT Room TD325

Dynamical Systems and Chaos Part I: Theoretical Techniques. Lecture 4: Discrete systems + Chaos. Ilya Potapov Mathematics Department, TUT Room TD325 Dynamical Systems and Chaos Part I: Theoretical Techniques Lecture 4: Discrete systems + Chaos Ilya Potapov Mathematics Department, TUT Room TD325 Discrete maps x n+1 = f(x n ) Discrete time steps. x 0

More information

Unit Ten Summary Introduction to Dynamical Systems and Chaos

Unit Ten Summary Introduction to Dynamical Systems and Chaos Unit Ten Summary Introduction to Dynamical Systems Dynamical Systems A dynamical system is a system that evolves in time according to a well-defined, unchanging rule. The study of dynamical systems is

More information

Modeling the Duffing Equation with an Analog Computer

Modeling the Duffing Equation with an Analog Computer Modeling the Duffing Equation with an Analog Computer Matt Schmitthenner Physics Department, The College of Wooster, Wooster, Ohio 44691, USA (Dated: December 13, 2011) The goal was to model the Duffing

More information

Analysis of Dynamical Systems

Analysis of Dynamical Systems 2 YFX1520 Nonlinear phase portrait Mathematical Modelling and Nonlinear Dynamics Coursework Assignments 1 ϕ (t) 0-1 -2-6 -4-2 0 2 4 6 ϕ(t) Dmitri Kartofelev, PhD 2018 Variant 1 Part 1: Liénard type equation

More information

Using Matlab to integrate Ordinary Differential Equations (ODEs)

Using Matlab to integrate Ordinary Differential Equations (ODEs) Using Matlab to integrate Ordinary Differential Equations (ODEs) Erica McEvoy (Dated: June 17, 2009) 1. INTRODUCTION Ordinary differential equations tend to arise whenever you need to model changing quantities

More information

A plane autonomous system is a pair of simultaneous first-order differential equations,

A plane autonomous system is a pair of simultaneous first-order differential equations, Chapter 11 Phase-Plane Techniques 11.1 Plane Autonomous Systems A plane autonomous system is a pair of simultaneous first-order differential equations, ẋ = f(x, y), ẏ = g(x, y). This system has an equilibrium

More information

DO NOT DO HOMEWORK UNTIL IT IS ASSIGNED. THE ASSIGNMENTS MAY CHANGE UNTIL ANNOUNCED.

DO NOT DO HOMEWORK UNTIL IT IS ASSIGNED. THE ASSIGNMENTS MAY CHANGE UNTIL ANNOUNCED. EE 533 Homeworks Spring 07 Updated: Saturday, April 08, 07 DO NOT DO HOMEWORK UNTIL IT IS ASSIGNED. THE ASSIGNMENTS MAY CHANGE UNTIL ANNOUNCED. Some homework assignments refer to the textbooks: Slotine

More information

DO NOT DO HOMEWORK UNTIL IT IS ASSIGNED. THE ASSIGNMENTS MAY CHANGE UNTIL ANNOUNCED.

DO NOT DO HOMEWORK UNTIL IT IS ASSIGNED. THE ASSIGNMENTS MAY CHANGE UNTIL ANNOUNCED. EE 5 Homewors Fall 04 Updated: Sunday, October 6, 04 Some homewor assignments refer to the textboos: Slotine and Li, etc. For full credit, show all wor. Some problems require hand calculations. In those

More information

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship.

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship. MULTI-DIMENSIONAL SYSTEM: In this computer simulation we will explore a nonlinear multi-dimensional system. As before these systems are governed by equations of the form x 1 = f 1 x 2 = f 2.. x n = f n

More information

Dynamical Systems. 1.0 Ordinary Differential Equations. 2.0 Dynamical Systems

Dynamical Systems. 1.0 Ordinary Differential Equations. 2.0 Dynamical Systems . Ordinary Differential Equations. An ordinary differential equation (ODE, for short) is an equation involves a dependent variable and its derivatives with respect to an independent variable. When we speak

More information

Modelling biological oscillations

Modelling biological oscillations Modelling biological oscillations Shan He School for Computational Science University of Birmingham Module 06-23836: Computational Modelling with MATLAB Outline Outline of Topics Van der Pol equation Van

More information

Lesson 11: Mass-Spring, Resonance and ode45

Lesson 11: Mass-Spring, Resonance and ode45 Lesson 11: Mass-Spring, Resonance and ode45 11.1 Applied Problem. Trucks and cars have springs and shock absorbers to make a comfortable and safe ride. Without good shock absorbers, the truck or car will

More information

Chapter 23. Predicting Chaos The Shift Map and Symbolic Dynamics

Chapter 23. Predicting Chaos The Shift Map and Symbolic Dynamics Chapter 23 Predicting Chaos We have discussed methods for diagnosing chaos, but what about predicting the existence of chaos in a dynamical system. This is a much harder problem, and it seems that the

More information

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz Theoretical physics Deterministic chaos in classical physics Martin Scholtz scholtzzz@gmail.com Fundamental physical theories and role of classical mechanics. Intuitive characteristics of chaos. Newton

More information

LAB #6 The Swaying Building

LAB #6 The Swaying Building LAB #6 The Swaying Building Goal: Determine a model of the swaying of a skyscraper; estimating parameters Required tools: Matlab routines pplane, ode45, plot; M-files; systems of differential equations.

More information

System Control Engineering 0

System Control Engineering 0 System Control Engineering 0 Koichi Hashimoto Graduate School of Information Sciences Text: Nonlinear Control Systems Analysis and Design, Wiley Author: Horacio J. Marquez Web: http://www.ic.is.tohoku.ac.jp/~koichi/system_control/

More information

Nonlinear Oscillations and Chaos

Nonlinear Oscillations and Chaos CHAPTER 4 Nonlinear Oscillations and Chaos 4-. l l = l + d s d d l l = l + d m θ m (a) (b) (c) The unetended length of each spring is, as shown in (a). In order to attach the mass m, each spring must be

More information

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation Section 3.4. Second Order Nonhomogeneous Equations y + p(x)y + q(x)y = f(x) (N) The corresponding homogeneous equation y + p(x)y + q(x)y = 0 (H) is called the reduced equation of (N). 1 General Results

More information

Chapter 2 PARAMETRIC OSCILLATOR

Chapter 2 PARAMETRIC OSCILLATOR CHAPTER- Chapter PARAMETRIC OSCILLATOR.1 Introduction A simple pendulum consists of a mass m suspended from a string of length L which is fixed at a pivot P. When simple pendulum is displaced to an initial

More information

Application 8.3 Automating the Frobenius Series Method

Application 8.3 Automating the Frobenius Series Method Application 8.3 Automating the Frobenius Series Method Here we illustrate the use of a computer algebra system to apply the method of Frobenius. In the paragraphs that follow, we consider the differential

More information

UNKNOWN BIFURCATION GROUPS WITH CHAOTIC AND RARE ATTRACTORS IN THE DUFFING-UEDA AND DUFFING - VAN DER POL ARCHETYPAL OSCILLATORS

UNKNOWN BIFURCATION GROUPS WITH CHAOTIC AND RARE ATTRACTORS IN THE DUFFING-UEDA AND DUFFING - VAN DER POL ARCHETYPAL OSCILLATORS 11 th International Conference on Vibration Problems Z. Dimitrovová et al. (eds.) Lisbon, Portugal, 9-12 September 2013 UNKNOWN BIFURCATION GROUPS WITH CHAOTIC AND RARE ATTRACTORS IN THE DUFFING-UEDA AND

More information

Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields

Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Elementary Differential Equations and Boundary Value Problems, 11 th edition, by William E. Boyce, Richard C. DiPrima,

More information

A New Chaotic Behavior from Lorenz and Rossler Systems and Its Electronic Circuit Implementation

A New Chaotic Behavior from Lorenz and Rossler Systems and Its Electronic Circuit Implementation Circuits and Systems,,, -5 doi:.46/cs..5 Published Online April (http://www.scirp.org/journal/cs) A New Chaotic Behavior from Lorenz and Rossler Systems and Its Electronic Circuit Implementation Abstract

More information

Response of A Hard Duffing Oscillator to Harmonic Excitation An Overview

Response of A Hard Duffing Oscillator to Harmonic Excitation An Overview INDIN INSTITUTE OF TECHNOLOGY, KHRGPUR 710, DECEMBER 8-0, 00 1 Response of Hard Duffing Oscillator to Harmonic Excitation n Overview.K. Mallik Department of Mechanical Engineering Indian Institute of Technology

More information

Transitioning to Chaos in a Simple Mechanical Oscillator

Transitioning to Chaos in a Simple Mechanical Oscillator Transitioning to Chaos in a Simple Mechanical Oscillator Hwan Bae Physics Department, The College of Wooster, Wooster, Ohio 69, USA (Dated: May 9, 8) We vary the magnetic damping, driver frequency, and

More information

General Physics I. Lecture 12: Applications of Oscillatory Motion. Prof. WAN, Xin ( 万歆 )

General Physics I. Lecture 12: Applications of Oscillatory Motion. Prof. WAN, Xin ( 万歆 ) General Physics I Lecture 1: Applications of Oscillatory Motion Prof. WAN, Xin ( 万歆 ) inwan@zju.edu.cn http://zimp.zju.edu.cn/~inwan/ Outline The pendulum Comparing simple harmonic motion and uniform circular

More information

Solutions. Chapter 5. Problem 5.1. Solution. Consider the driven, two-well Duffing s oscillator. which can be written in state variable form as

Solutions. Chapter 5. Problem 5.1. Solution. Consider the driven, two-well Duffing s oscillator. which can be written in state variable form as Chapter 5 Solutions Problem 5.1 Consider the driven, two-well Duffing s oscillator which can be written in state variable form as ẍ + ɛγẋ x + x 3 = ɛf cos(ωt) ẋ = v v = x x 3 + ɛ( γv + F cos(ωt)). In the

More information

Math 215/255 Final Exam (Dec 2005)

Math 215/255 Final Exam (Dec 2005) Exam (Dec 2005) Last Student #: First name: Signature: Circle your section #: Burggraf=0, Peterson=02, Khadra=03, Burghelea=04, Li=05 I have read and understood the instructions below: Please sign: Instructions:.

More information

M A : Ordinary Differential Equations

M A : Ordinary Differential Equations M A 2 0 5 1: Ordinary Differential Equations Essential Class Notes & Graphics D 19 * 2018-2019 Sections D07 D11 & D14 1 1. INTRODUCTION CLASS 1 ODE: Course s Overarching Functions An introduction to the

More information

Math 2250 Maple Project 2, March Tacoma Narrows. CLASSTIME VERSION A-E, F-K, L-R, S-Z

Math 2250 Maple Project 2, March Tacoma Narrows. CLASSTIME VERSION A-E, F-K, L-R, S-Z Math 2250 Maple Project 2, March 2004. Tacoma Narrows. NAME CLASSTIME VERSION A-E, F-K, L-R, S-Z Circle the version - see problem 2.1. There are six (6) problems in this project. Please answer the questions

More information

Simplest Chaotic Flows with Involutional Symmetries

Simplest Chaotic Flows with Involutional Symmetries International Journal of Bifurcation and Chaos, Vol. 24, No. 1 (2014) 1450009 (9 pages) c World Scientific Publishing Company DOI: 10.1142/S0218127414500096 Simplest Chaotic Flows with Involutional Symmetries

More information

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N).

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N). Section 3.4. Second Order Nonhomogeneous Equations y + p(x)y + q(x)y = f(x) (N) The corresponding homogeneous equation y + p(x)y + q(x)y = 0 (H) is called the reduced equation of (N). 1 General Results

More information

CALCULATION OF NONLINEAR VIBRATIONS OF PIECEWISE-LINEAR SYSTEMS USING THE SHOOTING METHOD

CALCULATION OF NONLINEAR VIBRATIONS OF PIECEWISE-LINEAR SYSTEMS USING THE SHOOTING METHOD Vietnam Journal of Mechanics, VAST, Vol. 34, No. 3 (2012), pp. 157 167 CALCULATION OF NONLINEAR VIBRATIONS OF PIECEWISE-LINEAR SYSTEMS USING THE SHOOTING METHOD Nguyen Van Khang, Hoang Manh Cuong, Nguyen

More information

PH 120 Project # 2: Pendulum and chaos

PH 120 Project # 2: Pendulum and chaos PH 120 Project # 2: Pendulum and chaos Due: Friday, January 16, 2004 In PH109, you studied a simple pendulum, which is an effectively massless rod of length l that is fixed at one end with a small mass

More information

Forced Mechanical Vibrations

Forced Mechanical Vibrations Forced Mechanical Vibrations Today we use methods for solving nonhomogeneous second order linear differential equations to study the behavior of mechanical systems.. Forcing: Transient and Steady State

More information

Examining the Effect of Additional Driving Forces on a Mechanical Oscillator

Examining the Effect of Additional Driving Forces on a Mechanical Oscillator Examining the Effect of Additional Driving Forces on a Mechanical Oscillator Nate Stone Physics Department, The College of Wooster, Wooster, Ohio 44691, USA (Dated: May 7, 2015) In this experiment, the

More information

Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m

Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m LECTURE 7. MORE VIBRATIONS ` Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m that is in equilibrium and

More information

Solutions for homework 5

Solutions for homework 5 1 Section 4.3 Solutions for homework 5 17. The following equation has repeated, real, characteristic roots. Find the general solution. y 4y + 4y = 0. The characteristic equation is λ 4λ + 4 = 0 which has

More information

From Last Time. Gravitational forces are apparent at a wide range of scales. Obeys

From Last Time. Gravitational forces are apparent at a wide range of scales. Obeys From Last Time Gravitational forces are apparent at a wide range of scales. Obeys F gravity (Mass of object 1) (Mass of object 2) square of distance between them F = 6.7 10-11 m 1 m 2 d 2 Gravitational

More information

Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change. Khatiwala, et.al.

Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change. Khatiwala, et.al. Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change Questions What are the characteristics of the unforced Lorenz system? What

More information

A Mathematica Companion for Differential Equations

A Mathematica Companion for Differential Equations iii A Mathematica Companion for Differential Equations Selwyn Hollis PRENTICE HALL, Upper Saddle River, NJ 07458 iv v Contents Preface viii 0. An Introduction to Mathematica 0.1 Getting Started 1 0.2 Functions

More information

The Nonlinear Pendulum

The Nonlinear Pendulum The Nonlinear Pendulum - Pádraig Ó Conbhuí - 08531749 TP Monday 1. Abstract This experiment was performed to examine the effects that linearizing equations has on the accuracy of results and to find ways

More information

vii Contents 7.5 Mathematica Commands in Text Format 7.6 Exercises

vii Contents 7.5 Mathematica Commands in Text Format 7.6 Exercises Preface 0. A Tutorial Introduction to Mathematica 0.1 A Quick Tour of Mathematica 0.2 Tutorial 1: The Basics (One Hour) 0.3 Tutorial 2: Plots and Differential Equations (One Hour) 0.4 Mathematica Programs

More information

Introduction to bifurcations

Introduction to bifurcations Introduction to bifurcations Marc R. Roussel September 6, Introduction Most dynamical systems contain parameters in addition to variables. A general system of ordinary differential equations (ODEs) could

More information

Chapter 6: Ensemble Forecasting and Atmospheric Predictability. Introduction

Chapter 6: Ensemble Forecasting and Atmospheric Predictability. Introduction Chapter 6: Ensemble Forecasting and Atmospheric Predictability Introduction Deterministic Chaos (what!?) In 1951 Charney indicated that forecast skill would break down, but he attributed it to model errors

More information

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5 University of Alberta ENGM 54: Modeling and Simulation of Engineering Systems Laboratory #5 M.G. Lipsett, Updated 00 Integration Methods with Higher-Order Truncation Errors with MATLAB MATLAB is capable

More information

First Order Systems of Linear Equations. or ODEs of Arbitrary Order

First Order Systems of Linear Equations. or ODEs of Arbitrary Order First Order Systems of Linear Equations or ODEs of Arbitrary Order Systems of Equations Relate Quantities Examples Predator-Prey Relationships r 0 = r (100 f) f 0 = f (r 50) (Lokta-Volterra Model) Systems

More information

THREE DIMENSIONAL SYSTEMS. Lecture 6: The Lorenz Equations

THREE DIMENSIONAL SYSTEMS. Lecture 6: The Lorenz Equations THREE DIMENSIONAL SYSTEMS Lecture 6: The Lorenz Equations 6. The Lorenz (1963) Equations The Lorenz equations were originally derived by Saltzman (1962) as a minimalist model of thermal convection in a

More information

Dynamical Systems with Applications

Dynamical Systems with Applications Stephen Lynch Dynamical Systems with Applications using MATLAB Birkhauser Boston Basel Berlin Preface xi 0 A Tutorial Introduction to MATLAB and the Symbolic Math Toolbox 1 0.1 Tutorial One: The Basics

More information

Linear Algebra and ODEs review

Linear Algebra and ODEs review Linear Algebra and ODEs review Ania A Baetica September 9, 015 1 Linear Algebra 11 Eigenvalues and eigenvectors Consider the square matrix A R n n (v, λ are an (eigenvector, eigenvalue pair of matrix A

More information

Lab 5: Nonlinear Systems

Lab 5: Nonlinear Systems Lab 5: Nonlinear Systems Goals In this lab you will use the pplane6 program to study two nonlinear systems by direct numerical simulation. The first model, from population biology, displays interesting

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for solving higher order ODEs and

More information

Question: Total. Points:

Question: Total. Points: MATH 308 May 23, 2011 Final Exam Name: ID: Question: 1 2 3 4 5 6 7 8 9 Total Points: 0 20 20 20 20 20 20 20 20 160 Score: There are 9 problems on 9 pages in this exam (not counting the cover sheet). Make

More information

The phenomenon: complex motion, unusual geometry

The phenomenon: complex motion, unusual geometry Part I The phenomenon: complex motion, unusual geometry Chapter 1 Chaotic motion 1.1 What is chaos? Certain long-lasting, sustained motion repeats itself exactly, periodically. Examples from everyday life

More information

NONLINEAR DYNAMICS AND CHAOS. Numerical integration. Stability analysis

NONLINEAR DYNAMICS AND CHAOS. Numerical integration. Stability analysis LECTURE 3: FLOWS NONLINEAR DYNAMICS AND CHAOS Patrick E McSharr Sstems Analsis, Modelling & Prediction Group www.eng.o.ac.uk/samp patrick@mcsharr.net Tel: +44 83 74 Numerical integration Stabilit analsis

More information

The dynamics of the Forced Damped Pendulum. John Hubbard Cornell University and Université de Provence

The dynamics of the Forced Damped Pendulum. John Hubbard Cornell University and Université de Provence The dynamics of the Forced Damped Pendulum John Hubbard Cornell University and Université de Provence Three ways to view the pendulum Three ways to view the pendulum 1. As a physical object Three ways

More information

Linear Second Order ODEs

Linear Second Order ODEs Chapter 3 Linear Second Order ODEs In this chapter we study ODEs of the form (3.1) y + p(t)y + q(t)y = f(t), where p, q, and f are given functions. Since there are two derivatives, we might expect that

More information

Homogeneous Equations with Constant Coefficients

Homogeneous Equations with Constant Coefficients Homogeneous Equations with Constant Coefficients MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Spring 2018 General Second Order ODE Second order ODEs have the form

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field

Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6- Transduction Based on Changes in the Energy Stored in an Electrical Field Actuator Examples Microgrippers Normal force driving In-plane force driving» Comb-drive device F = εav d 1 ε oε F rwv

More information

Backstepping synchronization of uncertain chaotic systems by a single driving variable

Backstepping synchronization of uncertain chaotic systems by a single driving variable Vol 17 No 2, February 2008 c 2008 Chin. Phys. Soc. 1674-1056/2008/17(02)/0498-05 Chinese Physics B and IOP Publishing Ltd Backstepping synchronization of uncertain chaotic systems by a single driving variable

More information

Generating a Complex Form of Chaotic Pan System and its Behavior

Generating a Complex Form of Chaotic Pan System and its Behavior Appl. Math. Inf. Sci. 9, No. 5, 2553-2557 (2015) 2553 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.12785/amis/090540 Generating a Complex Form of Chaotic Pan

More information

Math 266: Phase Plane Portrait

Math 266: Phase Plane Portrait Math 266: Phase Plane Portrait Long Jin Purdue, Spring 2018 Review: Phase line for an autonomous equation For a single autonomous equation y = f (y) we used a phase line to illustrate the equilibrium solutions

More information

Mechanisms of Chaos: Stable Instability

Mechanisms of Chaos: Stable Instability Mechanisms of Chaos: Stable Instability Reading for this lecture: NDAC, Sec. 2.-2.3, 9.3, and.5. Unpredictability: Orbit complicated: difficult to follow Repeatedly convergent and divergent Net amplification

More information

Final Exam December 20, 2011

Final Exam December 20, 2011 Final Exam December 20, 2011 Math 420 - Ordinary Differential Equations No credit will be given for answers without mathematical or logical justification. Simplify answers as much as possible. Leave solutions

More information

I. THE PENDULUM. y 1 (t) = θ(t) (2) y 2 (t) = dθ(t) dt

I. THE PENDULUM. y 1 (t) = θ(t) (2) y 2 (t) = dθ(t) dt 1 I. THE PENDULUM In this section, we will explore using Mathematica as a tool, several aspects of the pendulum that you might have done as anexperiment inthe lab. We begin by looking at the forces that

More information

Jim Lambers MAT 285 Spring Semester Practice Exam 2 Solution. y(t) = 5 2 e t 1 2 e 3t.

Jim Lambers MAT 285 Spring Semester Practice Exam 2 Solution. y(t) = 5 2 e t 1 2 e 3t. . Solve the initial value problem which factors into Jim Lambers MAT 85 Spring Semester 06-7 Practice Exam Solution y + 4y + 3y = 0, y(0) =, y (0) =. λ + 4λ + 3 = 0, (λ + )(λ + 3) = 0. Therefore, the roots

More information

v n+1 = v T + (v 0 - v T )exp(-[n +1]/ N )

v n+1 = v T + (v 0 - v T )exp(-[n +1]/ N ) Notes on Dynamical Systems (continued) 2. Maps The surprisingly complicated behavior of the physical pendulum, and many other physical systems as well, can be more readily understood by examining their

More information

ENGI Duffing s Equation Page 4.65

ENGI Duffing s Equation Page 4.65 ENGI 940 4. - Duffing s Equation Page 4.65 4. Duffing s Equation Among the simplest models of damped non-linear forced oscillations of a mechanical or electrical system with a cubic stiffness term is Duffing

More information

Periodic Skeletons of Nonlinear Dynamical Systems in the Problems of Global Bifurcation Analysis

Periodic Skeletons of Nonlinear Dynamical Systems in the Problems of Global Bifurcation Analysis Periodic Skeletons of Nonlinear Dynamical Systems in the Problems of Global Bifurcation Analysis M Zakrzhevsky, I Schukin, A Klokov and E Shilvan PERIODIC SKELETONS OF NONLINEAR DYNAMICAL SYSTEMS IN THE

More information

Introduction Knot Theory Nonlinear Dynamics Topology in Chaos Open Questions Summary. Topology in Chaos

Introduction Knot Theory Nonlinear Dynamics Topology in Chaos Open Questions Summary. Topology in Chaos Introduction Knot Theory Nonlinear Dynamics Open Questions Summary A tangled tale about knot, link, template, and strange attractor Centre for Chaos & Complex Networks City University of Hong Kong Email:

More information

MAS212 Assignment #2: The damped driven pendulum

MAS212 Assignment #2: The damped driven pendulum MAS Assignment #: The damped driven pendulum Sam Dolan (January 8 Introduction In this assignment we study the motion of a rigid pendulum of length l and mass m, shown in Fig., using both analytical and

More information

Solutions to the Homework Replaces Section 3.7, 3.8

Solutions to the Homework Replaces Section 3.7, 3.8 Solutions to the Homework Replaces Section 3.7, 3.8 1. Our text (p. 198) states that µ ω 0 = ( 1 γ2 4km ) 1/2 1 1 2 γ 2 4km How was this approximation made? (Hint: Linearize 1 x) SOLUTION: We linearize

More information

Manifesto on Numerical Integration of Equations of Motion Using Matlab

Manifesto on Numerical Integration of Equations of Motion Using Matlab Manifesto on Numerical Integration of Equations of Motion Using Matlab C. Hall April 11, 2002 This handout is intended to help you understand numerical integration and to put it into practice using Matlab

More information

Mechanical Resonance and Chaos

Mechanical Resonance and Chaos Mechanical Resonance and Chaos You will use the apparatus in Figure 1 to investigate regimes of increasing complexity. Figure 1. The rotary pendulum (from DeSerio, www.phys.ufl.edu/courses/phy483l/group_iv/chaos/chaos.pdf).

More information

Stability of Dynamical systems

Stability of Dynamical systems Stability of Dynamical systems Stability Isolated equilibria Classification of Isolated Equilibria Attractor and Repeller Almost linear systems Jacobian Matrix Stability Consider an autonomous system u

More information

Nonlinear Dynamic Systems Homework 1

Nonlinear Dynamic Systems Homework 1 Nonlinear Dynamic Systems Homework 1 1. A particle of mass m is constrained to travel along the path shown in Figure 1, which is described by the following function yx = 5x + 1x 4, 1 where x is defined

More information

HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, Maximum score 7.0 pts.

HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, Maximum score 7.0 pts. HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, 2010. Maximum score 7.0 pts. Three problems are to be solved in this homework assignment. The

More information

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad Fundamentals of Dynamical Systems / Discrete-Time Models Dr. Dylan McNamara people.uncw.edu/ mcnamarad Dynamical systems theory Considers how systems autonomously change along time Ranges from Newtonian

More information

Problem 1: (3 points) Recall that the dot product of two vectors in R 3 is

Problem 1: (3 points) Recall that the dot product of two vectors in R 3 is Linear Algebra, Spring 206 Homework 3 Name: Problem : (3 points) Recall that the dot product of two vectors in R 3 is a x b y = ax + by + cz, c z and this is essentially the same as the matrix multiplication

More information

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N).

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N). Section 3.4. Second Order Nonhomogeneous Equations y + p(x)y + q(x)y = f(x) (N) The corresponding homogeneous equation y + p(x)y + q(x)y = 0 (H) is called the reduced equation of (N). 1 General Results

More information

Fractals, Dynamical Systems and Chaos. MATH225 - Field 2008

Fractals, Dynamical Systems and Chaos. MATH225 - Field 2008 Fractals, Dynamical Systems and Chaos MATH225 - Field 2008 Outline Introduction Fractals Dynamical Systems and Chaos Conclusions Introduction When beauty is abstracted then ugliness is implied. When good

More information

Lab 1: Damped, Driven Harmonic Oscillator

Lab 1: Damped, Driven Harmonic Oscillator 1 Introduction Lab 1: Damped, Driven Harmonic Oscillator The purpose of this experiment is to study the resonant properties of a driven, damped harmonic oscillator. This type of motion is characteristic

More information

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N).

Section 3.4. Second Order Nonhomogeneous. The corresponding homogeneous equation. is called the reduced equation of (N). Section 3.4. Second Order Nonhomogeneous Equations y + p(x)y + q(x)y = f(x) (N) The corresponding homogeneous equation y + p(x)y + q(x)y = 0 (H) is called the reduced equation of (N). 1 General Results

More information

Ordinary Differential Equations I

Ordinary Differential Equations I Ordinary Differential Equations I CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations I 1 / 32 Theme of Last Few

More information

Stability Analysis for ODEs

Stability Analysis for ODEs Stability Analysis for ODEs Marc R Roussel September 13, 2005 1 Linear stability analysis Equilibria are not always stable Since stable and unstable equilibria play quite different roles in the dynamics

More information

CDS 101 Precourse Phase Plane Analysis and Stability

CDS 101 Precourse Phase Plane Analysis and Stability CDS 101 Precourse Phase Plane Analysis and Stability Melvin Leok Control and Dynamical Systems California Institute of Technology Pasadena, CA, 26 September, 2002. mleok@cds.caltech.edu http://www.cds.caltech.edu/

More information

Introduction to Dynamical Systems Basic Concepts of Dynamics

Introduction to Dynamical Systems Basic Concepts of Dynamics Introduction to Dynamical Systems Basic Concepts of Dynamics A dynamical system: Has a notion of state, which contains all the information upon which the dynamical system acts. A simple set of deterministic

More information

CDS 101/110a: Lecture 2.1 Dynamic Behavior

CDS 101/110a: Lecture 2.1 Dynamic Behavior CDS 11/11a: Lecture.1 Dynamic Behavior Richard M. Murray 6 October 8 Goals: Learn to use phase portraits to visualize behavior of dynamical systems Understand different types of stability for an equilibrium

More information

Lab 1: damped, driven harmonic oscillator

Lab 1: damped, driven harmonic oscillator Lab 1: damped, driven harmonic oscillator 1 Introduction The purpose of this experiment is to study the resonant properties of a driven, damped harmonic oscillator. This type of motion is characteristic

More information

Twinkling Phenomena In Snap-Through Oscillators

Twinkling Phenomena In Snap-Through Oscillators Twinkling Phenomena In Snap-Through Oscillators Brian F. Feeny Department of Mechanical Engineering Michigan State University East Lansing, MI 4884 6 Alejandro R. Diaz Department of Mechanical Engineering

More information