Questions tagged [strange-attractor]

An attractor is called strange if it has a fractal structure.

An attractor is called strange if it has a fractal structure. This is often the case when the dynamics on it are chaotic, but strange nonchaotic attractors also exist. If a strange attractor is chaotic, exhibiting sensitive dependence on initial conditions, then any two arbitrarily close alternative initial points on the attractor, after any of various numbers of iterations, will lead to points that are arbitrarily far apart (subject to the confines of the attractor), and after any of various other numbers of iterations will lead to points that are arbitrarily close together. Thus a dynamic system with a chaotic attractor is locally unstable yet globally stable: once some sequences have entered the attractor, nearby points diverge from one another but never depart from the attractor.

The term strange attractor was coined by David Ruelle and Floris Takens to describe the attractor resulting from a series of bifurcations of a system describing fluid flow. Strange attractors are often differentiable in a few directions, but some are like a Cantor dust, and therefore not differentiable. Strange attractors may also be found in presence of noise, where they may be shown to support invariant random probability measures of Sinai–Ruelle–Bowen type.

Examples of strange attractors include the double-scroll attractor, Hénon attractor, Rössler attractor, Tamari attractor, and the Lorenz attractor.


Source: Wikipedia

9 questions
37
votes
3 answers

Efficiently plotting hundreds of millions of points in R

Is plot() the most efficient way to plot 100 million or so data points in R? I'd like to plot a bunch of these Clifford Attractors. Here's an example of one I've downscaled from a very large image: Here is a link to some code that I've used to…
dcl
  • 929
  • 1
  • 10
  • 22
3
votes
0 answers

How can I check if an attractor is strange?

Lately I learned a bit about strange attractors, and I created the following programm in JS: var ctx, clock, width, height, pixSize; var x,y,a,b,c,d; window.onload = function(){ start(); }; function start(random=true){ …
Anton Ballmaier
  • 876
  • 9
  • 25
2
votes
1 answer

How best to create a filled volume of Lorenz Attractor in python for volume rendering

I am trying to create a 3D array to then perform volume rendering on (in other software or volume rendering packages) of strange attractor like Lorenz Attractor. It is easy enough to plot the attractor from data points and provide a value to assign…
Robin White
  • 159
  • 2
  • 11
2
votes
1 answer

Gnuplot - Plot graph with continuously varying line color - plot with color fade / transition

I am using GNU plot (gnuplot) to plot some output data from integration of a strange attractor (see Wikipedia) - and as this is a strange attractor the line "rolls around itself in 3D space". This makes it difficult to see what happens when plotting…
FreelanceConsultant
  • 13,167
  • 27
  • 115
  • 225
1
vote
2 answers

Compilation on Terminal gives off pointer warning and strange symbols

I am trying to compile and run a simple C program from my Terminal. This is my code: #include //integers that are 3n, 3n + 1, and 3n + 2 int main(){ int n,i,a,b,c; scanf("%d", &n); for (;n>0;n--) { scanf("%d", &i); …
0
votes
1 answer

Why does scipy.odeint with differing step size in the t array gives qualitatively different results?

I am investigating strange attractors and am currently working on the Duffing attractor (a 2D strange attractor). The solution trajectory makes loops in the positive and negative x direction and I am particularly interested in the sequence in which…
0
votes
0 answers

How to animate particle along Peter DeJong Attractor trajectory?

I found this little snippet of a Peter DeJong attractor and was able to get the same result for particle locations. However, it seems the attractor generates random points whereas I would like to have my particle travel along the trajectory of the…
Rich95
  • 199
  • 1
  • 3
  • 18
0
votes
0 answers

Aizawa attractor tending towards zero/no movement

Hello I am trying to visualize an Aizawa attractor and it's seems to work at first but then just stabilizes at zero/stops moving. I have looked at several implementations online and mine seems to be the same but I don't know why it stops…
puck
  • 1
0
votes
1 answer

Mysql reset delimiter to normal ';'

I have typed: DELIMITER DELIMITER Just trying to figure it out how to set my delimiter to normal ';' again;
Maladec VampaYa
  • 351
  • 3
  • 21