1843
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
1843
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_base_de_h) |
|
24 #define octave_base_de_h 1 |
|
25 |
3995
|
26 #include <string> |
|
27 |
1843
|
28 #include "dColVector.h" |
|
29 #include "dMatrix.h" |
|
30 |
1879
|
31 class |
|
32 base_diff_eqn |
1843
|
33 { |
|
34 public: |
|
35 |
3995
|
36 base_diff_eqn (void) |
|
37 : x (), t (0.0), stop_time (0.0), stop_time_set (false), |
3997
|
38 restart (true), integration_error (false), istate (0) { } |
1843
|
39 |
3995
|
40 base_diff_eqn (const ColumnVector& xx, double tt) |
|
41 : x (xx), t (tt), stop_time (0.0), stop_time_set (false), |
3997
|
42 restart (true), integration_error (false), istate (0) { } |
1843
|
43 |
3995
|
44 base_diff_eqn (const base_diff_eqn& a) |
|
45 : x (a.x), t (a.t), stop_time (0.0), stop_time_set (false), |
3997
|
46 restart (true), integration_error (false), istate (0) { } |
1843
|
47 |
|
48 virtual ~base_diff_eqn (void) { } |
|
49 |
|
50 base_diff_eqn& operator = (const base_diff_eqn& a) |
|
51 { |
1958
|
52 if (this != &a) |
|
53 { |
|
54 x = a.x; |
|
55 t = a.t; |
3995
|
56 stop_time = a.stop_time; |
|
57 stop_time_set = a.stop_time_set; |
|
58 restart = a.restart; |
|
59 integration_error = a.integration_error; |
3997
|
60 istate = a.istate; |
1958
|
61 } |
3995
|
62 |
1843
|
63 return *this; |
|
64 } |
|
65 |
3984
|
66 void initialize (const ColumnVector& x0, double t0) |
1843
|
67 { |
|
68 x = x0; |
|
69 t = t0; |
3995
|
70 integration_error = false; |
3997
|
71 istate = 0; |
1843
|
72 force_restart (); |
|
73 } |
|
74 |
|
75 int size (void) const { return x.capacity (); } |
|
76 |
|
77 ColumnVector state (void) const { return x; } |
|
78 |
|
79 double time (void) const { return t; } |
|
80 |
3995
|
81 void set_stop_time (double t) |
|
82 { |
|
83 stop_time_set = true; |
|
84 stop_time = t; |
|
85 } |
|
86 |
|
87 void clear_stop_time (void) { stop_time_set = false; } |
|
88 |
|
89 virtual void force_restart (void) { restart = true; } |
|
90 |
|
91 bool integration_ok (void) const { return ! integration_error; } |
|
92 |
3997
|
93 int integration_state (void) const { return istate; } |
|
94 |
3995
|
95 virtual std::string error_message (void) const = 0; |
|
96 |
1843
|
97 protected: |
|
98 |
|
99 ColumnVector x; |
3995
|
100 |
1843
|
101 double t; |
3995
|
102 |
|
103 double stop_time; |
|
104 |
|
105 bool stop_time_set; |
|
106 |
|
107 bool restart; |
|
108 |
|
109 bool integration_error; |
3997
|
110 |
|
111 int istate; |
1843
|
112 }; |
|
113 |
|
114 #endif |
|
115 |
|
116 /* |
|
117 ;;; Local Variables: *** |
|
118 ;;; mode: C++ *** |
|
119 ;;; End: *** |
|
120 */ |