7018
|
1 @c Copyright (C) 1996, 1997, 2006, 2007 John W. Eaton |
|
2 @c |
|
3 @c This file is part of Octave. |
|
4 @c |
|
5 @c Octave is free software; you can redistribute it and/or modify it |
|
6 @c under the terms of the GNU General Public License as published by the |
|
7 @c Free Software Foundation; either version 3 of the License, or (at |
|
8 @c your option) any later version. |
|
9 @c |
|
10 @c Octave is distributed in the hope that it will be useful, but WITHOUT |
|
11 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 @c for more details. |
|
14 @c |
|
15 @c You should have received a copy of the GNU General Public License |
|
16 @c along with Octave; see the file COPYING. If not, see |
|
17 @c <http://www.gnu.org/licenses/>. |
|
18 |
2656
|
19 @node Differential Algebraic Equations, Error Handling, Ordinary Differential Equations, Top |
2333
|
20 @chapter Differential Algebraic Equations |
|
21 @cindex DAE |
|
22 |
5647
|
23 @deftypefn {} {} DAE (void) |
|
24 @deftypefnx {} {} DAE (int @var{n}) |
|
25 @deftypefnx {} {} DAE (const ColumnVector &@var{x}, double @var{time}, DAEFunc &@var{f}) |
|
26 @deftypefnx {} {} DAE (const ColumnVector &@var{x}, ColumnVector &@var{xdot}, double @var{time}, DAEFunc &@var{f}) |
2333
|
27 @end deftypefn |
|
28 |
|
29 @deftypefn {} ColumnVector deriv (void) |
|
30 @end deftypefn |
|
31 |
|
32 @deftypefn {} {virtual void} initialize (const ColumnVector &@var{x}, double @var{t}) |
|
33 @deftypefnx {} {virtual void} initialize (const ColumnVector &@var{x}, ColumnVector &@var{xdot}, double @var{t}) |
|
34 @end deftypefn |
|
35 |
|
36 @deftypefn {} ColumnVector integrate (double @var{t}) |
|
37 @end deftypefn |
|
38 |
|
39 @deftypefn {} Matrix integrate (const ColumnVector &@var{tout}, Matrix &@var{xdot_out}) |
|
40 @deftypefnx {} Matrix integrate (const ColumnVector &@var{tout}, Matrix &@var{xdot_out}, const ColumnVector &@var{tcrit}) |
|
41 @end deftypefn |