1 | // created: 2014/11/07
|
---|
2 | // filename: PidThrust.cpp
|
---|
3 | //
|
---|
4 | // author: Guillaume Sanahuja
|
---|
5 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
6 | //
|
---|
7 | // version: $Id: $
|
---|
8 | //
|
---|
9 | // purpose: Class defining a PidThrust
|
---|
10 | //
|
---|
11 | //
|
---|
12 | /*********************************************************************/
|
---|
13 |
|
---|
14 | #include "PidThrust.h"
|
---|
15 | #include "PidThrust_impl.h"
|
---|
16 | #include <cvmatrix.h>
|
---|
17 | #include <Layout.h>
|
---|
18 | #include <LayoutPosition.h>
|
---|
19 | #include <DoubleSpinBox.h>
|
---|
20 |
|
---|
21 | using std::string;
|
---|
22 | using namespace flair::core;
|
---|
23 | using namespace flair::gui;
|
---|
24 |
|
---|
25 | namespace flair
|
---|
26 | {
|
---|
27 | namespace filter
|
---|
28 | {
|
---|
29 |
|
---|
30 | PidThrust::PidThrust(const LayoutPosition* position,string name) : ControlLaw(position->getLayout(),name)
|
---|
31 | {
|
---|
32 | pimpl_=new PidThrust_impl(this,position,name);
|
---|
33 | }
|
---|
34 |
|
---|
35 | PidThrust::~PidThrust(void)
|
---|
36 | {
|
---|
37 | delete pimpl_;
|
---|
38 | }
|
---|
39 |
|
---|
40 | void PidThrust::UseDefaultPlot(const flair::gui::LayoutPosition* position)
|
---|
41 | {
|
---|
42 | pimpl_->UseDefaultPlot(position);
|
---|
43 | }
|
---|
44 |
|
---|
45 | void PidThrust::Reset(void) {
|
---|
46 | pimpl_->i=0;
|
---|
47 | pimpl_->offset_g=0;
|
---|
48 | }
|
---|
49 |
|
---|
50 | void PidThrust::ResetI(void)
|
---|
51 | {
|
---|
52 | pimpl_->i=0;
|
---|
53 | }
|
---|
54 |
|
---|
55 | float PidThrust::GetOffset(void) {
|
---|
56 | return pimpl_->offset_g;
|
---|
57 | }
|
---|
58 |
|
---|
59 | void PidThrust::UpdateFrom(const io_data *data)
|
---|
60 | {
|
---|
61 | pimpl_->UpdateFrom(data);
|
---|
62 | ProcessUpdate(output);
|
---|
63 | }
|
---|
64 |
|
---|
65 | void PidThrust::SetValues(float p,float d)
|
---|
66 | {
|
---|
67 | input->SetValue(0,0,p);
|
---|
68 | input->SetValue(1,0,d);
|
---|
69 | }
|
---|
70 |
|
---|
71 | void PidThrust::ResetOffset(void)
|
---|
72 | {
|
---|
73 | pimpl_->offset_g=0;
|
---|
74 | }
|
---|
75 |
|
---|
76 | void PidThrust::SetOffset(void)
|
---|
77 | {
|
---|
78 | pimpl_->offset_g=pimpl_->offset->Value();
|
---|
79 | }
|
---|
80 |
|
---|
81 | bool PidThrust::OffsetStepUp(void)
|
---|
82 | {
|
---|
83 | pimpl_->offset_g+=pimpl_->pas_offset->Value();
|
---|
84 | if(pimpl_->offset_g>1)
|
---|
85 | {
|
---|
86 | pimpl_->offset_g=1;
|
---|
87 | return false;
|
---|
88 | }
|
---|
89 | else
|
---|
90 | {
|
---|
91 | return true;
|
---|
92 | }
|
---|
93 | }
|
---|
94 |
|
---|
95 | bool PidThrust::OffsetStepDown(void)
|
---|
96 | {
|
---|
97 | pimpl_->offset_g-=pimpl_->pas_offset->Value();
|
---|
98 | if(pimpl_->offset_g<pimpl_->offset->Value())
|
---|
99 | {
|
---|
100 | pimpl_->offset_g=pimpl_->offset->Value();
|
---|
101 | return false;
|
---|
102 | }
|
---|
103 | else
|
---|
104 | {
|
---|
105 | return true;
|
---|
106 | }
|
---|
107 | }
|
---|
108 |
|
---|
109 | } // end namespace filter
|
---|
110 | } // end namespace flair
|
---|