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