blob: cea1fddd08f4ef8a0603c93761e2090c4426e7e8 [file] [log] [blame]
Austin Schuhce7e03d2020-11-20 22:32:44 -08001import frc971.control_loops.python.controls as controls
Austin Schuh3c542312013-02-24 01:53:50 -08002import numpy
Austin Schuh572ff402015-11-08 12:17:50 -08003import os
Austin Schuh3c542312013-02-24 01:53:50 -08004
Austin Schuhbcce26a2018-03-26 23:41:24 -07005
Tyler Chatow6738c362019-02-16 14:12:30 -08006class Constant(object):
Austin Schuhe8ca06a2020-03-07 22:27:39 -08007 def __init__(self, name, formatt, value, comment=None):
Tyler Chatow6738c362019-02-16 14:12:30 -08008 self.name = name
9 self.formatt = formatt
10 self.value = value
11 self.formatToType = {}
12 self.formatToType['%f'] = "double"
13 self.formatToType['%d'] = "int"
Austin Schuhe8ca06a2020-03-07 22:27:39 -080014 if comment is None:
15 self.comment = ""
16 else:
17 self.comment = comment + "\n"
Tyler Chatow6738c362019-02-16 14:12:30 -080018
19 def Render(self, loop_type):
20 typestring = self.formatToType[self.formatt]
21 if loop_type == 'float' and typestring == 'double':
22 typestring = loop_type
Austin Schuhe8ca06a2020-03-07 22:27:39 -080023 return str("\n%sstatic constexpr %s %s = "+ self.formatt +";\n") % \
24 (self.comment, typestring, self.name, self.value)
Ben Fredrickson1b45f782014-02-23 07:44:36 +000025
26
Austin Schuhe3490622013-03-13 01:24:30 -070027class ControlLoopWriter(object):
Tyler Chatow6738c362019-02-16 14:12:30 -080028 def __init__(self,
29 gain_schedule_name,
30 loops,
31 namespaces=None,
32 write_constants=False,
33 plant_type='StateFeedbackPlant',
34 observer_type='StateFeedbackObserver',
35 scalar_type='double'):
36 """Constructs a control loop writer.
Austin Schuhe3490622013-03-13 01:24:30 -070037
Tyler Chatow6738c362019-02-16 14:12:30 -080038 Args:
39 gain_schedule_name: string, Name of the overall controller.
40 loops: array[ControlLoop], a list of control loops to gain schedule
41 in order.
42 namespaces: array[string], a list of names of namespaces to nest in
43 order. If None, the default will be used.
44 plant_type: string, The C++ type of the plant.
45 observer_type: string, The C++ type of the observer.
46 scalar_type: string, The C++ type of the base scalar.
47 """
48 self._gain_schedule_name = gain_schedule_name
49 self._loops = loops
50 if namespaces:
51 self._namespaces = namespaces
52 else:
53 self._namespaces = ['frc971', 'control_loops']
Austin Schuhe3490622013-03-13 01:24:30 -070054
Tyler Chatow6738c362019-02-16 14:12:30 -080055 self._namespace_start = '\n'.join(
56 ['namespace %s {' % name for name in self._namespaces])
Austin Schuh86093ad2016-02-06 14:29:34 -080057
Tyler Chatow6738c362019-02-16 14:12:30 -080058 self._namespace_end = '\n'.join([
59 '} // namespace %s' % name for name in reversed(self._namespaces)
60 ])
Austin Schuh25933852014-02-23 02:04:13 -080061
Tyler Chatow6738c362019-02-16 14:12:30 -080062 self._constant_list = []
63 self._plant_type = plant_type
64 self._observer_type = observer_type
65 self._scalar_type = scalar_type
Austin Schuh25933852014-02-23 02:04:13 -080066
Tyler Chatow6738c362019-02-16 14:12:30 -080067 def AddConstant(self, constant):
68 """Adds a constant to write.
Austin Schuhe3490622013-03-13 01:24:30 -070069
Tyler Chatow6738c362019-02-16 14:12:30 -080070 Args:
71 constant: Constant, the constant to add to the header.
72 """
73 self._constant_list.append(constant)
Brian Silvermane51ad632014-01-08 15:12:29 -080074
Tyler Chatow6738c362019-02-16 14:12:30 -080075 def _TopDirectory(self):
76 return self._namespaces[0]
Austin Schuhe3490622013-03-13 01:24:30 -070077
Tyler Chatow6738c362019-02-16 14:12:30 -080078 def _HeaderGuard(self, header_file):
79 return ('_'.join([namespace.upper() for namespace in self._namespaces])
80 + '_' + os.path.basename(header_file).upper().replace(
81 '.', '_').replace('/', '_') + '_')
Austin Schuhe3490622013-03-13 01:24:30 -070082
Tyler Chatow6738c362019-02-16 14:12:30 -080083 def Write(self, header_file, cc_file):
84 """Writes the loops to the specified files."""
85 self.WriteHeader(header_file)
86 self.WriteCC(os.path.basename(header_file), cc_file)
Austin Schuhe3490622013-03-13 01:24:30 -070087
Tyler Chatow6738c362019-02-16 14:12:30 -080088 def _GenericType(self, typename, extra_args=None):
89 """Returns a loop template using typename for the type."""
90 num_states = self._loops[0].A.shape[0]
91 num_inputs = self._loops[0].B.shape[1]
92 num_outputs = self._loops[0].C.shape[0]
93 if extra_args is not None:
94 extra_args = ', ' + extra_args
95 else:
96 extra_args = ''
97 if self._scalar_type != 'double':
98 extra_args += ', ' + self._scalar_type
99 return '%s<%d, %d, %d%s>' % (typename, num_states, num_inputs,
100 num_outputs, extra_args)
Austin Schuh32501832017-02-25 18:32:56 -0800101
Tyler Chatow6738c362019-02-16 14:12:30 -0800102 def _ControllerType(self):
103 """Returns a template name for StateFeedbackController."""
104 return self._GenericType('StateFeedbackController')
Austin Schuhe3490622013-03-13 01:24:30 -0700105
Tyler Chatow6738c362019-02-16 14:12:30 -0800106 def _ObserverType(self):
107 """Returns a template name for StateFeedbackObserver."""
108 return self._GenericType(self._observer_type)
Austin Schuh20388b62017-11-23 22:40:46 -0800109
Tyler Chatow6738c362019-02-16 14:12:30 -0800110 def _LoopType(self):
111 """Returns a template name for StateFeedbackLoop."""
112 num_states = self._loops[0].A.shape[0]
113 num_inputs = self._loops[0].B.shape[1]
114 num_outputs = self._loops[0].C.shape[0]
Austin Schuh20388b62017-11-23 22:40:46 -0800115
Tyler Chatow6738c362019-02-16 14:12:30 -0800116 return 'StateFeedbackLoop<%d, %d, %d, %s, %s, %s>' % (
117 num_states, num_inputs, num_outputs, self._scalar_type,
118 self._PlantType(), self._ObserverType())
Austin Schuhe3490622013-03-13 01:24:30 -0700119
Tyler Chatow6738c362019-02-16 14:12:30 -0800120 def _PlantType(self):
121 """Returns a template name for StateFeedbackPlant."""
122 return self._GenericType(self._plant_type)
Austin Schuhe3490622013-03-13 01:24:30 -0700123
Tyler Chatow6738c362019-02-16 14:12:30 -0800124 def _PlantCoeffType(self):
125 """Returns a template name for StateFeedbackPlantCoefficients."""
126 return self._GenericType(self._plant_type + 'Coefficients')
Austin Schuhe3490622013-03-13 01:24:30 -0700127
Tyler Chatow6738c362019-02-16 14:12:30 -0800128 def _ControllerCoeffType(self):
129 """Returns a template name for StateFeedbackControllerCoefficients."""
130 return self._GenericType('StateFeedbackControllerCoefficients')
Austin Schuh32501832017-02-25 18:32:56 -0800131
Tyler Chatow6738c362019-02-16 14:12:30 -0800132 def _ObserverCoeffType(self):
133 """Returns a template name for StateFeedbackObserverCoefficients."""
134 return self._GenericType(self._observer_type + 'Coefficients')
Austin Schuh32501832017-02-25 18:32:56 -0800135
Tyler Chatow6738c362019-02-16 14:12:30 -0800136 def WriteHeader(self, header_file):
137 """Writes the header file to the file named header_file."""
138 with open(header_file, 'w') as fd:
139 header_guard = self._HeaderGuard(header_file)
140 fd.write('#ifndef %s\n'
141 '#define %s\n\n' % (header_guard, header_guard))
142 fd.write(
143 '#include \"frc971/control_loops/state_feedback_loop.h\"\n')
Ravago Jones26f7ad02021-02-05 15:45:59 -0800144 if (self._plant_type == 'StateFeedbackHybridPlant'
145 or self._observer_type == 'HybridKalman'):
Tyler Chatow6738c362019-02-16 14:12:30 -0800146 fd.write(
147 '#include \"frc971/control_loops/hybrid_state_feedback_loop.h\"\n'
148 )
Austin Schuh4cc4fe22017-11-23 19:13:09 -0800149
Tyler Chatow6738c362019-02-16 14:12:30 -0800150 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700151
Tyler Chatow6738c362019-02-16 14:12:30 -0800152 fd.write(self._namespace_start)
Ben Fredrickson1b45f782014-02-23 07:44:36 +0000153
Tyler Chatow6738c362019-02-16 14:12:30 -0800154 for const in self._constant_list:
155 fd.write(const.Render(self._scalar_type))
Ben Fredrickson1b45f782014-02-23 07:44:36 +0000156
Tyler Chatow6738c362019-02-16 14:12:30 -0800157 fd.write('\n\n')
158 for loop in self._loops:
159 fd.write(loop.DumpPlantHeader(self._PlantCoeffType()))
160 fd.write('\n')
161 fd.write(loop.DumpControllerHeader(self._scalar_type))
162 fd.write('\n')
163 fd.write(loop.DumpObserverHeader(self._ObserverCoeffType()))
164 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700165
Tyler Chatow6738c362019-02-16 14:12:30 -0800166 fd.write('%s Make%sPlant();\n\n' % (self._PlantType(),
167 self._gain_schedule_name))
Austin Schuhe3490622013-03-13 01:24:30 -0700168
Tyler Chatow6738c362019-02-16 14:12:30 -0800169 fd.write('%s Make%sController();\n\n' % (self._ControllerType(),
170 self._gain_schedule_name))
Austin Schuh32501832017-02-25 18:32:56 -0800171
Tyler Chatow6738c362019-02-16 14:12:30 -0800172 fd.write('%s Make%sObserver();\n\n' % (self._ObserverType(),
173 self._gain_schedule_name))
Austin Schuh32501832017-02-25 18:32:56 -0800174
Tyler Chatow6738c362019-02-16 14:12:30 -0800175 fd.write('%s Make%sLoop();\n\n' % (self._LoopType(),
176 self._gain_schedule_name))
Austin Schuhe3490622013-03-13 01:24:30 -0700177
Tyler Chatow6738c362019-02-16 14:12:30 -0800178 fd.write(self._namespace_end)
179 fd.write('\n\n')
180 fd.write("#endif // %s\n" % header_guard)
Austin Schuhe3490622013-03-13 01:24:30 -0700181
Tyler Chatow6738c362019-02-16 14:12:30 -0800182 def WriteCC(self, header_file_name, cc_file):
183 """Writes the cc file to the file named cc_file."""
184 with open(cc_file, 'w') as fd:
185 fd.write('#include \"%s/%s\"\n' % (os.path.join(*self._namespaces),
186 header_file_name))
187 fd.write('\n')
James Kuszmaul03be1242020-02-21 14:52:04 -0800188 fd.write('#include <chrono>\n')
Tyler Chatow6738c362019-02-16 14:12:30 -0800189 fd.write('#include <vector>\n')
190 fd.write('\n')
191 fd.write(
192 '#include \"frc971/control_loops/state_feedback_loop.h\"\n')
193 fd.write('\n')
194 fd.write(self._namespace_start)
195 fd.write('\n\n')
196 for loop in self._loops:
197 fd.write(
198 loop.DumpPlant(self._PlantCoeffType(), self._scalar_type))
199 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700200
Tyler Chatow6738c362019-02-16 14:12:30 -0800201 for loop in self._loops:
202 fd.write(loop.DumpController(self._scalar_type))
203 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700204
Tyler Chatow6738c362019-02-16 14:12:30 -0800205 for loop in self._loops:
206 fd.write(
207 loop.DumpObserver(self._ObserverCoeffType(),
208 self._scalar_type))
209 fd.write('\n')
Austin Schuh32501832017-02-25 18:32:56 -0800210
Tyler Chatow6738c362019-02-16 14:12:30 -0800211 fd.write('%s Make%sPlant() {\n' % (self._PlantType(),
212 self._gain_schedule_name))
213 fd.write(' ::std::vector< ::std::unique_ptr<%s>> plants(%d);\n' %
214 (self._PlantCoeffType(), len(self._loops)))
215 for index, loop in enumerate(self._loops):
Ravago Jones26f7ad02021-02-05 15:45:59 -0800216 fd.write(' plants[%d] = ::std::unique_ptr<%s>(new %s(%s));\n'
217 % (index, self._PlantCoeffType(),
218 self._PlantCoeffType(), loop.PlantFunction()))
Austin Schuhb02bf5b2021-07-31 21:28:21 -0700219 fd.write(' return %s(std::move(plants));\n' % self._PlantType())
Tyler Chatow6738c362019-02-16 14:12:30 -0800220 fd.write('}\n\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700221
Tyler Chatow6738c362019-02-16 14:12:30 -0800222 fd.write('%s Make%sController() {\n' % (self._ControllerType(),
223 self._gain_schedule_name))
224 fd.write(
225 ' ::std::vector< ::std::unique_ptr<%s>> controllers(%d);\n' %
226 (self._ControllerCoeffType(), len(self._loops)))
227 for index, loop in enumerate(self._loops):
228 fd.write(
Ravago Jones26f7ad02021-02-05 15:45:59 -0800229 ' controllers[%d] = ::std::unique_ptr<%s>(new %s(%s));\n'
230 % (index, self._ControllerCoeffType(),
231 self._ControllerCoeffType(), loop.ControllerFunction()))
Austin Schuhb02bf5b2021-07-31 21:28:21 -0700232 fd.write(' return %s(std::move(controllers));\n' %
233 self._ControllerType())
Tyler Chatow6738c362019-02-16 14:12:30 -0800234 fd.write('}\n\n')
Austin Schuh32501832017-02-25 18:32:56 -0800235
Tyler Chatow6738c362019-02-16 14:12:30 -0800236 fd.write('%s Make%sObserver() {\n' % (self._ObserverType(),
237 self._gain_schedule_name))
238 fd.write(' ::std::vector< ::std::unique_ptr<%s>> observers(%d);\n'
239 % (self._ObserverCoeffType(), len(self._loops)))
240 for index, loop in enumerate(self._loops):
241 fd.write(
242 ' observers[%d] = ::std::unique_ptr<%s>(new %s(%s));\n'
243 % (index, self._ObserverCoeffType(),
244 self._ObserverCoeffType(), loop.ObserverFunction()))
Austin Schuhb02bf5b2021-07-31 21:28:21 -0700245 fd.write(
246 ' return %s(std::move(observers));\n' % self._ObserverType())
Tyler Chatow6738c362019-02-16 14:12:30 -0800247 fd.write('}\n\n')
Austin Schuh32501832017-02-25 18:32:56 -0800248
Tyler Chatow6738c362019-02-16 14:12:30 -0800249 fd.write('%s Make%sLoop() {\n' % (self._LoopType(),
250 self._gain_schedule_name))
251 fd.write(
252 ' return %s(Make%sPlant(), Make%sController(), Make%sObserver());\n'
253 % (self._LoopType(), self._gain_schedule_name,
254 self._gain_schedule_name, self._gain_schedule_name))
255 fd.write('}\n\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700256
Tyler Chatow6738c362019-02-16 14:12:30 -0800257 fd.write(self._namespace_end)
258 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700259
260
Austin Schuh3c542312013-02-24 01:53:50 -0800261class ControlLoop(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800262 def __init__(self, name):
263 """Constructs a control loop object.
Austin Schuh3c542312013-02-24 01:53:50 -0800264
Tyler Chatow6738c362019-02-16 14:12:30 -0800265 Args:
266 name: string, The name of the loop to use when writing the C++ files.
267 """
268 self._name = name
Austin Schuhb5d302f2019-01-20 20:51:19 -0800269
Tyler Chatow6738c362019-02-16 14:12:30 -0800270 @property
271 def name(self):
272 """Returns the name"""
273 return self._name
Austin Schuh3c542312013-02-24 01:53:50 -0800274
Tyler Chatow6738c362019-02-16 14:12:30 -0800275 def ContinuousToDiscrete(self, A_continuous, B_continuous, dt):
276 """Calculates the discrete time values for A and B.
Austin Schuhc1f68892013-03-16 17:06:27 -0700277
Tyler Chatow6738c362019-02-16 14:12:30 -0800278 Args:
279 A_continuous: numpy.matrix, The continuous time A matrix
280 B_continuous: numpy.matrix, The continuous time B matrix
281 dt: float, The time step of the control loop
Austin Schuhc1f68892013-03-16 17:06:27 -0700282
Tyler Chatow6738c362019-02-16 14:12:30 -0800283 Returns:
284 (A, B), numpy.matrix, the control matricies.
285 """
286 return controls.c2d(A_continuous, B_continuous, dt)
Austin Schuh3c542312013-02-24 01:53:50 -0800287
Tyler Chatow6738c362019-02-16 14:12:30 -0800288 def InitializeState(self):
289 """Sets X, Y, and X_hat to zero defaults."""
Austin Schuh43b9ae92020-02-29 23:08:38 -0800290 self.X = numpy.matrix(numpy.zeros((self.A.shape[0], 1)))
Tyler Chatow6738c362019-02-16 14:12:30 -0800291 self.Y = self.C * self.X
Austin Schuh43b9ae92020-02-29 23:08:38 -0800292 self.X_hat = numpy.matrix(numpy.zeros((self.A.shape[0], 1)))
Austin Schuh3c542312013-02-24 01:53:50 -0800293
Tyler Chatow6738c362019-02-16 14:12:30 -0800294 def PlaceControllerPoles(self, poles):
295 """Places the controller poles.
Austin Schuh3c542312013-02-24 01:53:50 -0800296
Tyler Chatow6738c362019-02-16 14:12:30 -0800297 Args:
298 poles: array, An array of poles. Must be complex conjegates if they have
299 any imaginary portions.
300 """
301 self.K = controls.dplace(self.A, self.B, poles)
Austin Schuh3c542312013-02-24 01:53:50 -0800302
Tyler Chatow6738c362019-02-16 14:12:30 -0800303 def PlaceObserverPoles(self, poles):
304 """Places the observer poles.
Austin Schuh3c542312013-02-24 01:53:50 -0800305
Tyler Chatow6738c362019-02-16 14:12:30 -0800306 Args:
307 poles: array, An array of poles. Must be complex conjegates if they have
308 any imaginary portions.
309 """
310 self.L = controls.dplace(self.A.T, self.C.T, poles).T
Sabina Davis3922dfa2018-02-10 23:10:05 -0800311
Tyler Chatow6738c362019-02-16 14:12:30 -0800312 def Update(self, U):
313 """Simulates one time step with the provided U."""
314 #U = numpy.clip(U, self.U_min, self.U_max)
315 self.X = self.A * self.X + self.B * U
316 self.Y = self.C * self.X + self.D * U
Austin Schuh3c542312013-02-24 01:53:50 -0800317
Tyler Chatow6738c362019-02-16 14:12:30 -0800318 def PredictObserver(self, U):
319 """Runs the predict step of the observer update."""
320 self.X_hat = (self.A * self.X_hat + self.B * U)
Austin Schuh1a387962015-01-31 16:36:20 -0800321
Tyler Chatow6738c362019-02-16 14:12:30 -0800322 def CorrectObserver(self, U):
323 """Runs the correct step of the observer update."""
324 if hasattr(self, 'KalmanGain'):
325 KalmanGain = self.KalmanGain
326 else:
327 KalmanGain = numpy.linalg.inv(self.A) * self.L
328 self.X_hat += KalmanGain * (self.Y - self.C * self.X_hat - self.D * U)
Austin Schuh1a387962015-01-31 16:36:20 -0800329
Tyler Chatow6738c362019-02-16 14:12:30 -0800330 def UpdateObserver(self, U):
331 """Updates the observer given the provided U."""
332 if hasattr(self, 'KalmanGain'):
333 KalmanGain = self.KalmanGain
334 else:
335 KalmanGain = numpy.linalg.inv(self.A) * self.L
336 self.X_hat = (self.A * self.X_hat + self.B * U + self.A * KalmanGain *
337 (self.Y - self.C * self.X_hat - self.D * U))
Austin Schuh3c542312013-02-24 01:53:50 -0800338
Tyler Chatow6738c362019-02-16 14:12:30 -0800339 def _DumpMatrix(self, matrix_name, matrix, scalar_type):
340 """Dumps the provided matrix into a variable called matrix_name.
Austin Schuh3c542312013-02-24 01:53:50 -0800341
Tyler Chatow6738c362019-02-16 14:12:30 -0800342 Args:
343 matrix_name: string, The variable name to save the matrix to.
344 matrix: The matrix to dump.
345 scalar_type: The C++ type to use for the scalar in the matrix.
Austin Schuh3c542312013-02-24 01:53:50 -0800346
Tyler Chatow6738c362019-02-16 14:12:30 -0800347 Returns:
348 string, The C++ commands required to populate a variable named matrix_name
349 with the contents of matrix.
350 """
351 ans = [
Ravago Jones26f7ad02021-02-05 15:45:59 -0800352 ' Eigen::Matrix<%s, %d, %d> %s;\n' %
353 (scalar_type, matrix.shape[0], matrix.shape[1], matrix_name)
Tyler Chatow6738c362019-02-16 14:12:30 -0800354 ]
Austin Schuh5ea48472021-02-02 20:46:41 -0800355 for x in range(matrix.shape[0]):
356 for y in range(matrix.shape[1]):
Tyler Chatow6738c362019-02-16 14:12:30 -0800357 write_type = repr(matrix[x, y])
358 if scalar_type == 'float':
Austin Schuh085eab92020-11-26 13:54:51 -0800359 if '.' not in write_type and 'e' not in write_type:
Tyler Chatow6738c362019-02-16 14:12:30 -0800360 write_type += '.0'
361 write_type += 'f'
362 ans.append(
363 ' %s(%d, %d) = %s;\n' % (matrix_name, x, y, write_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800364
Tyler Chatow6738c362019-02-16 14:12:30 -0800365 return ''.join(ans)
Austin Schuh3c542312013-02-24 01:53:50 -0800366
Tyler Chatow6738c362019-02-16 14:12:30 -0800367 def DumpPlantHeader(self, plant_coefficient_type):
368 """Writes out a c++ header declaration which will create a Plant object.
Austin Schuh3c542312013-02-24 01:53:50 -0800369
Tyler Chatow6738c362019-02-16 14:12:30 -0800370 Returns:
371 string, The header declaration for the function.
372 """
373 return '%s Make%sPlantCoefficients();\n' % (plant_coefficient_type,
374 self._name)
Austin Schuh3c542312013-02-24 01:53:50 -0800375
Tyler Chatow6738c362019-02-16 14:12:30 -0800376 def DumpPlant(self, plant_coefficient_type, scalar_type):
377 """Writes out a c++ function which will create a PlantCoefficients object.
Austin Schuh3c542312013-02-24 01:53:50 -0800378
Tyler Chatow6738c362019-02-16 14:12:30 -0800379 Returns:
380 string, The function which will create the object.
381 """
382 ans = [
383 '%s Make%sPlantCoefficients() {\n' % (plant_coefficient_type,
384 self._name)
385 ]
Austin Schuh3c542312013-02-24 01:53:50 -0800386
Tyler Chatow6738c362019-02-16 14:12:30 -0800387 ans.append(self._DumpMatrix('C', self.C, scalar_type))
388 ans.append(self._DumpMatrix('D', self.D, scalar_type))
389 ans.append(self._DumpMatrix('U_max', self.U_max, scalar_type))
390 ans.append(self._DumpMatrix('U_min', self.U_min, scalar_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800391
Tyler Chatow6738c362019-02-16 14:12:30 -0800392 if plant_coefficient_type.startswith('StateFeedbackPlant'):
393 ans.append(self._DumpMatrix('A', self.A, scalar_type))
394 ans.append(self._DumpMatrix('B', self.B, scalar_type))
395 ans.append(
James Kuszmaul03be1242020-02-21 14:52:04 -0800396 ' const std::chrono::nanoseconds dt(%d);\n' % (self.dt * 1e9))
397 ans.append(
Tyler Chatow6738c362019-02-16 14:12:30 -0800398 ' return %s'
James Kuszmaul03be1242020-02-21 14:52:04 -0800399 '(A, B, C, D, U_max, U_min, dt);\n' % (plant_coefficient_type))
Tyler Chatow6738c362019-02-16 14:12:30 -0800400 elif plant_coefficient_type.startswith('StateFeedbackHybridPlant'):
401 ans.append(
402 self._DumpMatrix('A_continuous', self.A_continuous,
403 scalar_type))
404 ans.append(
405 self._DumpMatrix('B_continuous', self.B_continuous,
406 scalar_type))
407 ans.append(' return %s'
408 '(A_continuous, B_continuous, C, D, U_max, U_min);\n' %
409 (plant_coefficient_type))
410 else:
411 glog.fatal('Unsupported plant type %s', plant_coefficient_type)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800412
Tyler Chatow6738c362019-02-16 14:12:30 -0800413 ans.append('}\n')
414 return ''.join(ans)
Austin Schuh3c542312013-02-24 01:53:50 -0800415
Tyler Chatow6738c362019-02-16 14:12:30 -0800416 def PlantFunction(self):
417 """Returns the name of the plant coefficient function."""
418 return 'Make%sPlantCoefficients()' % self._name
Austin Schuh3c542312013-02-24 01:53:50 -0800419
Tyler Chatow6738c362019-02-16 14:12:30 -0800420 def ControllerFunction(self):
421 """Returns the name of the controller function."""
422 return 'Make%sControllerCoefficients()' % self._name
Austin Schuh32501832017-02-25 18:32:56 -0800423
Tyler Chatow6738c362019-02-16 14:12:30 -0800424 def ObserverFunction(self):
425 """Returns the name of the controller function."""
426 return 'Make%sObserverCoefficients()' % self._name
Austin Schuhe3490622013-03-13 01:24:30 -0700427
Tyler Chatow6738c362019-02-16 14:12:30 -0800428 def DumpControllerHeader(self, scalar_type):
429 """Writes out a c++ header declaration which will create a Controller object.
Austin Schuh3c542312013-02-24 01:53:50 -0800430
Tyler Chatow6738c362019-02-16 14:12:30 -0800431 Returns:
432 string, The header declaration for the function.
433 """
434 num_states = self.A.shape[0]
435 num_inputs = self.B.shape[1]
436 num_outputs = self.C.shape[0]
437 return 'StateFeedbackControllerCoefficients<%d, %d, %d, %s> %s;\n' % (
438 num_states, num_inputs, num_outputs, scalar_type,
439 self.ControllerFunction())
Austin Schuh3c542312013-02-24 01:53:50 -0800440
Tyler Chatow6738c362019-02-16 14:12:30 -0800441 def DumpController(self, scalar_type):
442 """Returns a c++ function which will create a Controller object.
Austin Schuh3c542312013-02-24 01:53:50 -0800443
Tyler Chatow6738c362019-02-16 14:12:30 -0800444 Returns:
445 string, The function which will create the object.
446 """
447 num_states = self.A.shape[0]
448 num_inputs = self.B.shape[1]
449 num_outputs = self.C.shape[0]
450 ans = [
451 'StateFeedbackControllerCoefficients<%d, %d, %d, %s> %s {\n' %
452 (num_states, num_inputs, num_outputs, scalar_type,
453 self.ControllerFunction())
454 ]
Austin Schuh3c542312013-02-24 01:53:50 -0800455
Tyler Chatow6738c362019-02-16 14:12:30 -0800456 ans.append(self._DumpMatrix('K', self.K, scalar_type))
457 if not hasattr(self, 'Kff'):
458 self.Kff = numpy.matrix(numpy.zeros(self.K.shape))
Austin Schuh86093ad2016-02-06 14:29:34 -0800459
Tyler Chatow6738c362019-02-16 14:12:30 -0800460 ans.append(self._DumpMatrix('Kff', self.Kff, scalar_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800461
Tyler Chatow6738c362019-02-16 14:12:30 -0800462 ans.append(
463 ' return StateFeedbackControllerCoefficients<%d, %d, %d, %s>'
464 '(K, Kff);\n' % (num_states, num_inputs, num_outputs, scalar_type))
465 ans.append('}\n')
466 return ''.join(ans)
Austin Schuh32501832017-02-25 18:32:56 -0800467
Tyler Chatow6738c362019-02-16 14:12:30 -0800468 def DumpObserverHeader(self, observer_coefficient_type):
469 """Writes out a c++ header declaration which will create a Observer object.
Austin Schuh32501832017-02-25 18:32:56 -0800470
Tyler Chatow6738c362019-02-16 14:12:30 -0800471 Returns:
472 string, The header declaration for the function.
473 """
Ravago Jones26f7ad02021-02-05 15:45:59 -0800474 return '%s %s;\n' % (observer_coefficient_type,
475 self.ObserverFunction())
Austin Schuh32501832017-02-25 18:32:56 -0800476
Tyler Chatow6738c362019-02-16 14:12:30 -0800477 def DumpObserver(self, observer_coefficient_type, scalar_type):
478 """Returns a c++ function which will create a Observer object.
Austin Schuh32501832017-02-25 18:32:56 -0800479
Tyler Chatow6738c362019-02-16 14:12:30 -0800480 Returns:
481 string, The function which will create the object.
482 """
483 ans = [
484 '%s %s {\n' % (observer_coefficient_type, self.ObserverFunction())
485 ]
Austin Schuh32501832017-02-25 18:32:56 -0800486
Tyler Chatow6738c362019-02-16 14:12:30 -0800487 if observer_coefficient_type.startswith('StateFeedbackObserver'):
488 if hasattr(self, 'KalmanGain'):
489 KalmanGain = self.KalmanGain
490 Q = self.Q
491 R = self.R
492 else:
493 KalmanGain = numpy.linalg.inv(self.A) * self.L
494 Q = numpy.zeros(self.A.shape)
495 R = numpy.zeros((self.C.shape[0], self.C.shape[0]))
496 ans.append(self._DumpMatrix('KalmanGain', KalmanGain, scalar_type))
497 ans.append(self._DumpMatrix('Q', Q, scalar_type))
498 ans.append(self._DumpMatrix('R', R, scalar_type))
499 ans.append(' return %s(KalmanGain, Q, R);\n' %
Ravago Jones26f7ad02021-02-05 15:45:59 -0800500 (observer_coefficient_type, ))
Sabina Davis3922dfa2018-02-10 23:10:05 -0800501
Tyler Chatow6738c362019-02-16 14:12:30 -0800502 elif observer_coefficient_type.startswith('HybridKalman'):
503 ans.append(
504 self._DumpMatrix('Q_continuous', self.Q_continuous,
505 scalar_type))
506 ans.append(
507 self._DumpMatrix('R_continuous', self.R_continuous,
508 scalar_type))
509 ans.append(
510 self._DumpMatrix('P_steady_state', self.P_steady_state,
511 scalar_type))
512 ans.append(
513 ' return %s(Q_continuous, R_continuous, P_steady_state);\n' %
Ravago Jones26f7ad02021-02-05 15:45:59 -0800514 (observer_coefficient_type, ))
Tyler Chatow6738c362019-02-16 14:12:30 -0800515 else:
516 glog.fatal('Unsupported observer type %s',
517 observer_coefficient_type)
Austin Schuh32501832017-02-25 18:32:56 -0800518
Tyler Chatow6738c362019-02-16 14:12:30 -0800519 ans.append('}\n')
520 return ''.join(ans)
521
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800522
523class HybridControlLoop(ControlLoop):
Tyler Chatow6738c362019-02-16 14:12:30 -0800524 def __init__(self, name):
525 super(HybridControlLoop, self).__init__(name=name)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800526
Tyler Chatow6738c362019-02-16 14:12:30 -0800527 def Discretize(self, dt):
528 [self.A, self.B, self.Q, self.R] = \
529 controls.kalmd(self.A_continuous, self.B_continuous,
530 self.Q_continuous, self.R_continuous, dt)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800531
Tyler Chatow6738c362019-02-16 14:12:30 -0800532 def PredictHybridObserver(self, U, dt):
533 self.Discretize(dt)
534 self.X_hat = self.A * self.X_hat + self.B * U
535 self.P = (self.A * self.P * self.A.T + self.Q)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800536
Tyler Chatow6738c362019-02-16 14:12:30 -0800537 def CorrectHybridObserver(self, U):
538 Y_bar = self.Y - self.C * self.X_hat
539 C_t = self.C.T
540 S = self.C * self.P * C_t + self.R
541 self.KalmanGain = self.P * C_t * numpy.linalg.inv(S)
542 self.X_hat = self.X_hat + self.KalmanGain * Y_bar
543 self.P = (numpy.eye(len(self.A)) - self.KalmanGain * self.C) * self.P
544
545 def InitializeState(self):
546 super(HybridControlLoop, self).InitializeState()
547 if hasattr(self, 'Q_steady_state'):
548 self.P = self.Q_steady_state
549 else:
550 self.P = numpy.matrix(
551 numpy.zeros((self.A.shape[0], self.A.shape[0])))
Campbell Crowley33e0e3d2017-12-27 17:55:40 -0800552
553
554class CIM(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800555 def __init__(self):
556 # Stall Torque in N m
557 self.stall_torque = 2.42
558 # Stall Current in Amps
559 self.stall_current = 133.0
560 # Free Speed in rad/s
561 self.free_speed = 5500.0 / 60.0 * 2.0 * numpy.pi
562 # Free Current in Amps
563 self.free_current = 4.7
564 # Resistance of the motor
565 self.resistance = 12.0 / self.stall_current
566 # Motor velocity constant
567 self.Kv = (
568 self.free_speed / (12.0 - self.resistance * self.free_current))
569 # Torque constant
570 self.Kt = self.stall_torque / self.stall_current
Lee Mracek97fc8af2018-01-13 04:38:52 -0500571
572
573class MiniCIM(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800574 def __init__(self):
575 # Stall Torque in N m
576 self.stall_torque = 1.41
577 # Stall Current in Amps
578 self.stall_current = 89.0
579 # Free Speed in rad/s
580 self.free_speed = 5840.0 / 60.0 * 2.0 * numpy.pi
581 # Free Current in Amps
582 self.free_current = 3.0
583 # Resistance of the motor
584 self.resistance = 12.0 / self.stall_current
585 # Motor velocity constant
586 self.Kv = (
587 self.free_speed / (12.0 - self.resistance * self.free_current))
588 # Torque constant
589 self.Kt = self.stall_torque / self.stall_current
Austin Schuhf173eb82018-01-20 23:32:30 -0800590
591
Austin Schuhb5d302f2019-01-20 20:51:19 -0800592class NMotor(object):
593 def __init__(self, motor, n):
594 """Gangs together n motors."""
595 self.motor = motor
596 self.stall_torque = motor.stall_torque * n
597 self.stall_current = motor.stall_current * n
598 self.free_speed = motor.free_speed
599
600 self.free_current = motor.free_current * n
601 self.resistance = motor.resistance / n
602 self.Kv = motor.Kv
603 self.Kt = motor.Kt
Austin Schuh36bb8e32019-02-18 15:02:57 -0800604 self.motor_inertia = motor.motor_inertia * n
Austin Schuhb5d302f2019-01-20 20:51:19 -0800605
606
607class Vex775Pro(object):
608 def __init__(self):
609 # Stall Torque in N m
610 self.stall_torque = 0.71
611 # Stall Current in Amps
612 self.stall_current = 134.0
613 # Free Speed in rad/s
614 self.free_speed = 18730.0 / 60.0 * 2.0 * numpy.pi
615 # Free Current in Amps
616 self.free_current = 0.7
617 # Resistance of the motor
618 self.resistance = 12.0 / self.stall_current
619 # Motor velocity constant
Tyler Chatow6738c362019-02-16 14:12:30 -0800620 self.Kv = (
621 self.free_speed / (12.0 - self.resistance * self.free_current))
Austin Schuhb5d302f2019-01-20 20:51:19 -0800622 # Torque constant
623 self.Kt = self.stall_torque / self.stall_current
624 # Motor inertia in kg m^2
625 self.motor_inertia = 0.00001187
626
627
Austin Schuhf173eb82018-01-20 23:32:30 -0800628class BAG(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800629 # BAG motor specs available at http://motors.vex.com/vexpro-motors/bag-motor
630 def __init__(self):
631 # Stall Torque in (N m)
632 self.stall_torque = 0.43
633 # Stall Current in (Amps)
634 self.stall_current = 53.0
635 # Free Speed in (rad/s)
636 self.free_speed = 13180.0 / 60.0 * 2.0 * numpy.pi
637 # Free Current in (Amps)
638 self.free_current = 1.8
639 # Resistance of the motor (Ohms)
640 self.resistance = 12.0 / self.stall_current
641 # Motor velocity constant (radians / (sec * volt))
642 self.Kv = (
643 self.free_speed / (12.0 - self.resistance * self.free_current))
644 # Torque constant (N * m / A)
645 self.Kt = self.stall_torque / self.stall_current
646 # Motor inertia in kg m^2
647 self.motor_inertia = 0.000006
648
Brian Silverman6260c092018-01-14 15:21:36 -0800649
650class MN3510(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800651 def __init__(self):
652 # http://www.robotshop.com/en/t-motor-navigator-mn3510-360kv-brushless-motor.html#Specifications
653 # Free Current in Amps
654 self.free_current = 0.0
655 # Resistance of the motor
656 self.resistance = 0.188
657 # Stall Current in Amps
658 self.stall_current = 14.0 / self.resistance
659 # Motor velocity constant
660 self.Kv = 360.0 / 60.0 * (2.0 * numpy.pi)
661 # Torque constant Nm / A
662 self.Kt = 1.0 / self.Kv
663 # Stall Torque in N m
664 self.stall_torque = self.Kt * self.stall_current
James Kuszmaulef0c18a2020-01-12 15:44:20 -0800665
666
667class Falcon(object):
668 """Class representing the VexPro Falcon 500 motor.
669
670 All numbers based on data from
671 https://www.vexrobotics.com/vexpro/falcon-500."""
672
673 def __init__(self):
674 # Stall Torque in N m
675 self.stall_torque = 4.69
676 # Stall Current in Amps
677 self.stall_current = 257.0
678 # Free Speed in rad / sec
679 self.free_speed = 6380.0 / 60.0 * 2.0 * numpy.pi
680 # Free Current in Amps
681 self.free_current = 1.5
682 # Resistance of the motor, divided by 2 to account for the 2 motors
683 self.resistance = 12.0 / self.stall_current
684 # Motor velocity constant
Ravago Jones26f7ad02021-02-05 15:45:59 -0800685 self.Kv = (
686 self.free_speed / (12.0 - self.resistance * self.free_current))
James Kuszmaulef0c18a2020-01-12 15:44:20 -0800687 # Torque constant
688 self.Kt = self.stall_torque / self.stall_current
Austin Schuhc1c957a2020-02-20 17:47:58 -0800689 # Motor inertia in kg m^2
690 # Diameter of 1.9", weight of: 100 grams
691 # TODO(austin): Get a number from Scott Westbrook for the mass
Ravago Jones26f7ad02021-02-05 15:45:59 -0800692 self.motor_inertia = 0.1 * ((0.95 * 0.0254)**2.0)