Numerical Solutions and chaotic behavior 1 Numerical Solutions and Chaos.

Slides:



Advertisements
Similar presentations
A TASTE OF CHAOS By Adam T., Andy S., and Shannon R.
Advertisements

The flapping of a single butterfly's wing today produces a tiny change in the state of the atmosphere. Over a period of time, what the atmosphere actually.
More on Julia & Mandelbrot Sets, Chaos
MATLAB Ordinary Differential Equations – Part II Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University September.
Def f(n): if (n == 0): return else: print(“*”) return f(n-1) f(3)
From
Predictability and Chaos EPS and Probability Forecasting.
CHAOS THEORY and the butterfly effect English presentation By: Assaad Moawad.
Lab 8: The onset of chaos Unpredictable dynamics of deterministic systems, often found in non-linear systems. Background of chaos Logistic Equation Non-linear.
1. 2 Class #26 Nonlinear Systems and Chaos Most important concepts  Sensitive Dependence on Initial conditions  Attractors Other concepts  State-space.
Chaos and System dynamics Leon Chang. Edward Lorenz In the early 1960's using a simple system of equations to model convection in the atmosphere, Edward.
1 GEM2505M Frederick H. Willeboordse Taming Chaos.
Astro 201: Sept. 9, 2010 Do on-line practice quiz #2 by 9/14
1 : Handout #20 Nonlinear Systems and Chaos Most important concepts  Sensitive Dependence on Initial conditions  Attractors Other concepts 
Statistical Methods for long-range forecast By Syunji Takahashi Climate Prediction Division JMA.
A PowerPoint presentation brought to you by Christian Malone and Alissa Ousley.
AJITESH VERMA 1.  Dictionary meaning of chaos- state of confusion lack of any order or control.  Chaos theory is a branch of mathematics which studies.
What’s so confusing about Chaos? A foray into lighting an eternal, learning flame. Ali Korosy Foreign Languages
MAT120 Asst. Prof. Dr. Ferhat PAKDAMAR (Civil Engineer) M Blok - M106 Gebze Technical University Department of Architecture Spring.
Rayleigh Bernard Convection and the Lorenz System
Chaos Theory and Fractals By Tim Raine and Kiara Vincent.
Strange Attractors and Lorenz Equations
The Lorenz Equations Erik Ackermann & Emma Crow- Willard.
Chaos Identification For the driven, damped pendulum, we found chaos for some values of the parameters (the driving torque F) & not for others. Similarly,
Strategies and Rubrics for Teaching Chaos and Complex Systems Theories as Elaborating, Self-Organizing, and Fractionating Evolutionary Systems Fichter,
Chaos and Strange Attractors
MA Dynamical Systems MODELING CHANGE. Introduction to Dynamical Systems.
Chaos, Communication and Consciousness Module PH19510 Lecture 16 Chaos.
Associate Professor: C. H.L IAO. Contents:  4.1 Introduction 144  4.2 Nonlinear Oscillations 146  4.3 Phase Diagrams for Nonlinear Systems 150  4.4.
Meteorology From Common sense to Computer Science. How Computers and Mathematics changed weather forecasts and what it it means for us?
Chaos Theory Lorenz AttractorTurbulence from an aeroplane wing.
Fractional Dimensions, Strange Attractors & Chaos
Some figures adapted from a 2004 Lecture by Larry Liebovitch, Ph.D. Chaos BIOL/CMSC 361: Emergence 1/29/08.
Quantitative presentation example: Does a paper ball and scotch tape pendulum behave like an ideal pendulum? Arnando Shastrini Minnesota State University.
Manas Bajaj (ME) Qingguo Zhang (AE) Sripathi Mohan (AE) Thao Tran (AE)
The Matrix Theory of Objects An Update Sergio Pissanetzky Model Universality Behavior Constraints Dynamics Cost Chaos Attractors.
Dynamical Systems 4 Deterministic chaos, fractals Ing. Jaroslav Jíra, CSc.
Chaos in Pendulum Power spectrum approach Deeder Aurongzeb Instructor: Dr. Charles Myles.
Control and Synchronization of Chaos Li-Qun Chen Department of Mechanics, Shanghai University Shanghai Institute of Applied Mathematics and Mechanics Shanghai.
Chaos : Making a New Science
Models pretend that nature is simple, predictable and unchanging:
Management in complexity The exploration of a new paradigm Complexity theory and the Quantum Interpretation Walter Baets, PhD, HDR Associate Dean for Innovation.
Pre-Lab 5A: What Is A Newton?. Purpose You can think of force as a push or pull. Objects interact with each other (and you) through forces. It takes force.
The Three Body Problem a mechanical system with three objects needed to explain the movement of celestial objects due to gravitational attraction famous.
Name: Ha Pham Chaos Theory: Double Pendulum. Methods Double pendulum: simple pendulum with another pendulum attached to its end Solve Lagrangian: L =
Tutorial on Nov.12. Remarks for Lab4 assignemnt Euler method vs. Euler-Cromer method Euler methodEuler-Cromer method Sequence of the last two lines are.
T306 managing complexity: a systems approach TUTORIAL 7 BLOCK 1 – PART 4.
38 The Atom and the Quantum The radii of the electron orbits in the Bohr model of the atom are determined by the amount of electric charge in the nucleus.
Chaos and the Butterfly Effect Presented by S. Yuan.
Windows XP Professional Not Finish Yet
Introduction to Chaos Clint Sprott
Thought of the Week 29.

