Logo by MandelBRO - 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: Follow us on Twitter
 
*
Welcome, Guest. Please login or register. April 16, 2024, 10:07:13 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] 2   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: Mandelbrot whirlwind  (Read 4359 times)
0 Members and 1 Guest are viewing this topic.
Tglad
Fractal Molossus
**
Posts: 703


WWW
« on: January 05, 2010, 02:54:14 AM »

Given that 3 dimensional space cannot be conformal, it is interesting to look at some alternative 3d expansions of the mandelbrot that are not fractal in every direction.
The images below are based on the idea of modifying how simultaneously the +C and the Z^2 are done.
Usually you do the Z^2 then apply the +C. If we were to make the two happen less simultaneously, then we could do Z^2 then Z^2 then +C then +C. Equally, to do them more simultaneously we could do Z^1.414 + C/2 then repeat. Or more generally, for some j: Z^(2^j) + c*j
So the 3d shape below is a map of the mandelbrot for all j.
The floor is a volume created when j<0. The 2d mandelbrot is where j=1 which is where the largest whisp sweeps out.
An interesting question is what the 2d shape is as j->0.


* whirlwindA.jpg (66.34 KB, 634x781 - viewed 220 times.)

* whirlwind2.jpg (93.61 KB, 699x692 - viewed 322 times.)

* whirlwind3.jpg (94.81 KB, 724x762 - viewed 267 times.)

* whirlwind.jpg (86.24 KB, 749x713 - viewed 251 times.)
Logged
kram1032
Fractal Senior
******
Posts: 1863


« Reply #1 on: January 05, 2010, 03:14:59 AM »

interesting vortex cheesy

could you add a slice-animation?  smiley

Well, both simple input and wolfram alpha tell us that at j=0 the formula reduces to z=z
but it's not said that this is still true if you consider iterations.... I'm not sure how you could put in something like the Mandelbrot set as iterations

you could also try complex values for j... for i this for instance gives:

http://www.wolframalpha.com/input/?i=simplify%28real%28complex+expand%28+i+%28a%2Bi+b%29%2B%28x%2Bi+y%29^%282^i%29%29%29%29 + i * http://www.wolframalpha.com/input/?i=simplify%28imag%28complex+expand%28+i+%28a%2Bi+b%29%2B%28x%2Bi+y%29^%282^i%29%29%29%29
smiley
Logged
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #2 on: January 05, 2010, 04:45:53 AM »

I don't think my version of UF supports animations cry
Code:
     
              r = sqrt(|zri|)
              float zzz = zj
              float power = @mpwr ^ zzz
              float r1 = r^power
              float th = power*atan2(zri)
              zri = r1*(cos(th) + flip(sin(th))) + cri*zzz
Logged
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #3 on: January 06, 2010, 11:52:02 PM »

Also, what I'm wondering is what shape you get as j->0, rather than when j=0.
It looks like it might be a cardoid, but its hard to tell in the pictures, and the number of iterations becomes insufficient as j->0
Logged
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #4 on: January 08, 2010, 05:56:10 AM »

Hmm, I tried this formula writing FractInt format:

Whirlwind {;Tglad
z = 0, c=pixel:
  z=z^(2^p1) + c*p1
   abs(z) <= p2
}

and animated it with ChaosPro. (p1 goes from 10 to .0375). I uploaded it at http://sites.google.com/site/timerootalex/Whirlwind.zip (sorry, I don't know how to add videos here)... but it seemed to act just like multibrots. Also, I didn't get that chirality you had - I'm not sure what changed/went wrong. Any ideas?
« Last Edit: January 09, 2010, 03:18:31 AM by Timeroot, Reason: Changing file extension, again. » Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #5 on: January 08, 2010, 10:12:08 AM »

That is awesome Timeroot!
I think maybe the lack of symettry was a problem in my renderings rather than yours.
Did you take care to increase the iterations as p1 gets small (or perhaps that is automatic)?

The picture at the end of the video, that is it. That must be the resulting shape.
Sure it isn't a fractal, but I find it very interesting... it is the equivalent of a mandelbrot if you do the ^2 and the +c at the same time... or to put it another way, it is the attraction shape for a continuous version of the mandelbrot, where points follow curved paths rather than hopping from point to point.

I wonder if it is a shape that has been classified before in any other work, it would be interesting to see other fields that come across it.
Logged
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #6 on: January 09, 2010, 04:29:57 AM »

Yeah, I made sure to "up" the iterations. Also, the bailout value seems like it can be kept at 4 throughout the process; that sounds liked something worth proving: For all values of "j", the correct fractal will still be seen if the bailout value is not less than 4. Sadly, though, it really seems like it's the multibrot set; the only difference is that it doesn't "shrink" as the multibrot does as j->1, and the multibrot requires rapidly increasing bailout values and extremely high iterations. I would really like to know how you generated your 3D image; I feel quite confident I'm wrong  tongue stuck out heheheh...

