Logo by Pauldelbrot - 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: Visit us on facebook
 
*
Welcome, Guest. Please login or register. April 26, 2024, 09:37:23 PM


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: Multiple attractor bifurcation fractals  (Read 832 times)
Description: About how to plot these correctly
0 Members and 1 Guest are viewing this topic.
bkercso
Fractal Lover
**
Posts: 220



« on: May 20, 2016, 12:35:39 AM »

Hi Folks,

After I realised that many chaotic systems has more than one chaotic attractor, I supplemented my little program Bifurcation Fractal Plotter with a trick in order to generate these fractals in full. The software also got some new chaotic equations.

http://www.fractalforums.com/windows-fractal-software/bifurcation-fractal-plotter-biffrapl/msg85310/#msg85310

The trick is simple: if we start the iteration with several initial value sets, the generator will explore all the trajectories! I wrote value sets not values, because chaotic systems with more than one variable has multiple attractors typically.
We can choose how many times to generate random initial values from the plotted range of the variables; 20..500 is recommended. If you use higher values, count densities will distribute more evenly between the attractors, but less iterations will be rejected as first few iterations: it could resulted background noise on some regions in the picture if the average iterations/pixel number is low.

Code:
Number of rejected iterations = Iterations@OneAttractor/2, but max. Maxiter*0.01

Maxiter = ImageWidth*AvgIterationsPerPixel
Iterations@OneAttractor = Maxiter/ChangeAttractor

It means that max. 1/3 of the total calculation time will be spent for rejected iterations (noise filtering), and it can be not enough with low Maxiter values. So eg. when scopeing for desired zoom area, don't afraid: background noise will disappear when calculate the high resolution image!

And an example why this change attractor matters:
IMG #1:
This one is generated with only one initial value set:


IMG #2:
... and with more than one initial value sets (this is a zoom of two coupled logistic maps, fractal -10 in my program):
« Last Edit: June 18, 2016, 03:34:49 AM by bkercso » Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #1 on: May 20, 2016, 01:10:09 AM »

IMG #3:
The Henon map (fractal -11) (with hyperbolic coloring): for equations see Wikipedia...



IMG #4:
fractal -6 (with logarithmic coloring):
Code:
x_temp:=x;
x:=parameter*x*(1-x*previous);
if x_previous<0.5 then x:=1-x;
x_previous:=x_temp;

parameter=1.3..1.645 (on horizontal axis)
x=-1.2..1.2 (on vertical axis)

Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #2 on: May 20, 2016, 01:15:32 AM »

IMG #5:
fractal -7 (with logarithmic coloring):
Code:
x_temp:=x;
x:=parameter*x*(1-x*previous);
if x_previous<x then x:=1-x;
x_previous:=x_temp;

parameter=1.3..1.65 (on horizontal axis)
x=-1.2..1.5 (on vertical axis)




IMG #6:
fractal -8 (with logarithmic coloring):
Code:
x_temp:=x;
x:=parameter*x*(1-x*previous);
if x_previous<x then x:=(x+x_previous)/2;
x_previous:=x_temp;

parameter=2.7..3.7 (on horizontal axis)
x=0..1 (on vertical axis)




Img #7:
A zoom of Img #6

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



« Reply #3 on: May 20, 2016, 01:22:10 AM »

IMG #8:
fractal -9 (with hyperbolic coloring):
Code:
x_temp:=x;
x:=parameter*x*(1-x*previous);
if x_previous<x then x:=(x+x_previous)/2
else                       x:=1-(x+x_previous)/2;
x_previous:=x_temp;

parameter=2..4.875 (on horizontal axis)
x=0.1..1.6 (on vertical axis)

Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #4 on: May 20, 2016, 01:29:40 AM »

Img #9:
Zoom01 of Img #8 (fractal -9)

Set:


Zoom:



Img #10:
Zoom02 of Img #8 (fractal -9)

Set:


Zoom:



Img #11:
Zoom03 of Img #8 (fractal -9)

Set:


Zoom:
Logged
Chillheimer
Global Moderator
Fractal Schemer
******
Posts: 972


Just another fractal being floating by..


chilli.chillheimer chillheimer
WWW
« Reply #5 on: May 20, 2016, 04:36:24 PM »

I love your work!
Good to see you're still active..
(sorry I still haven't found the time to dive into your program and the topic.. so little time, so many fascinating things in the world.. wink
Logged

--- Fractals - add some Chaos to your life and put the world in order. ---
bkercso
Fractal Lover
**
Posts: 220



« Reply #6 on: May 20, 2016, 07:33:50 PM »

Cheers! wink
Somebody ask me about fractal generation, therefor I had new ideas... I had result for 2 new topic.

The software is much more better now than earlier! roll eyes
Logged
bkercso
Fractal Lover
**
Posts: 220



« Reply #7 on: May 23, 2016, 04:39:24 PM »

I added some explanation to the 1st post, before the pictures, about how the program maps multiple attractors.
« Last Edit: May 24, 2016, 12:09:09 AM by bkercso » Logged
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Bifurcation Explorer Introduction to Fractals and Related Links cKleinhuis 0 2557 Last post December 28, 2007, 12:46:06 AM
by cKleinhuis
hi all & bifurcation issue Meet & Greet 149047 0 1421 Last post October 15, 2010, 10:37:36 PM
by 149047
Bifurcation fractals discovery (new) Theories & Research « 1 2 ... 7 8 » bkercso 108 14406 Last post May 20, 2016, 01:35:34 AM
by bkercso
Bifurcation drawing Images Showcase (Rate My Fractal) alij 0 2020 Last post March 12, 2014, 12:34:59 PM
by alij
Parameter perturbation and exotic "bifurcation" fractals (new) Theories & Research bkercso 7 668 Last post May 27, 2016, 07:27:27 PM
by bkercso

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.218 seconds with 24 queries. (Pretty URLs adds 0.008s, 2q)