Line | |
---|
1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | /*!
|
---|
6 | * \file PidThrust_impl.h
|
---|
7 | * \brief Classe permettant le calcul d'un Pid
|
---|
8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
9 | * \date 2014/11/07
|
---|
10 | * \version 4.0
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef PIDTHRUST_IMPL_H
|
---|
14 | #define PIDTHRUST_IMPL_H
|
---|
15 |
|
---|
16 | #include <Object.h>
|
---|
17 |
|
---|
18 | namespace flair {
|
---|
19 | namespace core {
|
---|
20 | class Matrix;
|
---|
21 | class io_data;
|
---|
22 | }
|
---|
23 | namespace gui {
|
---|
24 | class LayoutPosition;
|
---|
25 | class DoubleSpinBox;
|
---|
26 | }
|
---|
27 | namespace filter {
|
---|
28 | class PidThrust;
|
---|
29 | }
|
---|
30 | }
|
---|
31 |
|
---|
32 | /*! \class PidThrust_impl
|
---|
33 | * \brief Class defining a PID
|
---|
34 | */
|
---|
35 |
|
---|
36 | class PidThrust_impl {
|
---|
37 | public:
|
---|
38 | PidThrust_impl(flair::filter::PidThrust *self,
|
---|
39 | const flair::gui::LayoutPosition *position, std::string name);
|
---|
40 | ~PidThrust_impl();
|
---|
41 | void UseDefaultPlot(const flair::gui::LayoutPosition *position);
|
---|
42 | void UpdateFrom(const flair::core::io_data *data);
|
---|
43 | float i, offset_g;
|
---|
44 | flair::gui::DoubleSpinBox *offset, *pas_offset;
|
---|
45 |
|
---|
46 | private:
|
---|
47 | flair::filter::PidThrust *self;
|
---|
48 | flair::core::Time previous_time;
|
---|
49 | bool first_update;
|
---|
50 |
|
---|
51 | // matrix
|
---|
52 | flair::core::Matrix *state;
|
---|
53 |
|
---|
54 | flair::gui::DoubleSpinBox *T, *kp, *ki, *kd, *sat, *sati;
|
---|
55 | };
|
---|
56 |
|
---|
57 | #endif // PIDTHRUST_IMPL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.