gsl_ode-initval__step.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* ode-initval/odeiv.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. /* Author: G. Jungman
  20. */
  21. #include "gsl__config.h"
  22. #include <stdlib.h>
  23. #include "gsl_errno.h"
  24. #include "gsl_odeiv.h"
  25. gsl_odeiv_step *
  26. gsl_odeiv_step_alloc(const gsl_odeiv_step_type * T, size_t dim)
  27. {
  28. gsl_odeiv_step *s = (gsl_odeiv_step *) malloc (sizeof (gsl_odeiv_step));
  29. if (s == 0)
  30. {
  31. GSL_ERROR_NULL ("failed to allocate space for ode struct", GSL_ENOMEM);
  32. };
  33. s->type = T;
  34. s->dimension = dim;
  35. s->state = s->type->alloc(dim);
  36. if (s->state == 0)
  37. {
  38. free (s); /* exception in constructor, avoid memory leak */
  39. GSL_ERROR_NULL ("failed to allocate space for ode state", GSL_ENOMEM);
  40. };
  41. return s;
  42. }
  43. const char *
  44. gsl_odeiv_step_name(const gsl_odeiv_step * s)
  45. {
  46. return s->type->name;
  47. }
  48. unsigned int
  49. gsl_odeiv_step_order(const gsl_odeiv_step * s)
  50. {
  51. return s->type->order(s->state);
  52. }
  53. int
  54. gsl_odeiv_step_apply(
  55. gsl_odeiv_step * s,
  56. double t,
  57. double h,
  58. double y[],
  59. double yerr[],
  60. const double dydt_in[],
  61. double dydt_out[],
  62. const gsl_odeiv_system * dydt)
  63. {
  64. return s->type->apply(s->state, s->dimension, t, h, y, yerr, dydt_in, dydt_out, dydt);
  65. }
  66. int
  67. gsl_odeiv_step_reset(gsl_odeiv_step * s)
  68. {
  69. return s->type->reset(s->state, s->dimension);
  70. }
  71. void
  72. gsl_odeiv_step_free(gsl_odeiv_step * s)
  73. {
  74. s->type->free(s->state);
  75. free(s);
  76. }