Anyway, the idea of it acting more like a continuous system rather than a map brought me to an idea: could this be transformed in a system of differential equations? Of course, if it is purely continuous, it would be solid. But with a timestep of reasonably large value, you could get something interesting. And it was awesome. This was the formula:

WhirlwindDynamic {;Dynamic system version of Whirlwind.
;p1 is timestep, corresponding to the exponent "j" in Whirlwind.
z=0, c=pixel:
  z=z+p1*(z*z - z + c)
   abs(z) <= p2
}

For this fractal, the bailout does need to be changed; for small j, it needs to be increased, for large j, it needs to be decreased. Also, as j changes, the size changes a lot. At j=2.5 (j=1 gives the regular mandelbrot), You have to zoom in by maybe a factor of 60 to get anything really visible; vice versa for j=0.5. Also, the minibrots had an interesting effect: rather than still looking like the whole, they begin to look like j in the opposite direction; for instance, at j=1.1, the main minibrot looks like the fractal at approximately 0.1. However, this isn't some simple mapping for these two values - the minibrot at j=2 doesn't correspond to any other values of j. Here's a picture of the minibrot at j=2:
Oh, and one other observation: only at j=1 is it connected. That is, at every other value of j, there are "islands" of the set.

Finally, I tried some of the "alternating" formulas you suggested. I used this formula:

WhirlwindA2 {;Period-4 alternating between addition and exponentiation, like this:
;Add c, square & add c, square, square & add c, add c, etc. Doesn't use if-then logic.
z=0, c=pixel:
  z1=z+c
  z2=z*z+c
  z=z2*z2*z2*z2+c
    abs(z)<=p2
}

It also gave quite interesting results. The main fractal is quite ugly and glob-ish, but some features are very nice. It has parts that look quite similar to parts of the mandelbrot set, and in a generally agreeing relative position to one another. I was surprised to notice a true minibrot towards the left tip (surprise?), not similar to whole, but rather similar to the regular Mandelbrot. This set isn't locally connected, I should mention. Some parts looked like spirals from a Julia Set, logarithmic spiral dust. At other times, I found minimultibrots - Multibrots in just a very slightly skewed shape - but skewing is common in minibrots. Lastly, I found a minibrot that looked like the regular Mandelbrot, but had it's main bulb cut off the cupoid. I'll in include an image of it, scroll down...

Here's the whole "Alternating" fractal:

Here's a minibrot in it - not the largest, but the satellites make it quite beautiful, I think:

Here's a "bulbless" minibrot:


P.S. - I changed the link in my previous post; for some reason I couldn't convert the file correctly, so I took the original (a fat 71 MB .avi file) and put it in a .zip - try watching now.
Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #7 on: January 10, 2010, 12:56:27 AM »

Ah, I see the problem, it is something I neglected. In performing the +jc I was doing this from step 1 (rather than step 0), which means that each Z starts at c (instead of jc). That is how the whirlwind was generated, and that is why what I was seeing wasn't the multibrot. So you images are correct, and although the j->0 image is still interesting, it is perhaps less so because any natural phemomenon that acted like this continuous mandelbrot would have an attraction set that was infinitely small, so the shape isn't likely to occur.
The +jc variation applied after step 0 is actually quite interesting to use as it can grow a mandelbrot (or mandelbulb) from a smooth disk/ball.

I like the images below, nice variations.
Logged
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #8 on: January 12, 2010, 03:23:22 AM »

Hmm, I tried this:

Whirlwind {
z=c=pixel, z=p1*c + z:
 z=z^(2^p1) + p1*c
  |z| <= p2
}

And although definitely being different from before, it still doesn't seem to be quite the same as your whirlwind. It looks a lot like the multibrot still, and it seems to have the same limiting "footprint". I have one question: Is that whirlwind actually a spiral, or does it have bilateral symmetry? Also, your wording confused me a bit in your last post, so I'm not quite sure what you did. Could you elaborate?
Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #9 on: January 12, 2010, 09:02:55 AM »

Hi Timeroot, I'm not up to speed with the chaospro format, not sure you need the z=p1*c+z, but the whilewind should be produced from this formulation:

initialise starting zs
Z(0) = C    (rather than starting with all Zs at 0)

Then
Z(n+1) = Z(n)^(2^j) + jC.

Despite its look it isn't actually a spiral (as you will see in the middle picture, which is front facing).
I erroneously thought the mandelbrot would tend toward a shape as j reduces (it becomes more continuous). It does tend toward a shape but that shapes size tends towards 0, which makes it less likely to be seen in nature.
But the general concept of scaling C by some value after the initialisation (Z(0)=C) is quite interesting. I'd like to see a movie of a mandelbrot slowly growing from a sphere (ie at Z(n)^8 + 0C).
Logged
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #10 on: January 13, 2010, 02:46:58 AM »

