My Project  0.0.16
QUCS Mapping
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
integrator.h
Go to the documentation of this file.
1 /*
2  * integrator.h - integrator class definitions
3  *
4  * Copyright (C) 2004, 2005, 2006 Stefan Jahn <stefan@lkcc.org>
5  *
6  * This is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This software is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this package; see the file COPYING. If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  * $Id: integrator.h 1825 2011-03-11 20:42:14Z ela $
22  *
23  */
24 
25 #ifndef __INTEGRATOR_H__
26 #define __INTEGRATOR_H__
27 
28 #include "states.h"
29 
30 #define MODE_NONE 0
31 #define MODE_INIT 1
32 
33 class integrator : public states<nr_double_t>
34 {
35  public:
36  // constructor and destructor set
37  integrator ();
38  integrator (const integrator &);
39  ~integrator ();
40 
41  // integration specific
42  typedef void (* integrate_func_t)
43  (integrator *, int, nr_double_t, nr_double_t&, nr_double_t&);
44  void setIntegration (integrate_func_t f) { integrate_func = f; }
45  typedef void (* conductor_func_t)
46  (integrator *, nr_double_t, nr_double_t&);
47  void setConductance (conductor_func_t f) { conductor_func = f; }
48  void integrate (int, nr_double_t, nr_double_t&, nr_double_t&);
49  void conductor (nr_double_t, nr_double_t&);
50  void setOrder (int o) { order = o; }
51  int getOrder (void) { return order; }
52  void setMode (int s) { state = s; }
53  int getMode (void) { return state; }
54  void setCoefficients (nr_double_t * c) { coefficients = c; }
55  nr_double_t * getCoefficients (void) { return coefficients; }
56 
57  private:
58  int order;
59  int state;
60  nr_double_t * coefficients;
61  integrate_func_t integrate_func;
62  conductor_func_t conductor_func;
63 };
64 
65 #endif /* __INTEGRATOR_H__ */