1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/* ode-initval/cscal.c
*
* Copyright (C) 2002, 2007 Brian Gough
*
* 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 3 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_odeiv.h>
typedef struct
{
double eps_abs;
double eps_rel;
double a_y;
double a_dydt;
double * scale_abs;
}
sc_control_state_t;
static void *
sc_control_alloc (void)
{
sc_control_state_t * s =
(sc_control_state_t *) malloc (sizeof(sc_control_state_t));
if (s == 0)
{
GSL_ERROR_NULL ("failed to allocate space for sc_control_state",
GSL_ENOMEM);
}
return s;
}
static int
sc_control_init (void * vstate,
double eps_abs, double eps_rel, double a_y, double a_dydt)
{
sc_control_state_t * s = (sc_control_state_t *) vstate;
if (eps_abs < 0)
{
GSL_ERROR ("eps_abs is negative", GSL_EINVAL);
}
else if (eps_rel < 0)
{
GSL_ERROR ("eps_rel is negative", GSL_EINVAL);
}
else if (a_y < 0)
{
GSL_ERROR ("a_y is negative", GSL_EINVAL);
}
else if (a_dydt < 0)
{
GSL_ERROR ("a_dydt is negative", GSL_EINVAL);
}
s->eps_rel = eps_rel;
s->eps_abs = eps_abs;
s->a_y = a_y;
s->a_dydt = a_dydt;
return GSL_SUCCESS;
}
static int
sc_control_hadjust(void * vstate, size_t dim, unsigned int ord, const double y[], const double yerr[], const double yp[], double * h)
{
sc_control_state_t *state = (sc_control_state_t *) vstate;
const double eps_abs = state->eps_abs;
const double eps_rel = state->eps_rel;
const double a_y = state->a_y;
const double a_dydt = state->a_dydt;
const double * scale_abs = state->scale_abs;
const double S = 0.9;
const double h_old = *h;
double rmax = DBL_MIN;
size_t i;
for(i=0; i<dim; i++) {
const double D0 =
eps_rel * (a_y * fabs(y[i]) + a_dydt * fabs(h_old * yp[i]))
+ eps_abs * scale_abs[i];
const double r = fabs(yerr[i]) / fabs(D0);
rmax = GSL_MAX_DBL(r, rmax);
}
if(rmax > 1.1) {
/* decrease step, no more than factor of 5, but a fraction S more
than scaling suggests (for better accuracy) */
double r = S / pow(rmax, 1.0/ord);
if (r < 0.2)
r = 0.2;
*h = r * h_old;
return GSL_ODEIV_HADJ_DEC;
}
else if(rmax < 0.5) {
/* increase step, no more than factor of 5 */
double r = S / pow(rmax, 1.0/(ord+1.0));
if (r > 5.0)
r = 5.0;
if (r < 1.0) /* don't allow any decrease caused by S<1 */
r = 1.0;
*h = r * h_old;
return GSL_ODEIV_HADJ_INC;
}
else {
/* no change */
return GSL_ODEIV_HADJ_NIL;
}
}
static void
sc_control_free (void * vstate)
{
sc_control_state_t *state = (sc_control_state_t *) vstate;
free (state->scale_abs);
free (state);
}
static const gsl_odeiv_control_type sc_control_type =
{"scaled", /* name */
&sc_control_alloc,
&sc_control_init,
&sc_control_hadjust,
&sc_control_free};
const gsl_odeiv_control_type *gsl_odeiv_control_scaled = &sc_control_type;
gsl_odeiv_control *
gsl_odeiv_control_scaled_new(double eps_abs, double eps_rel,
double a_y, double a_dydt,
const double scale_abs[],
size_t dim)
{
gsl_odeiv_control * c =
gsl_odeiv_control_alloc (gsl_odeiv_control_scaled);
int status = gsl_odeiv_control_init (c, eps_abs, eps_rel, a_y, a_dydt);
if (status != GSL_SUCCESS)
{
gsl_odeiv_control_free (c);
GSL_ERROR_NULL ("error trying to initialize control", status);
}
{
sc_control_state_t * s = (sc_control_state_t *) c->state;
s->scale_abs = (double *)malloc(dim * sizeof(double));
if (s->scale_abs == 0)
{
free (s);
GSL_ERROR_NULL ("failed to allocate space for scale_abs",
GSL_ENOMEM);
}
memcpy(s->scale_abs, scale_abs, dim * sizeof(double));
}
return c;
}
|