Modeling the Ikeda Map By: Jonathan Eads

Slides:



Advertisements
Similar presentations
Chaos Game Exploration of Triple Vertex Polygons John Paul, Thomas, Bjorn GUTS/Challenge STI 2009.
Advertisements

Vertical vs. Splayed Skylights Vertical vs. Splayed By: Lisa Bornemann & Brad Koehler Brad Koehler.
Robust Network Compressive Sensing Lili Qiu UT Austin NSF Workshop Nov. 12, 2014.
Image courtesy of Google Maps Caitlin Campbell, Julie Thomas and Aaron Witty A B C D E F G I H J K Image 1.1 Soil Hydraulic Properties Report at 21 Acres.
M ☺ deling of User Behavior In Matching Task Based on Previous Reward History and Personal Risk Factor April 1, 2004 Helen Belogolova Amy Daitch.
Watermarking For Image Authentication Presented by San-Hao Wang.
Face Recognition Based on 3D Shape Estimation
Mathematical Analysis of a Demonstrative Chaotic Circuit Karen Kelleher and Dr. Thomas Kling, Department of Physics, Bridgewater State College, Bridgewater,
Goals of Adaptive Signal Processing Design algorithms that learn from training data Algorithms must have good properties: attain good solutions, simple.
NUMERICAL SOLUTION OF ORDINARY DIFFERENTIAL EQUATIONS
Contents Overview Major Features Major Components User Interface Gameplay Testing UML Timeline.
1 Real time signal processing SYSC5603 (ELG6163) Digital Signal Processing Microprocessors, Software and Applications Miodrag Bolic.
Variations of Conway’s Game of Life Eswar Kondapavuluri.
Hair Simulation 1 Pertemuan 09 Matakuliah : UO714 / Technology for Animation Tahun : 2009.
There are about 64 calories in a medium sized donut, 37 calories in a small donut and 86 calories in a large donut. The reason why donuts have calories.
Senior Project – Computer Science – 2015 Modelling Opponents in Board Games Julian Jocque Advisor – Prof. Rieffel Abstract Modelling opponents in a game.
Investigating the Possibility of Dynamical Tuning of a Signal Recycling Cavity Chasya Eli Church Mentor: Kiwamu Izumi.
GRNmap Testing Grace Johnson and Natalie Williams June 3, 2015.
Jack DeWeese Computer Systems Research Lab. Purpose  Originally intended to create my own simulation with easily modified variables  Halfway through.
Simulation is the process of studying the behavior of a real system by using a model that replicates the behavior of the system under different scenarios.
Stereogram Solver Katya Groisman. What is stereogram? Two-dimensional image, with an optic illusion of depth.
What Jobs will be Available for my Students?. Jot down 3 occupations related to the skills you teach students or prepare students for Put each occupation.
A* Project Project 1 Due Sep. 26, 2012, 10pm EST Class presentation on Oct. 1, 2012.
Initial Population Generation Methods for population generation: Grow Full Ramped Half-and-Half Variety – Genetic Diversity.
Dynamic Aperture Study for the Ion Ring Lattice Options Min-Huey Wang, Yuri Nosochkov MEIC Collaboration Meeting Fall 2015 Jefferson Lab, Newport News,
EPS 109 Final Project: An Attempt at Fractal Plants Natalie Mezaki SWEET CHERRIES.
Rendering Synthetic Objects into Real Scenes: Bridging Traditional and Image-based Graphics with Global Illumination and High Dynamic Range Photography.
Stage 1 Statistics students from Auckland university Using a sample to make a point estimate.
Governor’s School for the Sciences Mathematics Day 4.
Simulation of the Spread of a Virus Throughout Interacting Populations with Varying Degrees and Methods of Vaccination Jack DeWeese Computer Systems Lab.
Erosion of pyramids With variable uplift and hardness Daniel Clements.
Controlling Chaos Journal presentation by Vaibhav Madhok.
 Swarms and Schools: Follow the Leader Jesse Redding EPS 109 Final Presentation.
Improving the Crab Mrs. C. Furman August 19, 2010.
Instability of optical speckle patterns in cold atomic gases ? S.E. Skipetrov CNRS/Grenoble (Part of this.
ECE-7000: Nonlinear Dynamical Systems 3. Phase Space Methods 3.1 Determinism: Uniqueness in phase space We Assume that the system is linear stochastic.
Saturable absorption and optical limiting
THE MAPLE LEAF FRACTAL Christina VoEPS 109 Fall 2013.
Learning Objectives 1. Understand how the Small Basic Turtle operates. 2. Be able to draw geometric patterns using iteration.
The PASCO Pendulum Weight attached to rotating disc Springs attached to either side of disc in pulley fashion One spring is driven by sinusoidal force.
Dimension Review Many of the geometric structures generated by chaotic map or differential dynamic systems are extremely complex. Fractal : hard to define.
VOLUME FORMULA OF N-DIMENSIONAL HYPERSPHERE (ITERATIVE METHOD)
On the next slide… Place your “overall picture” and a short description of what it is.
Landscape through Diffusion- Limited Aggregation
Jump Jump Jump.
Report Implement PAP’ = LDL’ and linear solver in C/C++ ( ok )
6-7 Inverse Relations and Functions
Hire Toyota Innova in Delhi for Outstation Tour
REU Report Meetings – Week 7
CS005 Introduction to Programming
11. Sampling and populations
2012 סיכום מפגש 2 שלב המשכי תהליך חזוני-אסטרטגי של המועצה העליונה של הפיזיותרפיה בישראל.
VERTICAL LINE TEST GRAPHS can represent functions.
سیگنال ها و سیستم ها درس دوم حمیدرضا پوررضا.
VOCABULARY! EXAMPLES! Relation: Domain: Range: Function:
مديريت موثر جلسات Running a Meeting that Works
Frequency Dependence: Dielectric Constant and Dielectric Loss
Coordinates y x The origin
Grids A1,1 A1,2 A1,3 A1,4 A2,1 A2,2 A2,3 A2,4 A3,1 A3,2 A3,3 A3,4 A4,1 A4,2 A4,3 A4,4.
VOCABULARY! EXAMPLES! Relation: Domain: Range: Function:
By Soham Chakraborty, Joey Huntley, and Susan Xie
Colour scheme A secondary colour is simply a colour made by two mixing colours in a given colour space.
Creating Data Sets Central Tendencies Median Mode Range.
Coordinates y x The origin
Verilog Implementation of Cordic based Adaptive Lattice Filter (CALF)
CSSE463: Image Recognition Day 17
Modified at -
copyright Robert J. Marks II
GCSE Computing.
Empirical Distributions
Presentation transcript:

Modeling the Ikeda Map By: Jonathan Eads

Background & Methods yn+1 = u(xnsintn + yncostn) The Ikeda Map is a model of light going around and across a nonlinear optical resonator. It is often used in a modified form in order to take the saturation effect of nonlinear dielectric medium into account. The attractor of the system changes as the parameter u is varied. The original map is given by the formula:zn+1 = A + BzneiK/(|zn|2+1)+C A 2D real example of the above form is: xn+1 = 1 + u(xncostn – ynsintn) yn+1 = u(xnsintn + yncostn) tn = 0.4 – 6/(1 + x2n + y2n) For this project I set xn & yn to be random using the rand() function. I set u to be a range a numbers from 0.1 to 1 in 0.01 steps. I ran the model for 1,000 iterations.

Ikeda Map 2D

Run my code with: compute_ikeda_trajectory.m Final_modified.m