SVHPositionSettings.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
33 //----------------------------------------------------------------------
34 #ifndef SVHPOSITIONSETTINGS_H
35 #define SVHPOSITIONSETTINGS_H
36 
38 
39 namespace driver_svh {
40 
45 {
46 public:
48  float wmn;
50  float wmx;
52  float dwmx;
54  float ky;
56  float dt;
58  float imn;
60  float imx;
62  float kp;
64  float ki;
66  float kd;
67 
69  bool operator==(const SVHPositionSettings& other) const
70  {
71  return (wmn == other.wmn && wmx == other.wmx && dwmx == other.dwmx && ky == other.ky &&
72  dt == other.dt && imn == other.imn && imx == other.imx && kp == other.kp &&
73  ki == other.ki && kd == other.kd);
74  }
75 
81  SVHPositionSettings(const std::vector<float>& pos_settings)
82  {
83  size_t size = pos_settings.size();
84 
85  wmn = (size > 0) ? pos_settings[0] : 0.0f;
86  wmx = (size > 1) ? pos_settings[1] : 0.0f;
87  dwmx = (size > 2) ? pos_settings[2] : 0.0f;
88  ky = (size > 3) ? pos_settings[3] : 0.0f;
89  dt = (size > 4) ? pos_settings[4] : 0.0f;
90  imn = (size > 5) ? pos_settings[5] : 0.0f;
91  imx = (size > 6) ? pos_settings[6] : 0.0f;
92  kp = (size > 7) ? pos_settings[7] : 0.0f;
93  ki = (size > 8) ? pos_settings[8] : 0.0f;
94  kd = (size > 9) ? pos_settings[9] : 0.0f;
95  }
96 
97 
108  SVHPositionSettings(const float& wmn,
109  const float& wmx,
110  const float& dwmx,
111  const float& ky,
112  const float& dt,
113  const float& imn,
114  const float& imx,
115  const float& kp,
116  const float& ki,
117  const float& kd)
118  : wmn(wmn)
119  , wmx(wmx)
120  , dwmx(dwmx)
121  , ky(ky)
122  , dt(dt)
123  , imn(imn)
124  , imx(imx)
125  , kp(kp)
126  , ki(ki)
127  , kd(kd)
128  {
129  }
130 
135  : wmn(0.0)
136  , wmx(0.0)
137  , dwmx(0.0)
138  , ky(0.0)
139  , dt(0.0)
140  , imn(0.0)
141  , imx(0.0)
142  , kp(0.0)
143  , ki(0.0)
144  , kd(0.0)
145  {
146  }
147 };
148 
151  const SVHPositionSettings& data)
152 {
153  ab << data.wmn << data.wmx << data.dwmx << data.ky << data.dt << data.imn << data.imx << data.kp
154  << data.ki << data.kd;
155  return ab;
156 }
157 
160 {
161  ab >> data.wmn >> data.wmx >> data.dwmx >> data.ky >> data.dt >> data.imn >> data.imx >>
162  data.kp >> data.ki >> data.kd;
163  return ab;
164 }
165 
167 inline std::ostream& operator<<(std::ostream& o, const SVHPositionSettings& ps)
168 {
169  o << "wmn " << ps.wmn << " "
170  << "wmx " << ps.wmx << " "
171  << "dwmx " << ps.dwmx << " "
172  << "ky " << ps.ky << " "
173  << "dt " << ps.dt << " "
174  << "imn " << ps.imn << " "
175  << "imx " << ps.imx << " "
176  << "kp " << ps.kp << " "
177  << "ki " << ps.ki << " "
178  << "kd " << ps.kd << " " << std::endl;
179  return o;
180 }
181 
182 
183 } // namespace driver_svh
184 
185 #endif // SVHPOSITIONSETTINGS_H
float wmx
Reference signal maximum value.
float dt
Time base of controller.
driver_svh::ArrayBuilder & operator<<(driver_svh::ArrayBuilder &ab, const SVHControlCommand &data)
SVHPositionSettings(const float &wmn, const float &wmx, const float &dwmx, const float &ky, const float &dt, const float &imn, const float &imx, const float &kp, const float &ki, const float &kd)
SVHPositionSettings Constructs a new positition settings object to configure the position controller ...
SVHPositionSettings()
SVHPositionSettings Defaault constructor. Intitializes everything to zero.
float dwmx
Reference signal delta maximum threshold.
driver_svh::ArrayBuilder & operator>>(driver_svh::ArrayBuilder &ab, SVHControlCommand &data)
overload stream operator to easily deserialize control commands for one channel
float wmn
Reference signal minimum value.
bool operator==(const SVHPositionSettings &other) const
Compares two SVHPositionsetting objects.
The SVHPositionSettings save the position controller paramters for a single motor.
float imn
Integral windup minimum value.
float imx
Integral windup maximum value.
SVHPositionSettings(const std::vector< float > &pos_settings)
SVHPositionSettings Construct positions settings from a plain vector if the Vector is smaler than 10 ...
float ky
Measurement scaling.


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23