Mercurial > hg > octave-nkf
view src/lsode.cc @ 1684:f85887dfe06c
[project @ 1995-12-30 03:46:07 by jwe]
author | jwe |
---|---|
date | Sat, 30 Dec 1995 03:51:15 +0000 |
parents | 89c587478067 |
children | 42b4f904f1af |
line wrap: on
line source
// f-lsode.cc -*- C++ -*- /* Copyright (C) 1993, 1994, 1995 John W. Eaton This file is part of Octave. Octave 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, or (at your option) any later version. Octave 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 Octave; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <strstream.h> #include "ODE.h" #include "defun-dld.h" #include "error.h" #include "gripes.h" #include "help.h" #include "pager.h" #include "tree-const.h" #include "utils.h" #include "variables.h" // Global pointer for user defined function required by lsode. static tree_fvc *lsode_fcn; static ODE_options lsode_opts; ColumnVector lsode_user_function (const ColumnVector& x, double t) { ColumnVector retval; int nstates = x.capacity (); Octave_object args; args(1) = t; if (nstates > 1) { Matrix m (nstates, 1); for (int i = 0; i < nstates; i++) m (i, 0) = x.elem (i); tree_constant state (m); args(0) = state; } else { double d = x.elem (0); tree_constant state (d); args(0) = state; } if (lsode_fcn) { Octave_object tmp = lsode_fcn->eval (0, 1, args); if (error_state) { gripe_user_supplied_eval ("lsode"); return retval; } if (tmp.length () > 0 && tmp(0).is_defined ()) { retval = tmp(0).vector_value (); if (error_state || retval.length () == 0) gripe_user_supplied_eval ("lsode"); } else gripe_user_supplied_eval ("lsode"); } return retval; } DEFUN_DLD_BUILTIN ("lsode", Flsode, Slsode, FSlsode, 11, "lsode (F, X0, T_OUT, T_CRIT)\n\ \n\ The first argument is the name of the function to call to\n\ compute the vector of right hand sides. It must have the form\n\ \n\ xdot = f (x, t)\n\ \n\ where xdot and x are vectors and t is a scalar.\n") { Octave_object retval; int nargin = args.length (); if (nargin < 3 || nargin > 4 || nargout > 1) { print_usage ("lsode"); return retval; } lsode_fcn = is_valid_function (args(0), "lsode", 1); if (! lsode_fcn) return retval; ColumnVector state = args(1).vector_value (); if (error_state) { error ("lsode: expecting state vector as second argument"); return retval; } ColumnVector out_times = args(2).vector_value (); if (error_state) { error ("lsode: expecting output time vector as third argument"); return retval; } ColumnVector crit_times; int crit_times_set = 0; if (nargin > 3) { crit_times = args(3).vector_value (); if (error_state) { error ("lsode: expecting critical time vector as fourth argument"); return retval; } crit_times_set = 1; } double tzero = out_times.elem (0); int nsteps = out_times.capacity (); ODEFunc func (lsode_user_function); ODE ode (state, tzero, func); ode.copy (lsode_opts); int nstates = state.capacity (); Matrix output (nsteps, nstates + 1); if (crit_times_set) output = ode.integrate (out_times, crit_times); else output = ode.integrate (out_times); retval.resize (1); retval(0) = output; return retval; } typedef void (ODE_options::*d_set_opt_mf) (double); typedef double (ODE_options::*d_get_opt_mf) (void); #define MAX_TOKENS 3 struct ODE_OPTIONS { const char *keyword; const char *kw_tok[MAX_TOKENS + 1]; int min_len[MAX_TOKENS + 1]; int min_toks_to_match; d_set_opt_mf d_set_fcn; d_get_opt_mf d_get_fcn; }; static ODE_OPTIONS lsode_option_table [] = { { "absolute tolerance", { "absolute", "tolerance", 0, 0, }, { 1, 0, 0, 0, }, 1, ODE_options::set_absolute_tolerance, ODE_options::absolute_tolerance, }, { "initial step size", { "initial", "step", "size", 0, }, { 1, 0, 0, 0, }, 1, ODE_options::set_initial_step_size, ODE_options::initial_step_size, }, { "maximum step size", { "maximum", "step", "size", 0, }, { 2, 0, 0, 0, }, 1, ODE_options::set_maximum_step_size, ODE_options::maximum_step_size, }, { "minimum step size", { "minimum", "step", "size", 0, }, { 2, 0, 0, 0, }, 1, ODE_options::set_minimum_step_size, ODE_options::minimum_step_size, }, { "relative tolerance", { "relative", "tolerance", 0, 0, }, { 1, 0, 0, 0, }, 1, ODE_options::set_relative_tolerance, ODE_options::relative_tolerance, }, { 0, { 0, 0, 0, 0, }, { 0, 0, 0, 0, }, 0, 0, 0, }, }; static void print_lsode_option_list (void) { ostrstream output_buf; print_usage ("lsode_options", 1); output_buf << "\n" << "Options for lsode include:\n\n" << " keyword value\n" << " ------- -----\n\n"; ODE_OPTIONS *list = lsode_option_table; const char *keyword; while ((keyword = list->keyword) != 0) { output_buf.form (" %-40s ", keyword); double val = (lsode_opts.*list->d_get_fcn) (); if (val < 0.0) output_buf << "computed automatically"; else output_buf << val; output_buf << "\n"; list++; } output_buf << "\n" << ends; maybe_page_output (output_buf); } static void set_lsode_option (const char *keyword, double val) { ODE_OPTIONS *list = lsode_option_table; while (list->keyword != 0) { if (keyword_almost_match (list->kw_tok, list->min_len, keyword, list->min_toks_to_match, MAX_TOKENS)) { (lsode_opts.*list->d_set_fcn) (val); return; } list++; } warning ("lsode_options: no match for `%s'", keyword); } static Octave_object show_lsode_option (const char *keyword) { Octave_object retval; ODE_OPTIONS *list = lsode_option_table; while (list->keyword != 0) { if (keyword_almost_match (list->kw_tok, list->min_len, keyword, list->min_toks_to_match, MAX_TOKENS)) { return (lsode_opts.*list->d_get_fcn) (); } list++; } warning ("lsode_options: no match for `%s'", keyword); return retval; } DEFUN_DLD_BUILTIN ("lsode_options", Flsode_options, Slsode_options, FSlsode_options, 10, "lsode_options (KEYWORD, VALUE)\n\ \n\ Set or show options for lsode. Keywords may be abbreviated\n\ to the shortest match.") { Octave_object retval; int nargin = args.length (); if (nargin == 0) { print_lsode_option_list (); return retval; } else if (nargin == 1 || nargin == 2) { const char *keyword = args(0).string_value (); if (! error_state) { if (nargin == 1) return show_lsode_option (keyword); else { double val = args(1).double_value (); if (! error_state) { set_lsode_option (keyword, val); return retval; } } } } print_usage ("lsode_options"); return retval; } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; page-delimiter: "^/\\*" *** ;;; End: *** */