Superformula

From Wikipedia, the free encyclopedia

Jump to: navigation, search
Some superformula samples: a=b=1; m, n1, n2 and n3 are shown in picture.

The superformula is a generalization of the superellipse and was first proposed by Johan Gielis.

Gielis suggested that the formula can be used to describe many complex shapes and curves that are found in nature. Others point out that the same can be said about many formulas with a sufficient number of parameters.

In polar coordinates, with r the radius and φ the angle, the superformula is:

r\left(\phi\right) =
\left[
        \left|
                \frac{\cos\left(\frac{m\phi}{4}\right)}{a}
        \right| ^{n_{2}}
+
        \left|
                \frac{\sin\left(\frac{m\phi}{4}\right)}{b}
        \right| ^{n_{3}}
\right] ^{-\frac{1}{n_{1}}}

The formula appeared in a work by Gielis. It was obtained generalizing the superellipse, named and popularized by Piet Hein, a Danish mathematician.


Contents

[edit] Plots

Other superformulas samples: a=b=1; m, n1, n2 and n3 are shown in picture.

[edit] GNU_Octave program

A GNU_Octave program for generating these figures:

 function sf2d(n,a)
   u=[0:.001:2*pi];
   raux=abs(1/a(1).*abs(cos(n(1)*u/4))).^n(3)+abs(1/a(2).*abs(sin(n(1)*u/4))).^n(4);
   r=abs(raux).^(-1/n(2));
   x=r.*cos(u);
   y=r.*sin(u);
   plot(x,y);
 endfunction;

[edit] Extension to higher dimensions

It is possible to extend the formula to 3, 4, or n dimensions, by means of spherical product of superformulas. For example, the 3D parametric surface is obtained multiplying two superformulas S1 and S2. The coordinates are defined by the relations:

 x \,=\, r_1(\theta)\cos(\theta)r_2(\phi)\cos(\phi)
 y \,=\, r_1(\theta)\sin(\theta)r_2(\phi)\cos(\phi)
 z \,=\, r_2(\phi)\sin(\phi)

where φ varies between -π/2 and π/2 (latitude) and θ between and π (longitude).

[edit] Plots

[edit] GNU_Octave program

A GNU_Octave program for generating these figures:

function sf3d(n, a)
 u=[-pi:.05:pi];
 v=[-pi/2:.05:pi/2];
 nu=length(u);
 nv=length(v);
   for i=1:nu
   for j=1:nv
     raux1=abs(1/a(1)*abs(cos(n(1).*u(i)/4))).^n(3)+abs(1/a(2)*abs(sin(n(1)*u(i)/4))).^n(4);
     r1=abs(raux1).^(-1/n(2));
     raux2=abs(1/a(1)*abs(cos(n(1)*v(j)/4))).^n(3)+abs(1/a(2)*abs(sin(n(1)*v(j)/4))).^n(4);
     r2=abs(raux2).^(-1/n(2));
     x(i,j)=r1*cos(u(i))*r2*cos(v(j));
     y(i,j)=r1*sin(u(i))*r2*cos(v(j));
     z(i,j)=r2*sin(v(j));
   endfor;
 endfor;
 mesh(x,y,z);
endfunction;

[edit] References

[edit] External links

Personal tools