Logo by Sockratease - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Check out the originating "3d Mandelbulb" thread here
 
*
Welcome, Guest. Please login or register. March 29, 2024, 09:08:17 AM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: [1]   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Bifurcations of Coupled systems  (Read 872 times)
Description: Pics and codes
0 Members and 1 Guest are viewing this topic.
bkercso
Fractal Lover
**
Posts: 220



« on: May 21, 2016, 01:41:11 AM »

I examined the well known coupled logistic map and the coupled standard map and got some nice pics.
Coupled means two same systems started from different initial conditions, and a coupling between them, which is symmetric in these cases:

The coupled logistic map:
Code:
x_temp:=parameter*x*(1-x);
x2_temp:=parameter*x2*(1-x2);
x:=x_temp+coupling*(x2_temp-x_temp);
x2:=x2_temp+coupling*(x_temp-x2_temp);

[parameter=0..4; x,x2=0..1; coupling=0..0.5]


The coupled standard map:
Code:
pi2:=2*pi();

p_temp:=p+k*sin(q);
while p_temp>pi2 do p_temp:=p_temp-pi2;
while p_temp<-pi2 do p_temp:=p_temp+pi2;
q_temp:=q+p_temp;
while q_temp>pi2 do q_temp:=q_temp-pi2;
while q_temp<-pi2 do q_temp:=q_temp+pi2;

p2_temp:=p2+k*sin(q2);
while p2_temp>pi2 do p2_temp:=p2_temp-pi2;
while p2_temp<-pi2 do p2_temp:=p2_temp+pi2;
q2_temp:=q2+p2_temp;
while q2_temp>pi2 do q2_temp:=q2_temp-pi2;
while q2_temp<-pi2 do q2_temp:=q2_temp+pi2;

p_diff:=p2_temp-p_temp;
while p_diff>pi2 do p_diff:=p_diff-pi2;
while p_diff<-pi2 do p_diff:=p_diff+pi2;
p2_diff:=p_temp-p2_temp;
while p2_diff>pi2 do p2_diff:=p2_diff-pi2;
while p2_diff<-pi2 do p2_diff:=p2_diff+pi2;
q_diff:=q2_temp-q_temp;
while q_diff>pi2 do q_diff:=q_diff-pi2;
while q_diff<-pi2 do q_diff:=q_diff+pi2;
q2_diff:=q_temp-q2_temp;
while q2_diff>pi2 do q2_diff:=q2_diff-pi2;
while q2_diff<-pi2 do q2_diff:=q2_diff+pi2;

p:=p_temp+coupling*p_diff;
p2:=p2_temp+coupling*p2_diff;
q:=q_temp+coupling*q_diff;
q2:=q2_temp+coupling*q2_diff;

while p>pi2 do p:=p-pi2;
while p<-pi2 do p:=p+pi2;
while q>pi2 do q:=q-pi2;
while q<-pi2 do q:=q+pi2;
while p2>pi2 do p2:=p2-pi2;
while p2<-pi2 do p2:=p2+pi2;
while q2>pi2 do q2:=q2-pi2;
while q2<-pi2 do q2:=q2+pi2;


The pics are generated with this program:
http://www.fractalforums.com/windows-fractal-software/bifurcation-fractal-plotter-biffrapl/