Okay, I see - so after one iteration, it's at c, instead of j*c. Makes sense. As far as I can tell, the "footprint" as you call it doesn't have zero size. The formula (when you start with z=0) is basically a multibrot with a somewhat scaled value of "c" - the j coefficient is really just has a dynamic zooming effect; zooming out when it's large, zooming in when it's small. Because of it, the footprint doesn't tend to and infinitely small size, and seems to be about .6 in area. I'm not sure, but it looks like it might just be a simple cardioid. It definitely does seem to not go to a limit of zero size. What do you mean, "growing" from a sphere? I'm assuming you mean some alteration of the mandelbulb... do you mean applying the same idea as the continuous function, but to triplex numbers? I'm not sure that they even have a function for any real exponent yet, so you may have to wait.
Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #11 on: January 13, 2010, 08:08:32 AM »

Oh, and to back my case, here are two pictures. The first is with j=0.3, iterations=700, bailout=5000.

Then, here it is with j=0.0015, iterations=10000, bailout=90000.

Clearly, the first is converging to the second. With that much difference in j, one would expect to see considerable difference if the limit was zero size...


Wait, the image don't seem to be working. How do you display them if you've only attached them? EDIT: Figured it out. :-D


* Whirlwind0,3.png (25.67 KB, 640x480 - viewed 554 times.)

* Whirlwind0,0015.png (95.91 KB, 640x480 - viewed 278 times.)
« Last Edit: January 14, 2010, 02:09:04 AM by Timeroot » Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #12 on: January 14, 2010, 03:17:54 AM »

Jeez, this is the second time I've replied to myself, but I've done a bit more interesting stoof. Firstly, I created an overlay of the "Foot" with the regular mandelbrot, moving and scaling the mandelbrot so the two cardioids overlap. I've included the resulting image (pretty good agreement between the two cardioids, I think...)

Second, I tried a different version of your whirlwind formula; remember that, if z starts with 0, then the formula z->z^2 + 2*z*c + c^2 also produce the mandelbrot set; it's equivalent to adding c, and then squaring. So I tried a whirlwind-style modification of this: z->z^(2^j) + 2*z*j*c + a. "a" could be several things-things I tried were a=j*c, a=j*(c^2), a=(j*c)^2, a=j*(c^(2^j)), a=(j*c)^(2^j), and a=(j^2)*(c^(2^j)).

They all produce different results, and in general they are interesting. Some exhibit extreme sensitivity towards j; for a=j*(c^(2^j)), j=1 produces the mandelbrot, and 1.01 produces something completely different. Many go to a circle of zero size as j->infinity; some produce interesting results for negative j, some produce a black screen. Many of them "blow up" as j becomes very small. The two bulbous parts toward the right of the main cardioid often to interesting things, becoming almost circular or shooting out and coming back in as j changes. There are too many different phenomena to talk about/photograph... I recommend you try them all. ;-)

Oh, and strangely, a=(j*c)^2 and a=(j^2)*(c^(2^j)) seem to work the same... don't know why...


* Footprint mandel.png (427.51 KB, 640x480 - viewed 304 times.)
« Last Edit: January 14, 2010, 03:20:22 AM by Timeroot » Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
Tglad
Fractal Molossus
**
Posts: 703


WWW
« Reply #13 on: January 14, 2010, 05:54:11 AM »

Sorry Timeroot I've been busy following some paths that have lead nowhere really.
Anyway, its cool to see it tends to a cardoid (or something close to it).
An interesting thing about this formula (when j->0) is that if you rotate Z by any angle each iteration, you end up with the same shape, at the same rotation... I think.

"What do you mean, "growing" from a sphere?"
I mean, if you take the usual mandelbulb Z^8 + C, and you initialise step 0 to Z=C, then if you animate the mandelbulb as Z^8 + kC as j goes from 0.1 up to 1, then you should get a smooth sphere-like mandelbulb growing into the usual one. Growing is the wrong word as the radius actually decreases, but with the right camera zoom it should look like the buds emerging.
Logged
kram1032
Fractal Senior
******
Posts: 1863


« Reply #14 on: January 14, 2010, 05:59:06 PM »

Very nice stuff cheesy

Actually, just guessing from Timeroot's vid, you could even use the z²+c formula and just by changing the parameter j to >1, you'd go through all the different n-grade Mandelbulbs, as far as I've seen... smiley
Logged
Pages: [1] 2   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
3D Mandelbrot Movies Showcase (Rate My Movie) David Makin 0 6317 Last post December 09, 2006, 11:38:14 PM
by David Makin
Mandelbrot 3d Mutatorkammer Gallery cKleinhuis 2 7198 Last post March 19, 2008, 05:45:40 PM
by GFWorld
3d mandelbrot Selfmade lycium 0 7843 Last post April 27, 2008, 09:16:43 PM
by lycium
A Whirlwind Tour of the Mandelbrot Set Fractal Movies Pauldelbrot 0 1564 Last post April 30, 2010, 11:26:18 AM
by Pauldelbrot
Red Whirlwind Universe Wildstyle Fractured Fractals 0 646 Last post May 24, 2012, 07:51:39 PM
by Fractured Fractals

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