i'm trying to compute the Lorenz system using Runge Kutta method, but i can't find where my code have an error. When I run it, the system goes to a static point and i should obtain a butterfly (the Lorenz attractor). I think it's something on the 'for'loops in the Runge Kutta method section. Here's my code

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
double f(int,double,double []);
double s,r,b;
FILE *output;
int main()
{
    output=fopen("lorenzdata.dat","w");
    int j,N=3;
    double x[2],dt,y[2],K1[2],K2[2],K3[2],K4[2],ti,t,i;
    printf("\n Introduce parameters s, r and b sepparated by a space:");
    scanf("%lf %lf %lf",&s,&r,&b);
    printf("\n Introduce initial conditions t0,x0,y0 and z0:");
    scanf("%lf %lf %lf %lf",&ti,&x[0],&x[1],&x[2]);
    printf("\n Introduce time step:");
    scanf("%lf",&dt);
    printf("\n Specify time to compute in the equations:");
    scanf("%lf",&t);
/* Loop para Runge Kutta 4 */
    do
    {
      /*  printf("%9.4f %9.4f %9.4f %9.4f \n",ti,x[0],x[1],x[2]); */
        i++;
        for(j=0;j<N;j++)
        {
            K1[j] = f(j,ti,x);
        }
        for(j=0;j<N;j++)
        {
            y[j] = x[j]+(K1[j]/2)*dt;
        }
        for(j=0;j<N;j++)
        {
            K2[j] = f(j,ti+dt/2,y);
        }
        for(j=0;j<N;j++)
        {
            y[j] = x[j]+(K2[j]/2)*dt;
        }
        for(j=0;j<N;j++)
        {
            K3[j] = f(j,ti+dt/2,y);
        }
        for(j=0;j<N;j++)
        {
            y[j] = x[j]+(K3[j])*dt;
        }
        for(j=0;j<N;j++)
        {
            K4[j] = f(j,ti+dt,y);
        }
        for(j=0;j<N;j++)
        {
            x[j] += dt*((K1[j]/6)+(K2[j]/3)+(K3[j]/3)+(K4[j]/6));
        }
        ti +=dt;
        fprintf(output,"%9.4f %9.4f %9.4f \n",x[0],x[1],x[2]);
    }while(i*dt <= t);
    fclose(output);
    return 0;
}
/* Definimos la funcion */
double f(int m,double h,double x[])
{
    if(m==0)
    {
        return s*(x[1]-x[0]);
    }
    else if(m==1)
    {
        return x[0]*(r-x[2])-x[1];
    }
    else if(m==2)
    {
        return x[0]*x[1]-b*x[2];
    }
}

Thanks in advance

EDIT

I wrote the code again (in a more simplified way) on linux and it runs ok, it seems my editor on Windows had something (maybe the encoding) that when i compiled the code, it throwed a lot of infinites values. Don't know why and it took me a lot of time to notice that. Thanks for your help

link|improve this question

67% accept rate
What is the point of double h as input into the function f? It doesn't appear to get used. Is it necessary? – Fra Feb 20 at 0:28
mm nop, i put h there just to make a more generalizaed code, in case that the diff equations depend explicitly on t – David Winchester Feb 20 at 3:05
feedback

2 Answers

up vote 1 down vote accepted

The lines that look like

for(j=0;j<N;j++)
{
    y[j] = x[j]+(K1[j]/2)*dt;
}

are wrong.

It should look like,

for(j=0;j<N;j++)
{
    K1[j] = f(j,ti,x[j],y[j]);
    L1[y] = g(j,ti,x[j],y[j]);
}
for(j=0;j<N;j++)
{
    K2[j] = f(j,ti+dt/2,x+k1[j]/2,y+L1[j]/2);
    L2[j] = g(j,ti+dt/2,x+k1[j]/2,y+L1[j]/2);
}
for(j=0;j<N;j++)
{
    K3[j] = f(j,ti+dt/2,x+K2[j]/2,y+L2[j]/2);
    L3[j] = g(j,ti+dt/2,x+K2[j]/2,y+L2[j]/2);
}
for(j=0;j<N;j++)
{
    K4[j] = f(j,ti+dt,x+K3[j],y+L3[j]);
    L4[j] = g(j,ti+dt,x+K3[j],y+L3[j]);
}
for(j=0;j<N;j++)
{
    x[j] += dt*((K1[j]/6)+(K2[j]/3)+(K3[j]/3)+(K4[j]/6));
    y[j] += dt*((L1[j]/6)+(L2[j]/3)+(L3[j]/3)+(L4[j]/6));
}

Runge-Kutta works like this.

You have a system of equations.

dx/dt = f(t,x,y) dy/dt = g(t,x,y)

For each argument of the functions, you need a Runge-Kutta sub step (the k1, k2, etc...). So for each sub-step "k", you need the "sub-step" updated values of x and y. As an example for the 2nd sub-step x+k1/2 and y+l1/2.

link|improve this answer
Mmm... but i do that considering the j component of the function f. If you see at the end of the code, f has 3 components. And the same goes for x, i have x[j] considering that i have x,y,z on the equations (x[0], x[1], x[2] ) . If i write the code like you say, the 'for' cycles shouldn't be there i think – David Winchester Feb 18 at 14:52
It's very confusing the way you have written it but I see what you are doing now. The problem is you are multiplying by dt twice. In the line y[j] = x[j]+(K3[j])*dt; you multiply by dt so in this line x[j] += dt*((K1[j]/6)+(K2[j]/3)+(K3[j]/3)+(K4[j]/6)); you don't need to multiply by dt. – user1139069 Feb 19 at 17:17
Mm i think i need to do that because the y[j] are just the 'updated' x[] that must be evaluated inside f() – David Winchester Feb 20 at 1:53
If I were doing this I would move to dt to here K1[j] = dt*f(j,ti,x); and only multiply by dt once. This will insure your k's have the same units as you x. Second since you are calculating x, y and z positions, instead of using an array, I would use x, y and z. It would make the code a lot more readable. Your function is actually three functions. So instead of using if statements it would be more efficient and clearer to write them as separate functions taking x, y and z as input. Doing that would also make the code more readable would also eliminate all the for loops in your do loop. – user1139069 Feb 20 at 4:43
I tought on doing that. I used arrays thinking i could make a more generalized code, but it seems it doesn't work well, i don't know why because i checked everything a lot of times. But i will do what you say, it's better. Thanks for your help :) – David Winchester Feb 20 at 4:52
feedback

Well ignoring any other issue, where is the variable 'i' initialised?

link|improve this answer
This shouldn't even compile; double doesn't have a ++ operator – Seth Carnegie Feb 18 at 6:10
@SethCarnegie I've (at least) two compilers that support it. However, it is a bit odd… – Justin Feb 18 at 6:25
Oh, i haven't noticed that, but, anyway, the code still gives me the wrong output – David Winchester Feb 18 at 14:53
for(j=0;j<N;j++) { y[j] = x[j]+(K3[j]/2)*dt; } is also incorrect I believe, shouldn't it be for(j=0;j<N;j++) { y[j] = x[j]+K3[j]*dt; }? – Jxj Feb 18 at 16:34
Yep, i corrected it, thanks. But the error persists – David Winchester Feb 18 at 16:48
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.