SVHCurrentSettings.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 SVHCURRENTSETTINGS_H
35 #define SVHCURRENTSETTINGS_H
36 
38 
39 namespace driver_svh {
40 
45 {
47  float wmn;
49  float wmx;
51  float ky;
53  float dt;
55  float imn;
57  float imx;
59  float kp;
61  float ki;
63  float umn;
65  float umx;
66 
68  bool operator==(const SVHCurrentSettings& other) const
69  {
70  return (wmn == other.wmn && wmx == other.wmx && ky == other.ky && dt == other.dt &&
71  imn == other.imn && imx == other.imx && kp == other.kp && ki == other.ki &&
72  umn == other.umn && umx == other.umx);
73  }
74 
80  SVHCurrentSettings(const std::vector<float>& cur_settings)
81  {
82  size_t size = cur_settings.size();
83 
84  // is there a nicer way to do this? Please tell me if there is :)
85  wmn = (size > 0) ? cur_settings[0] : 0.0f;
86  wmx = (size > 1) ? cur_settings[1] : 0.0f;
87  ky = (size > 2) ? cur_settings[2] : 0.0f;
88  dt = (size > 3) ? cur_settings[3] : 0.0f;
89  imn = (size > 4) ? cur_settings[4] : 0.0f;
90  imx = (size > 5) ? cur_settings[5] : 0.0f;
91  kp = (size > 6) ? cur_settings[6] : 0.0f;
92  ki = (size > 7) ? cur_settings[7] : 0.0f;
93  umn = (size > 8) ? cur_settings[8] : 0.0f;
94  umx = (size > 9) ? cur_settings[9] : 0.0f;
95  }
96 
104  SVHCurrentSettings(const float& wmn,
105  const float& wmx,
106  const float& ky,
107  const float& dt,
108  const float& imn,
109  const float& imx,
110  const float& kp,
111  const float& ki,
112  const float& umn,
113  const float& umx)
114  : wmn(wmn)
115  , wmx(wmx)
116  , ky(ky)
117  , dt(dt)
118  , imn(imn)
119  , imx(imx)
120  , kp(kp)
121  , ki(ki)
122  , umn(umn)
123  , umx(umx)
124  {
125  }
126 
131  : wmn(0.0)
132  , wmx(0.0)
133  , ky(0.0)
134  , dt(0.0)
135  , imn(0.0)
136  , imx(0.0)
137  , kp(0.0)
138  , ki(0.0)
139  , umn(0.0)
140  , umx(0.0)
141  {
142  }
143 };
144 
147  const SVHCurrentSettings& data)
148 {
149  ab << data.wmn << data.wmx << data.ky << data.dt << data.imn << data.imx << data.kp << data.ki
150  << data.umn << data.umx;
151  return ab;
152 }
153 
156 {
157  ab >> data.wmn >> data.wmx >> data.ky >> data.dt >> data.imn >> data.imx >> data.kp >> data.ki >>
158  data.umn >> data.umx;
159  return ab;
160 
161  return ab;
162 }
163 
165 inline std::ostream& operator<<(std::ostream& o, const SVHCurrentSettings& cs)
166 {
167  o << "wmn " << cs.wmn << " "
168  << "wmx " << cs.wmx << " "
169  << "ky " << cs.ky << " "
170  << "dt " << cs.dt << " "
171  << "imn " << cs.imn << " "
172  << "imx " << cs.imx << " "
173  << "kp " << cs.kp << " "
174  << "ki " << cs.ki << " "
175  << "umn " << cs.umn << " "
176  << "umx " << cs.umx << " " << std::endl;
177  return o;
178 }
179 
180 
181 } // namespace driver_svh
182 #endif // SVHCURRENTSETTINGS_H
float wmn
Reference signal minimum value.
SVHCurrentSettings(const float &wmn, const float &wmx, const float &ky, const float &dt, const float &imn, const float &imx, const float &kp, const float &ki, const float &umn, const float &umx)
SVHCurrentSettings Constructs a new current settings object to configure the current controller of a ...
float umn
Output limiter min.
SVHCurrentSettings(const std::vector< float > &cur_settings)
SVHCurrentSettings Construct current settings from a plain vector if the Vector is smaler than 10 val...
float umx
Output limiter max.
The SVHCurrentSettings save the current controller paramters for a single motor.
SVHCurrentSettings()
SVHCurrentSettings Default constructor, initalizes everything to zero.
float imn
Integral windup minimum value.
driver_svh::ArrayBuilder & operator<<(driver_svh::ArrayBuilder &ab, const SVHControlCommand &data)
bool operator==(const SVHCurrentSettings &other) const
Compares two SVHCurrentSettings objects.
float wmx
Reference signal maximum value.
float ky
measurement scaling
driver_svh::ArrayBuilder & operator>>(driver_svh::ArrayBuilder &ab, SVHControlCommand &data)
overload stream operator to easily deserialize control commands for one channel
float dt
time base of controller
float kp
Proportional gain.
float imx
Integral windup maximum value.


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