This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

New ODE methods: Euler, Improved Euler, Adams-Bashford-Moulton


Hi:

We needed those methods for a college project and we implemented them with GSL, I know Euler and Improved Euler are merely didactic methods but maybe some students (like us) could avoid reinventing the wheel.

On the other hand, 4 step Adams-Bashford-Moulton method could be usable in a real application. We used Runge-Kutta to obtain the remainig three initial steps.

I attached the 3 files just in case you want to include them in the GSL distribution

Cheers

Alfonso Acosta

PS: The three methods were tested without step control, so we are not sure wether the error we provide is correct or not.
/* abm.c
 * 
 * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
 * Copyright (C) 2004 Daniel Rodríguez
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/* Adams-Bashford-Moulton */

/* Authors: Daniel Rodríguez
 */

#include <gsl/gsl_errno.h>
#include <gsl/gsl_odeiv.h>

#include "odeiv_util.h"

#define FALSE 0
#define TRUE !FALSE

typedef struct
{
  double valueT;
  double * valueY;
  double * valueF;
} node_t;

typedef struct
{
  node_t * TY;
  int inicializado;
} abm_state_t;

static void *
abm_alloc (size_t dim)
{
  abm_state_t *state = (abm_state_t *) malloc (sizeof (abm_state_t));

  if (state == NULL) {
    GSL_ERROR_NULL ("failed to allocate space for abm_state", GSL_ENOMEM);
  }
  state->inicializado = 3;

  state->TY = (node_t*) malloc (4 * sizeof (node_t));
  if (state->TY == NULL) {
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[0].valueY = (double*) malloc (dim * sizeof (double));
  if (state->TY[0].valueY == NULL) {
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[1].valueY = (double*) malloc (dim * sizeof (double));
  if (state->TY[1].valueY == NULL) {
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[2].valueY = (double*) malloc (dim * sizeof (double));
  if (state->TY[2].valueY == NULL) {
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[3].valueY = (double*) malloc (dim * sizeof (double));
  if (state->TY[3].valueY == NULL) {
    free(state->TY[2].valueY);
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }

  state->TY[0].valueF = (double*) malloc (dim * sizeof (double));
  if (state->TY[0].valueF == NULL) {
    free(state->TY[3].valueY);
    free(state->TY[2].valueY);
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[1].valueF = (double*) malloc (dim * sizeof (double));
  if (state->TY[1].valueF == NULL) {
    free(state->TY[0].valueF);
    free(state->TY[3].valueY);
    free(state->TY[2].valueY);
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[2].valueF = (double*) malloc (dim * sizeof (double));
  if (state->TY[2].valueF == NULL) {
    free(state->TY[1].valueF);
    free(state->TY[0].valueF);
    free(state->TY[3].valueY);
    free(state->TY[2].valueY);
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }
  state->TY[3].valueF = (double*) malloc (dim * sizeof (double));
  if (state->TY[3].valueF == NULL) {
    free(state->TY[2].valueF);
    free(state->TY[1].valueF);
    free(state->TY[0].valueF);
    free(state->TY[3].valueY);
    free(state->TY[2].valueY);
    free(state->TY[1].valueY);
    free(state->TY[0].valueY);
    free(state);
    GSL_ERROR_NULL("failed to allocate space for valueY", GSL_ENOMEM);
  }

  return state;
}


static int
abm_apply (void *vstate,
           size_t dim,
           double t,
           double h,
           double y[],
           double yerr[],
           const double dydt_in[],
           double dydt_out[], 
           const gsl_odeiv_system * sys)
{
  abm_state_t *state = (abm_state_t *) vstate;

  int * inicializado = &(state->inicializado);

  double temp, proxt;
  size_t i;
  int status = 0;
  int s;

  double * p = (double*) malloc(dim * sizeof(double));
  double * Ftmp = (double*) malloc(dim * sizeof(double));
  node_t *TY = state->TY;

  if (*inicializado) { /* Estamos en el primer paso, hacemos RK4 manualmente */
    TY[3-*inicializado].valueT = t;
    DBL_MEMCPY (TY[3-*inicializado].valueY, y, dim);
    s = GSL_ODEIV_FN_EVAL
      (sys, t, TY[3-*inicializado].valueY, TY[3-*inicializado].valueF);
    GSL_STATUS_UPDATE (&status, s);
    const gsl_odeiv_step_type * T = gsl_odeiv_step_rk4;
    gsl_odeiv_step * step = gsl_odeiv_step_alloc(T, dim);
    gsl_odeiv_evolve * e = gsl_odeiv_evolve_alloc(dim);
    int s2 = gsl_odeiv_evolve_apply(e, NULL, step, sys, &t, t+4*h, &h, y);
    GSL_STATUS_UPDATE (&status, s2);
    DBL_MEMCPY(TY[3-*inicializado+1].valueY, y, dim);
    TY[3-*inicializado+1].valueT = t;
    s = GSL_ODEIV_FN_EVAL
      (sys, t, TY[3-*inicializado+1].valueY, TY[3-*inicializado+1].valueF);
    GSL_STATUS_UPDATE (&status, s);
    for (i=0; i<dim; i++) {
      yerr[i] = h * TY[3-*inicializado+1].valueF[i];
      if (dydt_out != NULL)
	dydt_out[i] = TY[3-*inicializado+1].valueF[i];
    }
    (*inicializado)--;
  } else {
    for (i=0; i<dim; i++) {
      p[i] =
	TY[3].valueY[i] + (h/24)*(-9*TY[0].valueF[i]+37*TY[1].valueF[i]-
				  59*TY[2].valueF[i]+55*TY[3].valueF[i]);
    }
    proxt = TY[3].valueT + h;
    GSL_ODEIV_FN_EVAL (sys, proxt, p, Ftmp);
    GSL_STATUS_UPDATE (&status, s);
    for (i=0; i<dim; i++) {
      temp = (h/24)*(TY[1].valueF[i]-5*TY[2].valueF[i]+
		     19*TY[3].valueF[i]+9*Ftmp[i]);
      p[i] = TY[3].valueY[i] + temp;
      yerr[i] = h * temp;
      if (dydt_out != NULL)
	dydt_out[i] = temp;
    }
    DBL_MEMCPY(TY[0].valueY, TY[1].valueY, dim);
    DBL_MEMCPY(TY[1].valueY, TY[2].valueY, dim);
    DBL_MEMCPY(TY[2].valueY, TY[3].valueY, dim);
    DBL_MEMCPY(TY[3].valueY, p, dim);
    TY[0].valueT = TY[1].valueT;
    TY[1].valueT = TY[2].valueT;
    TY[2].valueT = TY[3].valueT;
    TY[3].valueT = proxt;
    DBL_MEMCPY(TY[0].valueF, TY[1].valueF, dim);
    DBL_MEMCPY(TY[1].valueF, TY[2].valueF, dim);
    DBL_MEMCPY(TY[2].valueF, TY[3].valueF, dim);
    GSL_ODEIV_FN_EVAL (sys, proxt, TY[3].valueY, Ftmp);
    GSL_STATUS_UPDATE (&status, s);
    DBL_MEMCPY(TY[3].valueF, Ftmp, dim);
    
    DBL_MEMCPY(y, TY[3].valueY, dim);
  }
  return status;
}

static int
abm_reset (void *vstate, size_t dim)
{
  abm_state_t *state = (abm_state_t *) vstate;

  DBL_ZERO_MEMSET (state->TY[0].valueY, dim);
  DBL_ZERO_MEMSET (state->TY[1].valueY, dim);
  DBL_ZERO_MEMSET (state->TY[2].valueY, dim);
  DBL_ZERO_MEMSET (state->TY[3].valueY, dim);
  DBL_ZERO_MEMSET (state->TY[0].valueF, dim);
  DBL_ZERO_MEMSET (state->TY[1].valueF, dim);
  DBL_ZERO_MEMSET (state->TY[2].valueF, dim);
  DBL_ZERO_MEMSET (state->TY[3].valueF, dim);
  state->TY[0].valueT = 0;
  state->TY[1].valueT = 0;
  state->TY[2].valueT = 0;
  state->TY[3].valueT = 0;
  state->inicializado = 3;

  return GSL_SUCCESS;
}

static unsigned int
abm_order (void *vstate)
{
  abm_state_t *state = (abm_state_t *) vstate;
  state = 0; /* prevent warnings about unused parameters */
  return 4;
}

static void
abm_free (void *vstate)
{
  abm_state_t *state = (abm_state_t *) vstate;
  free (state->TY[0].valueY);
  free (state->TY[1].valueY);
  free (state->TY[2].valueY);
  free (state->TY[3].valueY);
  free (state->TY[0].valueF);
  free (state->TY[1].valueF);
  free (state->TY[2].valueF);
  free (state->TY[3].valueF);
  free (state->TY);
  free (state);
}

static const gsl_odeiv_step_type abm_type = { "abm",    /* name */
  0,                            /* can use dydt_in */
  0,                            /* gives exact dydt_out */
  &abm_alloc,
  &abm_apply,
  &abm_reset,
  &abm_order,
  &abm_free
};

const gsl_odeiv_step_type *gsl_odeiv_step_abm = &abm_type;
/* euler.c
 * 
 * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
 * Copyright (C) 2004 Alfonso Acosta & Daniel Rodríguez
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/* Euler Method*/

/* Authors:  Alfonso Acosta & Daniel Rodríguez
 */

#include <gsl/gsl_errno.h>
#include <gsl/gsl_odeiv.h>

#include "odeiv_util.h"

typedef struct
{
  double *k;
}
euler_state_t;

static void *
euler_alloc (size_t dim)
{
  euler_state_t *state = (euler_state_t *) malloc (sizeof (euler_state_t));

  if (state == 0)
    {
      GSL_ERROR_NULL ("failed to allocate space for euler_state", GSL_ENOMEM);
    }

  state->k = (double *) malloc (dim * sizeof (double));

  if (state->k == 0)
    {
      free (state);
      GSL_ERROR_NULL ("failed to allocate space for k", GSL_ENOMEM);
    }

  return state;
}


static int
euler_apply (void *vstate,
           size_t dim,
           double t,
           double h,
           double y[],
           double yerr[],
           const double dydt_in[],
           double dydt_out[], 
           const gsl_odeiv_system * sys)
{
  euler_state_t *state = (euler_state_t *) vstate;
  
  double temp;
  size_t i;
  int status = 0;

  double *const k = state->k;


  if (dydt_in != NULL)
    {
      DBL_MEMCPY (k, dydt_in, dim);
    }
  else
    {
      int s = GSL_ODEIV_FN_EVAL (sys, t, y, k);
      GSL_STATUS_UPDATE (&status, s);
    }
  

  for (i = 0; i < dim; i++)
    {
      temp = y[i]; /* save y[i] */ 
      y[i] = h * k[i];   
      yerr[i] = h * y[i];
      y[i] += temp;
      if (dydt_out != NULL)
          dydt_out[i] = k[i];
    }

  return status;
}

static int
euler_reset (void *vstate, size_t dim)
{
  euler_state_t *state = (euler_state_t *) vstate;

  DBL_ZERO_MEMSET (state->k, dim);

  return GSL_SUCCESS;
}

static unsigned int
euler_order (void *vstate)
{
  euler_state_t *state = (euler_state_t *) vstate;
  state = 0; /* prevent warnings about unused parameters */
  return 1;
}

static void
euler_free (void *vstate)
{
  euler_state_t *state = (euler_state_t *) vstate;
  free (state->k);
  free (state);
}

static const gsl_odeiv_step_type euler_type = { "euler",    /* name */
  1,                            /* can use dydt_in */
  0,                            /* gives exact dydt_out */
  &euler_alloc,
  &euler_apply,
  &euler_reset,
  &euler_order,
  &euler_free
};

const gsl_odeiv_step_type *gsl_odeiv_step_euler = &euler_type;
/* eulerplus.c
 * 
 * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
 * Copyright (C) 2004 Alfonso Acosta & Daniel Rodríguez
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/* Improved Euler Method */

/* Authors:  Alfonso Acosta & Daniel Rodríguez
 */

#include <gsl/gsl_errno.h>
#include <gsl/gsl_odeiv.h>

#include "odeiv_util.h"

typedef struct
{
  double *k1;
  double *k2;
  double *ytmp;
}
eulerplus_state_t;

static void *
eulerplus_alloc (size_t dim)
{
  eulerplus_state_t *state =
    (eulerplus_state_t *) malloc (sizeof (eulerplus_state_t));

  if (state == 0)
    {
      GSL_ERROR_NULL ("failed to allocate space for eulerplus_state",
		      GSL_ENOMEM);
    }

  state->k1 = (double *) malloc (dim * sizeof (double));

  if (state->k1 == 0)
    {
      free (state);
      GSL_ERROR_NULL ("failed to allocate space for k1", GSL_ENOMEM);
    }

  state->k2 = (double *) malloc (dim * sizeof (double));

  if (state->k2 == 0)
    {
      free (state->k1);    
      free (state);
      GSL_ERROR_NULL ("failed to allocate space for k2", GSL_ENOMEM);
    }

  
  state->ytmp = (double *) malloc (dim * sizeof (double));

  if (state->ytmp == 0)
    {
      free (state->k2);
      free (state->k1);
      free (state);
      GSL_ERROR_NULL ("failed to allocate space for ytmp", GSL_ENOMEM);
    }

  return state;
}


static int
eulerplus_apply (void *vstate,
           size_t dim,
           double t,
           double h,
           double y[],
           double yerr[],
           const double dydt_in[],
           double dydt_out[], 
           const gsl_odeiv_system * sys)
{
  eulerplus_state_t *state = (eulerplus_state_t *) vstate;

  double temp;
  size_t i;
  int status = 0;

  double *const k1 = state->k1;
  double *const k2 = state->k2;
  double *const ytmp = state->ytmp;


  if (dydt_in != NULL)
    {
      DBL_MEMCPY (k1, dydt_in, dim);
    }
  else
    {
      int s = GSL_ODEIV_FN_EVAL (sys, t, y, k1);
      GSL_STATUS_UPDATE (&status, s);
    }
  /* aplicamos euler */
  for (i = 0; i < dim; i++)
    {
      ytmp[i] = y[i] + h * k1[i] ;
    }
  
  {
      int s = GSL_ODEIV_FN_EVAL (sys, t+h, ytmp, k2);
      GSL_STATUS_UPDATE (&status, s);	       
  }

  for (i = 0; i < dim; i++)
   {  
      temp = (k1[i]+k2[i]) / 2; /* la pendiente en x + h */ 
      if (dydt_out != NULL)
          dydt_out[i] = temp;
      yerr[i] = h * temp;
      y[i] += h*temp;
    }


  return status;
}

static int
eulerplus_reset (void *vstate, size_t dim)
{
  eulerplus_state_t *state = (eulerplus_state_t *) vstate;

  DBL_ZERO_MEMSET (state->k1, dim);
  DBL_ZERO_MEMSET (state->k2, dim);
  DBL_ZERO_MEMSET (state->ytmp, dim);

  return GSL_SUCCESS;
}

static unsigned int
eulerplus_order (void *vstate)
{
  eulerplus_state_t *state = (eulerplus_state_t *) vstate;
  state = 0; /* prevent warnings about unused parameters */
  return 2;
}

static void
eulerplus_free (void *vstate)
{
  eulerplus_state_t *state = (eulerplus_state_t *) vstate;
  free (state->k1);
  free (state->k2);
  free (state->ytmp);
  free (state);
}

static const gsl_odeiv_step_type eulerplus_type = { "eulerplus",    /* name */
  1,                            /* can use dydt_in */
  0,                            /* gives exact dydt_out */
  &eulerplus_alloc,
  &eulerplus_apply,
  &eulerplus_reset,
  &eulerplus_order,
  &eulerplus_free
};

const gsl_odeiv_step_type *gsl_odeiv_step_eulerplus = &eulerplus_type;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]