Logo by Fiery - 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 the official fractalforums.com Youtube Channel
 
*
Welcome, Guest. Please login or register. April 17, 2024, 01:48:07 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: Lorenz equation solutions with complex variable - pictures  (Read 6980 times)
0 Members and 2 Guests are viewing this topic.
BradC
Safarist
******
Posts: 85



« on: March 11, 2012, 05:31:03 AM »

I was curious about the behavior of solutions x(t), y(t), z(t) of the Lorenz attractor equations when the independent variable t is allowed to be complex. (When t is real, the behavior is chaotic.) There are a few references to this problem online but I couldn't find any good pictures, so here's my attempt at plotting some. The solutions are kinda interesting, with lots of complicated branching in the complex plane.

The parameters I used are sigma = 3, rho = 26.5, beta = 1, with initial conditions x(0) = 0, y(0) = 1, z(0) = 0. So the Lorenz equations become

    x'(s) = 3 (y(s) - x(s)),
    y'(s) = x(s) (26.5 - z(s)) - y(s),
    z'(s) = x(s) y(s) - z(s),
    x(0) = 0,
    y(0) = 1,
    z(0) = 0,

where s is complex.

Approach
I used Mathematica, which can numerically solve differential equations for real, but not complex, values of the independent variable. So we need to rewrite the equations in terms of a real variable. In order to get flexibility with regards to any branch cuts that might appear, we want an approach that lets us specify an arbitrary complex contour along which to solve the equations. Here's what I did; please let me know if the following approach seems incorrect for some reason:

In order to follow the solutions x(s), y(s), z(s) along a contour line from si to sf in the complex plane, introduce an auxiliary real variable t that goes linearly from 0 to 1 as s goes linearly from si to sf. That is,

    s = (1 - t) si + t sf.

And introduce auxiliary functions X(t), Y(t), Z(t) of this real variable t such that

    X(t) = x(s) = x((1 - t) si + t sf),
    Y(t) = y(s) = y((1 - t) si + t sf),
    Z(t) = z(s) = z((1 - t) si + t sf).

Differentiating with respect to t, we get

    X'(t) = (sf - si) x'(s),
    Y'(t) = (sf - si) y'(s),
    Z'(t) = (sf - si) z'(s),

so that

    x'(s) = X'(t) / (sf - si),
    y'(s) = Y'(t) / (sf - si),
    z'(s) = Z'(t) / (sf - si).

Letting t = 0 to get initial conditions, the Lorenz equations become

    X'(t) = 3 (sf - si) (Y(t) - X(t)),
    Y'(t) = (sf - si) (X(t) (26.5 - Z(t)) - Y(t)),
    Z'(t) = (sf - si) (X(t) Y(t) - Z(t)),
    X(0) = x(si),
    Y(0) = y(si),
    Z(0) = z(si),

and at t = 1 we get the answer

    x(sf) = X(1),
    y(sf) = Y(1),
    z(sf) = Z(1).

We can numerically solve these equations along a polygonal path between values s0 = 0, s1, ..., sn - 1, sn = s to obtain the values x(s), y(s), and z(s) based on a contour through the sk. Note that each segment of this path will have its own system of equations defining its own Xk, Yk, and Zk. The final values (at t = 1) for each segment will provide the initial conditions (at t = 0) for the following segment.

The pictures
For plots in the complex s plane, there turned out to be lots of branch cuts, which made the pictures look messy. The best thing I came up with was to choose all the branch cuts to be vertical, going away from the real line (corresponding to a contour from 0 to Re(s) to s for a given point s).

---- x(s) ----
Here's a plot of x(s) for real s. The wiggles are either below or above the axis depending on which "wing" of the Lorenz attractor the solution is currently on:


Here's a contour plot over the complex s plane of log(|x(s)|). Zeros of x(s) appear dark blue, while infinities appear light blue. The zeros all appear to be simple, and the infinities all appear to be branch points of some kind. The most visible branch cuts, coming from the infinities that are closest to the real line, occur at approximately the real coordinates of the peaks in the previous plot:

There's an obvious quasi-repeating pattern of some kind as you move away from the real axis. The y and z functions, plotted below, have this same characteristic.

Here's a contour plot of Re(x(s)). Negative values are dark blue; positive values are light blue. The infinities all seem to have one dark lobe and one light lobe, so they look a bit like simple poles, except that they're also branch points.


And here's Im(x(s)):


---- y(s) ----
Here's a plot of y(s) for real s:


Here's log(|y(s)|). It looks roughly similar to the corresponding plot for x. Again all the zeros look like simple zeros, and all the infinities appear to be some kind of branch points:


Here's Re(y(s)). This time the infinities all seem to have two dark lobes and two light lobes, so they look kinda like double poles, except that they're branch points:


Here's Im(y(s)):


---- z(s) ----
Here's z(s) for real s:


Here's log(|z(s)|). Again all the zeros look simple and all the infinities look like branch points (except that the zero at the origin is double because my particular choice of initial conditions leads to z'(0) = 0):


Here's Re(z(s)). As with y, the infinities all seem to have two dark and two light lobes, so they look similar to double poles, except that they're branch points:


Finally, here's Im(z(s)):
Logged
BradC
Safarist
******
Posts: 85



« Reply #1 on: March 11, 2012, 05:46:53 AM »

Also, plotting the path traced out in the complex plane by z(it), where t is real, makes a particularly nice pattern, plotted here for -30 < t < 30:



I'm not sure what the significance of this is, but it looks cool smiley
Logged
DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #2 on: March 11, 2012, 09:22:50 AM »

Lorenz has something to do with flowing fluids! Don't know if it helps! cheesy

The "butterfly" graphic... A good one for the "butterfly effect" rolling on floor laughing dancing banana
Logged

No sweat, guardian of wisdom!
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Lorenz Chaoscope Gallery Bent-Winged Angel 0 6477 Last post October 01, 2010, 05:48:17 PM
by Bent-Winged Angel
Lorenz Attractor 1.0 Adobe Photoshop Plugins richardrosenman 4 13240 Last post April 06, 2011, 05:08:43 PM
by tomot
Complex 2-variable quadratic experiment UltraFractal Pauldelbrot 10 6780 Last post January 25, 2013, 07:56:13 PM
by Pauldelbrot
Cube of Solutions in Keplerspace Mandelbulb3D Gallery KRAFTWERK 2 553 Last post March 15, 2013, 02:48:38 PM
by KRAFTWERK
Set of x,y,z equations similar to Lorenz? Introduction to Fractals and Related Links PDN777 7 17065 Last post April 03, 2015, 01:47:56 AM
by PDN777

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