Celikovsky chaotic system

Dependencies:   mbed

main.cpp

Committer:
JLS
Date:
2011-03-28
Revision:
0:a2fd829cf01b

File content as of revision 0:a2fd829cf01b:

#include "TFT_4DGL.h"

TFT_4DGL lcd(p9,p10,p11);

int main() {

     int   xp,yp;
     
     int cnt = 0;
     
     int n = WHITE;
   
     float x,y,z;
   
     float a = 36;
     float b = 3;
     float c = 20;
     
     float dt = 0.001;
 
     float x1 = 1;
     float y1 = 1;
     float z1 = 1;

     
     x = x1;
     y = y1;
     z = z1;

    while(1)
    
    {
    
        x = x1+(a*(y1-x1))*dt;
        y = y1+(-(x1*z1)+(c*y1))*dt;
        z = z1+((x1*y1)-(b*z1))*dt;
 
        xp = (int)floor(8*x);
        yp = (int)floor(8*z);
        
        cnt ++;
        
        if (cnt >= 530) {

        lcd.pixel(-50+yp,155+xp,n);
     
     }
     
        x1 = x;
        y1 = y;
        z1 = z;

    }
 
}