sot-core  4.11.8
Hierarchical task solver plug-in for dynamic-graph.
gain-hyperbolic.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2010,
3  * François Bleibel,
4  * Olivier Stasse,
5  *
6  * CNRS/AIST
7  *
8  */
9 
10 #ifndef __SOT_GAIN_HYPERBOLIC_HH__
11 #define __SOT_GAIN_HYPERBOLIC_HH__
12 
13 /* --------------------------------------------------------------------- */
14 /* --- INCLUDE --------------------------------------------------------- */
15 /* --------------------------------------------------------------------- */
16 
17 /* Matrix */
18 #include <dynamic-graph/linear-algebra.h>
19 
20 /* SOT */
21 #include <dynamic-graph/all-signals.h>
22 #include <dynamic-graph/entity.h>
23 
24 /* --------------------------------------------------------------------- */
25 /* --- API ------------------------------------------------------------- */
26 /* --------------------------------------------------------------------- */
27 
28 #if defined(WIN32)
29 #if defined(gain_hyperbolic_EXPORTS)
30 #define SOTGAINHYPERBOLIC_EXPORT __declspec(dllexport)
31 #else
32 #define SOTGAINHYPERBOLIC_EXPORT __declspec(dllimport)
33 #endif
34 #else
35 #define SOTGAINHYPERBOLIC_EXPORT
36 #endif
37 
38 /* --------------------------------------------------------------------- */
39 /* --- CLASS ----------------------------------------------------------- */
40 /* --------------------------------------------------------------------- */
41 
42 namespace dynamicgraph {
43 namespace sot {
44 
53 class SOTGAINHYPERBOLIC_EXPORT GainHyperbolic : public dynamicgraph::Entity {
54  public: /* --- CONSTANTS --- */
55  /* Default values. */
56  static const double ZERO_DEFAULT; // = 0.1
57  static const double INFTY_DEFAULT; // = 0.1
58  static const double TAN_DEFAULT; // = 1.
59 
60  public: /* --- ENTITY INHERITANCE --- */
61  static const std::string CLASS_NAME;
62  virtual void display(std::ostream &os) const;
63  virtual const std::string &getClassName(void) const { return CLASS_NAME; }
64 
65  protected:
66  /* Parameters of the hyperbolic-gain function:
67  * lambda (x) = a * exp (-b*x) + c. */
68  double coeff_a;
69  double coeff_b;
70  double coeff_c;
71  double coeff_d;
72 
73  public: /* --- CONSTRUCTORS ---- */
74  GainHyperbolic(const std::string &name);
75  GainHyperbolic(const std::string &name, const double &lambda);
76  GainHyperbolic(const std::string &name, const double &valueAt0,
77  const double &valueAtInfty, const double &tanAt0,
78  const double &decal0);
79 
80  public: /* --- INIT --- */
81  inline void init(void) { init(ZERO_DEFAULT, INFTY_DEFAULT, TAN_DEFAULT, 0); }
82  inline void init(const double &lambda) { init(lambda, lambda, 1., 0); }
89  void init(const double &valueAt0, const double &valueAtInfty,
90  const double &tanAt0, const double &decal0);
91  void forceConstant(void);
92 
93  public: /* --- SIGNALS --- */
94  dynamicgraph::SignalPtr<dynamicgraph::Vector, int> errorSIN;
95  dynamicgraph::SignalTimeDependent<double, int> gainSOUT;
96 
97  protected:
98  double &computeGain(double &res, int t);
99 };
100 
101 } /* namespace sot */
102 } /* namespace dynamicgraph */
103 
104 #endif // #ifndef __SOT_GAIN_HYPERBOLIC_HH__
Hyperbolic gain. It follows the law.
Definition: gain-hyperbolic.hh:53
virtual const std::string & getClassName(void) const
Definition: gain-hyperbolic.hh:63
void init(void)
Definition: gain-hyperbolic.hh:81
static const double INFTY_DEFAULT
Definition: gain-hyperbolic.hh:57
double coeff_c
Definition: gain-hyperbolic.hh:70
dynamicgraph::SignalPtr< dynamicgraph::Vector, int > errorSIN
Definition: gain-hyperbolic.hh:94
void init(const double &lambda)
Definition: gain-hyperbolic.hh:82
dynamicgraph::SignalTimeDependent< double, int > gainSOUT
Definition: gain-hyperbolic.hh:95
static const std::string CLASS_NAME
Definition: gain-hyperbolic.hh:61
static const double TAN_DEFAULT
Definition: gain-hyperbolic.hh:58
void init(const double &valueAt0, const double &valueAtInfty, const double &tanAt0, const double &decal0)
static const double ZERO_DEFAULT
Definition: gain-hyperbolic.hh:56
double coeff_b
Definition: gain-hyperbolic.hh:69
GainHyperbolic(const std::string &name, const double &valueAt0, const double &valueAtInfty, const double &tanAt0, const double &decal0)
double coeff_a
Definition: gain-hyperbolic.hh:68
double & computeGain(double &res, int t)
GainHyperbolic(const std::string &name)
GainHyperbolic(const std::string &name, const double &lambda)
virtual void display(std::ostream &os) const
double coeff_d
Definition: gain-hyperbolic.hh:71
#define SOTGAINHYPERBOLIC_EXPORT
Definition: gain-hyperbolic.hh:35
Definition: abstract-sot-external-interface.hh:17