The coupled logistic map is a multiple attractor system (http://www.fractalforums.com/new-theories-and-research/multiple-attractor-bifurcation-fractals/), while in the case of the coupled standard map this doesn't make sense, as this system doesn't produce regular bifurcations, as seen before (http://www.fractalforums.com/new-theories-and-research/bifurcation-fractal-of-standard-map/): this has no periodic intervals, just quasiperiodic and hard chaotic regions.
("Regular" systems, which produce "regular" bifurcations are opposite: only has periodic intervals, of which parameter-range is more and more narrow, while period length is longer and longer.)


Img #1: Coupled logistic maps, coupling=0.01


Img #2: coupling=0.1


Img #3: coupling=0.105 (download and switch between this and the previous one!)



Img #4: Coupled standard maps, series; coupling=0; 1E-6; 1E-5; 1E-4; 1E-3; 1E-2; 3E-2; 1E-1; 2.5E-1; 5E-1










« Last Edit: May 22, 2016, 01:25:49 AM by bkercso » Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #1 on: May 22, 2016, 04:08:50 PM »

Its interesting that if we stepped the coupling with a fixed parameter, we get similar structures at coupled logistic maps. This is because the structures seems to move on the standard bifurcation plot as we increase the coupling constant (just compare Img #2 and #3).


Img #5: coupled logistic map, stepped the coupling (0..0.2) and fixed the parameter (3.8): where periodicity appears, the two maps are synchronized



Img #6: coupled logistic map, stepped the coupling (0..0.14) and fixed the parameter (3.6):


Img #7: coupled logistic map, stepped the coupling (0..0.14) and fixed the parameter (3.99):


Img #8: zoom of Img #7
Set: the big object belongs to one attractor, and the six little ones belong a 2nd attractor


Zoom: its grooved because of the small number of trials of change attractor (50), therefor program spend more iterations on some attractor that on others

« Last Edit: June 18, 2016, 03:41:33 AM by bkercso » Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #2 on: May 22, 2016, 10:56:08 PM »

Img #9: a zoom of Img #8

Set:


Zoom: with average 100,000 iterations/pixel, 2 Mpix, 500 trials to change attractor at every value of coupling
(I'm thinking how can solve easily to color each attractor with different colors...?)
Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #3 on: May 22, 2016, 11:27:19 PM »

Let's see the other coupled system here, the coupled standard map! It behaves different. I fixed parameter to two values, 1st for a chaotic region and 2nd to a quasy periodic region:

Img #10: Choose parameter values to fix.


Img #11: Fixed parameter to "1", stepped coupling: coupling=0..0.5, x=-6.28..6.28 [k=1.2, p_initial=1.78, q_initial=3.14, plotted p]
Images also shows the zoom are of next img.


Img #12: zoom of selected area of Img #11, coupling=-5E-4..0.124, x=-1.34..2.43


Img# 13: a zoom of the above selected area: we get the regular patterns of the "bifurcation" fractal of standard map


Img #14:
Set: (this is Img #12 without rotation)


Zoom: noise: system is periodic, but the attractor changes rapidly with coupling
« Last Edit: May 22, 2016, 11:33:33 PM by bkercso » Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #4 on: May 22, 2016, 11:42:12 PM »

Now parameter is fixed to "2" (as showed on Img #10): a quasy periodic region:

Img #15: coupling=0..0.5, x=-6.28..6.28 [k=1.2, p_initial=2.92 (this is showed on Img #10), q_initial=3.14, plotted p]
Started from a quasy periodic setup and applying some coupling, a fast transitions takes place to chaos. Then, after a certain amount of coupling quasy periodicity appears again - on that place (ie. between thap p values), where was without coupling -, but on a strange way: interrupted with narrow "noisy" region(s?). When system is chaotic, attractor is shifted to an other region.


Img #16: But how fast is the first transition from q.p. to chaos? Top left corner of Img #15: we don't get sharp patterns...


Img #17: and a q.p. region from the right side of Img #15, without (?) narrow interruptions
Set:


Zoom:

« Last Edit: May 23, 2016, 01:01:44 AM by bkercso » Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #5 on: May 23, 2016, 12:40:30 PM »

An interesting article about Earth's climate as a result of coupled nonlinear systems (which are ocean and atmosphere):
https://wattsupwiththat.com/2015/11/23/chaos-climate-part-2-chaos-stability/

And some additional explanation to the previous images of coupled logistic maps:
We can see that system can shift from periodic to chaotic behavior or vica versa when change the parameter or the amount of coupling. Moreover, in some regions system has multiple attractors, which means that the system can behaves chaotic or periodic with a fixed parameter and coupling, depending on the initial conditions.
Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #6 on: May 23, 2016, 01:30:36 PM »

Measure and simulation of coupled nonlinear oscillators (article: http://rsta.royalsocietypublishing.org/content/368/1911/343); larger version: right click - view image:



"An interesting property of chaotic systems is that two systems, when properly coupled together, can synchronize with one another and evolve along the same chaotic orbit [...]. Many proposed applications of chaos, including secure communication systems, sensor networks and data assimilation and prediction, rely on this phenomenon of synchronization between chaotic oscillators"
Logged
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
My entries: 3 L-systems Static Image eNZedBlue 4 4371 Last post December 01, 2006, 08:03:05 AM
by lycium
L-systems on steroids: No Man's Sky Fractal News across the World kram1032 8 1446 Last post July 15, 2015, 12:01:19 PM
by Chillheimer
Mandelbrot-based Bifurcations Mandelbrot & Julia Set « 1 2 » Philippe 28 13839 Last post May 28, 2016, 12:59:24 AM
by Chillheimer
Coupled Mandelbrot Sets (CMS) Mandelbrot & Julia Set « 1 2 3 » bkercso 33 16548 Last post August 27, 2016, 08:31:57 PM
by claude
Coupled cellular automata (nice images) Fractals Applied or in Nature DarkBeam 13 9461 Last post March 28, 2017, 10:41:01 PM
by Softology

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.185 seconds with 24 queries. (Pretty URLs adds 0.008s, 2q)