GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
base-de.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1996-2018 John W. Eaton
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
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License 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, see
19 <https://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if ! defined (octave_base_de_h)
24 #define octave_base_de_h 1
25 
26 #include "octave-config.h"
27 
28 #include <string>
29 
30 #include "dColVector.h"
31 
32 class
34 {
35 public:
36 
38  : x (), t (0.0), stop_time (0.0), stop_time_set (false),
39  restart (true), integration_error (false), istate (0) { }
40 
41  base_diff_eqn (const ColumnVector& xx, double tt)
42  : x (xx), t (tt), stop_time (0.0), stop_time_set (false),
43  restart (true), integration_error (false), istate (0) { }
44 
46  : x (a.x), t (a.t), stop_time (0.0), stop_time_set (false),
47  restart (true), integration_error (false), istate (0) { }
48 
49  virtual ~base_diff_eqn (void) = default;
50 
51  base_diff_eqn& operator = (const base_diff_eqn& a)
52  {
53  if (this != &a)
54  {
55  x = a.x;
56  t = a.t;
57  stop_time = a.stop_time;
58  stop_time_set = a.stop_time_set;
59  restart = a.restart;
60  integration_error = a.integration_error;
61  istate = a.istate;
62  }
63 
64  return *this;
65  }
66 
67  void initialize (const ColumnVector& x0, double t0)
68  {
69  x = x0;
70  t = t0;
71  integration_error = false;
72  istate = 0;
73  force_restart ();
74  }
75 
76  octave_idx_type size (void) const { return x.numel (); }
77 
78  ColumnVector state (void) const { return x; }
79 
80  double time (void) const { return t; }
81 
82  void set_stop_time (double tt)
83  {
84  stop_time_set = true;
85  stop_time = tt;
86  force_restart ();
87  }
88 
89  void clear_stop_time (void)
90  {
91  stop_time_set = false;
92  force_restart ();
93  }
94 
95  virtual void force_restart (void) { restart = true; }
96 
97  bool integration_ok (void) const { return ! integration_error; }
98 
99  octave_idx_type integration_state (void) const { return istate; }
100 
101  virtual std::string error_message (void) const = 0;
102 
103 protected:
104 
106 
107  double t;
108 
109  double stop_time;
110 
112 
113  bool restart;
114 
116 
118 };
119 
120 #endif
void initialize(const ColumnVector &x0, double t0)
Definition: base-de.h:67
ColumnVector state(void) const
Definition: base-de.h:78
bool integration_error
Definition: base-de.h:115
octave_idx_type istate
Definition: base-de.h:117
octave_idx_type integration_state(void) const
Definition: base-de.h:99
OCTAVE_EXPORT octave_value_list return the number of command line arguments passed to Octave If called with the optional argument the function t
Definition: ov-usr-fcn.cc:997
calling an anonymous function involves an overhead quite comparable to the overhead of an m file function Passing a handle to a built in function is because the interpreter is not involved in the internal loop For a
Definition: cellfun.cc:400
bool integration_ok(void) const
Definition: base-de.h:97
octave_idx_type size(void) const
Definition: base-de.h:76
virtual void force_restart(void)
Definition: base-de.h:95
void set_stop_time(double tt)
Definition: base-de.h:82
double t
Definition: base-de.h:107
is false
Definition: cellfun.cc:400
base_diff_eqn(const ColumnVector &xx, double tt)
Definition: base-de.h:41
void clear_stop_time(void)
Definition: base-de.h:89
double stop_time
Definition: base-de.h:109
double time(void) const
Definition: base-de.h:80
ColumnVector x
Definition: base-de.h:105
base_diff_eqn(void)
Definition: base-de.h:37
bool restart
Definition: base-de.h:113
If this string is the system will ring the terminal sometimes it is useful to be able to print the original representation of the string
Definition: utils.cc:888
base_diff_eqn(const base_diff_eqn &a)
Definition: base-de.h:45
bool stop_time_set
Definition: base-de.h:111
F77_RET_T const F77_REAL const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T const F77_DBLE * x