Model Initialization Spring 2016 Kyle Imhoff.
Simple Harmonic Motion
Theory of nonlinear dynamic systems Practice 7
Scientific Background for “Sound of Thunder”
CSC 110 – Fluency in Information Technology Chapter 20: The random function and Chaos Dr. Curry Guinn.
NATS 101 Lecture 26 Weather Forecasting 2
Gloria Mayorga-Garcia Erin Kim Noorsher Ahmed
Section 5.5 – Logarithmic Equations
Do Now Heading: Dot Motion Diagrams
Numerical Analysis Project
PREDICTING THE WEATHER
Physics-based simulation for visual computing applications
Potential and Kinetic Energy
Mathematical Model.
This is… 2 DOUBLES 4→10 EARLY NUMBER SENSE.
Section 12.5 – Logarithmic Equations
This is… 7 DOUBLES 12→20 EARLY NUMBER SENSE.
Presentation transcript:

Numerical Solutions and chaotic behavior 1 Numerical Solutions and Chaos

A Taste of Code def derivs(y, tsoln): th, a, pt, pa = y tdot = (pt - (1 + cos(a)) * pa)/(2.0 - cos(a)**2) adot = pa - tdot * (1.0 + cos(a)) ptdot = -g*(2.0 * sin(th) + sin(th + a)) padot = -tdot * (tdot + adot) * sin(a) -g * sin(th + a) return np.array((tdot, adot, ptdot, padot)) Numerical Solutions and Chaos 2

A Boy’s First Computer Numerical Solutions and Chaos 3

Neolithic Computing Bendix G15 $60, tubes 2160 words of memory punched paper tape i/o optional dent in the front panel 10 char/sec typewriter Numerical Solutions and Chaos 4

Richard Hamming ( ) The purpose of computing is insight, not numbers. Numerical Solutions and Chaos 5

Begin with g = 0 (no gravity) Numerical Solutions and Chaos 6

numerical results (g-free) Numerical Solutions and Chaos 7 timeE 

tip motion (g-free) Numerical Solutions and Chaos 8

Now turn on gravity Numerical Solutions and Chaos 9

numerical results (g active) timeE  Numerical Solutions and Chaos 10

tip motion (g active) Numerical Solutions and Chaos 11

Chaos Numerical Solutions and Chaos 12

Edward Lorenz ( ) Meteorologist who contributed to chaos theory. Encountered pathological sensitivity to initial conditions in early weather prediction simulations. Published Does the Flap of a Butterfly's Wings in Brazil Set Off a Tornado in Texas? Numerical Solutions and Chaos 13

Lorenz’ Informal Definition Chaos: When the present determines the future, but the approximate present does not approximately determine the future. Numerical Solutions and Chaos 14

Some properties of chaos Numerical Solutions and Chaos 15

Numerical Chaos Numerical Solutions and Chaos 16

using numbers We generated two numerical solutions to the double pendulum with initial conditions that differed by one part in 1000 (0.1%). For each solution we computed the location of the tip of the pendulum, and then computed the distance, as a function of time, between the two tips. Numerical Solutions and Chaos 17

Tip offsets versus time Numerical Solutions and Chaos 18

Tip offsets versus time (log) Numerical Solutions and Chaos 19