blob: 74141c1ac74f12156a6c5d72b7da84c7d8800b2f [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()))
Tyler Chatow6738c362019-02-16 14:12:30 -0800219 fd.write(' return %s(&plants);\n' % self._PlantType())
220 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()))
Tyler Chatow6738c362019-02-16 14:12:30 -0800232 fd.write(' return %s(&controllers);\n' % self._ControllerType())
233 fd.write('}\n\n')
Austin Schuh32501832017-02-25 18:32:56 -0800234
Tyler Chatow6738c362019-02-16 14:12:30 -0800235 fd.write('%s Make%sObserver() {\n' % (self._ObserverType(),
236 self._gain_schedule_name))
237 fd.write(' ::std::vector< ::std::unique_ptr<%s>> observers(%d);\n'
238 % (self._ObserverCoeffType(), len(self._loops)))
239 for index, loop in enumerate(self._loops):
240 fd.write(
241 ' observers[%d] = ::std::unique_ptr<%s>(new %s(%s));\n'
242 % (index, self._ObserverCoeffType(),
243 self._ObserverCoeffType(), loop.ObserverFunction()))
244 fd.write(' return %s(&observers);\n' % self._ObserverType())
245 fd.write('}\n\n')
Austin Schuh32501832017-02-25 18:32:56 -0800246
Tyler Chatow6738c362019-02-16 14:12:30 -0800247 fd.write('%s Make%sLoop() {\n' % (self._LoopType(),
248 self._gain_schedule_name))
249 fd.write(
250 ' return %s(Make%sPlant(), Make%sController(), Make%sObserver());\n'
251 % (self._LoopType(), self._gain_schedule_name,
252 self._gain_schedule_name, self._gain_schedule_name))
253 fd.write('}\n\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700254
Tyler Chatow6738c362019-02-16 14:12:30 -0800255 fd.write(self._namespace_end)
256 fd.write('\n')
Austin Schuhe3490622013-03-13 01:24:30 -0700257
258
Austin Schuh3c542312013-02-24 01:53:50 -0800259class ControlLoop(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800260 def __init__(self, name):
261 """Constructs a control loop object.
Austin Schuh3c542312013-02-24 01:53:50 -0800262
Tyler Chatow6738c362019-02-16 14:12:30 -0800263 Args:
264 name: string, The name of the loop to use when writing the C++ files.
265 """
266 self._name = name
Austin Schuhb5d302f2019-01-20 20:51:19 -0800267
Tyler Chatow6738c362019-02-16 14:12:30 -0800268 @property
269 def name(self):
270 """Returns the name"""
271 return self._name
Austin Schuh3c542312013-02-24 01:53:50 -0800272
Tyler Chatow6738c362019-02-16 14:12:30 -0800273 def ContinuousToDiscrete(self, A_continuous, B_continuous, dt):
274 """Calculates the discrete time values for A and B.
Austin Schuhc1f68892013-03-16 17:06:27 -0700275
Tyler Chatow6738c362019-02-16 14:12:30 -0800276 Args:
277 A_continuous: numpy.matrix, The continuous time A matrix
278 B_continuous: numpy.matrix, The continuous time B matrix
279 dt: float, The time step of the control loop
Austin Schuhc1f68892013-03-16 17:06:27 -0700280
Tyler Chatow6738c362019-02-16 14:12:30 -0800281 Returns:
282 (A, B), numpy.matrix, the control matricies.
283 """
284 return controls.c2d(A_continuous, B_continuous, dt)
Austin Schuh3c542312013-02-24 01:53:50 -0800285
Tyler Chatow6738c362019-02-16 14:12:30 -0800286 def InitializeState(self):
287 """Sets X, Y, and X_hat to zero defaults."""
Austin Schuh43b9ae92020-02-29 23:08:38 -0800288 self.X = numpy.matrix(numpy.zeros((self.A.shape[0], 1)))
Tyler Chatow6738c362019-02-16 14:12:30 -0800289 self.Y = self.C * self.X
Austin Schuh43b9ae92020-02-29 23:08:38 -0800290 self.X_hat = numpy.matrix(numpy.zeros((self.A.shape[0], 1)))
Austin Schuh3c542312013-02-24 01:53:50 -0800291
Tyler Chatow6738c362019-02-16 14:12:30 -0800292 def PlaceControllerPoles(self, poles):
293 """Places the controller poles.
Austin Schuh3c542312013-02-24 01:53:50 -0800294
Tyler Chatow6738c362019-02-16 14:12:30 -0800295 Args:
296 poles: array, An array of poles. Must be complex conjegates if they have
297 any imaginary portions.
298 """
299 self.K = controls.dplace(self.A, self.B, poles)
Austin Schuh3c542312013-02-24 01:53:50 -0800300
Tyler Chatow6738c362019-02-16 14:12:30 -0800301 def PlaceObserverPoles(self, poles):
302 """Places the observer poles.
Austin Schuh3c542312013-02-24 01:53:50 -0800303
Tyler Chatow6738c362019-02-16 14:12:30 -0800304 Args:
305 poles: array, An array of poles. Must be complex conjegates if they have
306 any imaginary portions.
307 """
308 self.L = controls.dplace(self.A.T, self.C.T, poles).T
Sabina Davis3922dfa2018-02-10 23:10:05 -0800309
Tyler Chatow6738c362019-02-16 14:12:30 -0800310 def Update(self, U):
311 """Simulates one time step with the provided U."""
312 #U = numpy.clip(U, self.U_min, self.U_max)
313 self.X = self.A * self.X + self.B * U
314 self.Y = self.C * self.X + self.D * U
Austin Schuh3c542312013-02-24 01:53:50 -0800315
Tyler Chatow6738c362019-02-16 14:12:30 -0800316 def PredictObserver(self, U):
317 """Runs the predict step of the observer update."""
318 self.X_hat = (self.A * self.X_hat + self.B * U)
Austin Schuh1a387962015-01-31 16:36:20 -0800319
Tyler Chatow6738c362019-02-16 14:12:30 -0800320 def CorrectObserver(self, U):
321 """Runs the correct step of the observer update."""
322 if hasattr(self, 'KalmanGain'):
323 KalmanGain = self.KalmanGain
324 else:
325 KalmanGain = numpy.linalg.inv(self.A) * self.L
326 self.X_hat += KalmanGain * (self.Y - self.C * self.X_hat - self.D * U)
Austin Schuh1a387962015-01-31 16:36:20 -0800327
Tyler Chatow6738c362019-02-16 14:12:30 -0800328 def UpdateObserver(self, U):
329 """Updates the observer given the provided U."""
330 if hasattr(self, 'KalmanGain'):
331 KalmanGain = self.KalmanGain
332 else:
333 KalmanGain = numpy.linalg.inv(self.A) * self.L
334 self.X_hat = (self.A * self.X_hat + self.B * U + self.A * KalmanGain *
335 (self.Y - self.C * self.X_hat - self.D * U))
Austin Schuh3c542312013-02-24 01:53:50 -0800336
Tyler Chatow6738c362019-02-16 14:12:30 -0800337 def _DumpMatrix(self, matrix_name, matrix, scalar_type):
338 """Dumps the provided matrix into a variable called matrix_name.
Austin Schuh3c542312013-02-24 01:53:50 -0800339
Tyler Chatow6738c362019-02-16 14:12:30 -0800340 Args:
341 matrix_name: string, The variable name to save the matrix to.
342 matrix: The matrix to dump.
343 scalar_type: The C++ type to use for the scalar in the matrix.
Austin Schuh3c542312013-02-24 01:53:50 -0800344
Tyler Chatow6738c362019-02-16 14:12:30 -0800345 Returns:
346 string, The C++ commands required to populate a variable named matrix_name
347 with the contents of matrix.
348 """
349 ans = [
Ravago Jones26f7ad02021-02-05 15:45:59 -0800350 ' Eigen::Matrix<%s, %d, %d> %s;\n' %
351 (scalar_type, matrix.shape[0], matrix.shape[1], matrix_name)
Tyler Chatow6738c362019-02-16 14:12:30 -0800352 ]
Austin Schuh5ea48472021-02-02 20:46:41 -0800353 for x in range(matrix.shape[0]):
354 for y in range(matrix.shape[1]):
Tyler Chatow6738c362019-02-16 14:12:30 -0800355 write_type = repr(matrix[x, y])
356 if scalar_type == 'float':
Austin Schuh085eab92020-11-26 13:54:51 -0800357 if '.' not in write_type and 'e' not in write_type:
Tyler Chatow6738c362019-02-16 14:12:30 -0800358 write_type += '.0'
359 write_type += 'f'
360 ans.append(
361 ' %s(%d, %d) = %s;\n' % (matrix_name, x, y, write_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800362
Tyler Chatow6738c362019-02-16 14:12:30 -0800363 return ''.join(ans)
Austin Schuh3c542312013-02-24 01:53:50 -0800364
Tyler Chatow6738c362019-02-16 14:12:30 -0800365 def DumpPlantHeader(self, plant_coefficient_type):
366 """Writes out a c++ header declaration which will create a Plant object.
Austin Schuh3c542312013-02-24 01:53:50 -0800367
Tyler Chatow6738c362019-02-16 14:12:30 -0800368 Returns:
369 string, The header declaration for the function.
370 """
371 return '%s Make%sPlantCoefficients();\n' % (plant_coefficient_type,
372 self._name)
Austin Schuh3c542312013-02-24 01:53:50 -0800373
Tyler Chatow6738c362019-02-16 14:12:30 -0800374 def DumpPlant(self, plant_coefficient_type, scalar_type):
375 """Writes out a c++ function which will create a PlantCoefficients object.
Austin Schuh3c542312013-02-24 01:53:50 -0800376
Tyler Chatow6738c362019-02-16 14:12:30 -0800377 Returns:
378 string, The function which will create the object.
379 """
380 ans = [
381 '%s Make%sPlantCoefficients() {\n' % (plant_coefficient_type,
382 self._name)
383 ]
Austin Schuh3c542312013-02-24 01:53:50 -0800384
Tyler Chatow6738c362019-02-16 14:12:30 -0800385 ans.append(self._DumpMatrix('C', self.C, scalar_type))
386 ans.append(self._DumpMatrix('D', self.D, scalar_type))
387 ans.append(self._DumpMatrix('U_max', self.U_max, scalar_type))
388 ans.append(self._DumpMatrix('U_min', self.U_min, scalar_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800389
Tyler Chatow6738c362019-02-16 14:12:30 -0800390 if plant_coefficient_type.startswith('StateFeedbackPlant'):
391 ans.append(self._DumpMatrix('A', self.A, scalar_type))
392 ans.append(self._DumpMatrix('B', self.B, scalar_type))
393 ans.append(
James Kuszmaul03be1242020-02-21 14:52:04 -0800394 ' const std::chrono::nanoseconds dt(%d);\n' % (self.dt * 1e9))
395 ans.append(
Tyler Chatow6738c362019-02-16 14:12:30 -0800396 ' return %s'
James Kuszmaul03be1242020-02-21 14:52:04 -0800397 '(A, B, C, D, U_max, U_min, dt);\n' % (plant_coefficient_type))
Tyler Chatow6738c362019-02-16 14:12:30 -0800398 elif plant_coefficient_type.startswith('StateFeedbackHybridPlant'):
399 ans.append(
400 self._DumpMatrix('A_continuous', self.A_continuous,
401 scalar_type))
402 ans.append(
403 self._DumpMatrix('B_continuous', self.B_continuous,
404 scalar_type))
405 ans.append(' return %s'
406 '(A_continuous, B_continuous, C, D, U_max, U_min);\n' %
407 (plant_coefficient_type))
408 else:
409 glog.fatal('Unsupported plant type %s', plant_coefficient_type)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800410
Tyler Chatow6738c362019-02-16 14:12:30 -0800411 ans.append('}\n')
412 return ''.join(ans)
Austin Schuh3c542312013-02-24 01:53:50 -0800413
Tyler Chatow6738c362019-02-16 14:12:30 -0800414 def PlantFunction(self):
415 """Returns the name of the plant coefficient function."""
416 return 'Make%sPlantCoefficients()' % self._name
Austin Schuh3c542312013-02-24 01:53:50 -0800417
Tyler Chatow6738c362019-02-16 14:12:30 -0800418 def ControllerFunction(self):
419 """Returns the name of the controller function."""
420 return 'Make%sControllerCoefficients()' % self._name
Austin Schuh32501832017-02-25 18:32:56 -0800421
Tyler Chatow6738c362019-02-16 14:12:30 -0800422 def ObserverFunction(self):
423 """Returns the name of the controller function."""
424 return 'Make%sObserverCoefficients()' % self._name
Austin Schuhe3490622013-03-13 01:24:30 -0700425
Tyler Chatow6738c362019-02-16 14:12:30 -0800426 def DumpControllerHeader(self, scalar_type):
427 """Writes out a c++ header declaration which will create a Controller object.
Austin Schuh3c542312013-02-24 01:53:50 -0800428
Tyler Chatow6738c362019-02-16 14:12:30 -0800429 Returns:
430 string, The header declaration for the function.
431 """
432 num_states = self.A.shape[0]
433 num_inputs = self.B.shape[1]
434 num_outputs = self.C.shape[0]
435 return 'StateFeedbackControllerCoefficients<%d, %d, %d, %s> %s;\n' % (
436 num_states, num_inputs, num_outputs, scalar_type,
437 self.ControllerFunction())
Austin Schuh3c542312013-02-24 01:53:50 -0800438
Tyler Chatow6738c362019-02-16 14:12:30 -0800439 def DumpController(self, scalar_type):
440 """Returns a c++ function which will create a Controller object.
Austin Schuh3c542312013-02-24 01:53:50 -0800441
Tyler Chatow6738c362019-02-16 14:12:30 -0800442 Returns:
443 string, The function which will create the object.
444 """
445 num_states = self.A.shape[0]
446 num_inputs = self.B.shape[1]
447 num_outputs = self.C.shape[0]
448 ans = [
449 'StateFeedbackControllerCoefficients<%d, %d, %d, %s> %s {\n' %
450 (num_states, num_inputs, num_outputs, scalar_type,
451 self.ControllerFunction())
452 ]
Austin Schuh3c542312013-02-24 01:53:50 -0800453
Tyler Chatow6738c362019-02-16 14:12:30 -0800454 ans.append(self._DumpMatrix('K', self.K, scalar_type))
455 if not hasattr(self, 'Kff'):
456 self.Kff = numpy.matrix(numpy.zeros(self.K.shape))
Austin Schuh86093ad2016-02-06 14:29:34 -0800457
Tyler Chatow6738c362019-02-16 14:12:30 -0800458 ans.append(self._DumpMatrix('Kff', self.Kff, scalar_type))
Austin Schuh3c542312013-02-24 01:53:50 -0800459
Tyler Chatow6738c362019-02-16 14:12:30 -0800460 ans.append(
461 ' return StateFeedbackControllerCoefficients<%d, %d, %d, %s>'
462 '(K, Kff);\n' % (num_states, num_inputs, num_outputs, scalar_type))
463 ans.append('}\n')
464 return ''.join(ans)
Austin Schuh32501832017-02-25 18:32:56 -0800465
Tyler Chatow6738c362019-02-16 14:12:30 -0800466 def DumpObserverHeader(self, observer_coefficient_type):
467 """Writes out a c++ header declaration which will create a Observer object.
Austin Schuh32501832017-02-25 18:32:56 -0800468
Tyler Chatow6738c362019-02-16 14:12:30 -0800469 Returns:
470 string, The header declaration for the function.
471 """
Ravago Jones26f7ad02021-02-05 15:45:59 -0800472 return '%s %s;\n' % (observer_coefficient_type,
473 self.ObserverFunction())
Austin Schuh32501832017-02-25 18:32:56 -0800474
Tyler Chatow6738c362019-02-16 14:12:30 -0800475 def DumpObserver(self, observer_coefficient_type, scalar_type):
476 """Returns a c++ function which will create a Observer object.
Austin Schuh32501832017-02-25 18:32:56 -0800477
Tyler Chatow6738c362019-02-16 14:12:30 -0800478 Returns:
479 string, The function which will create the object.
480 """
481 ans = [
482 '%s %s {\n' % (observer_coefficient_type, self.ObserverFunction())
483 ]
Austin Schuh32501832017-02-25 18:32:56 -0800484
Tyler Chatow6738c362019-02-16 14:12:30 -0800485 if observer_coefficient_type.startswith('StateFeedbackObserver'):
486 if hasattr(self, 'KalmanGain'):
487 KalmanGain = self.KalmanGain
488 Q = self.Q
489 R = self.R
490 else:
491 KalmanGain = numpy.linalg.inv(self.A) * self.L
492 Q = numpy.zeros(self.A.shape)
493 R = numpy.zeros((self.C.shape[0], self.C.shape[0]))
494 ans.append(self._DumpMatrix('KalmanGain', KalmanGain, scalar_type))
495 ans.append(self._DumpMatrix('Q', Q, scalar_type))
496 ans.append(self._DumpMatrix('R', R, scalar_type))
497 ans.append(' return %s(KalmanGain, Q, R);\n' %
Ravago Jones26f7ad02021-02-05 15:45:59 -0800498 (observer_coefficient_type, ))
Sabina Davis3922dfa2018-02-10 23:10:05 -0800499
Tyler Chatow6738c362019-02-16 14:12:30 -0800500 elif observer_coefficient_type.startswith('HybridKalman'):
501 ans.append(
502 self._DumpMatrix('Q_continuous', self.Q_continuous,
503 scalar_type))
504 ans.append(
505 self._DumpMatrix('R_continuous', self.R_continuous,
506 scalar_type))
507 ans.append(
508 self._DumpMatrix('P_steady_state', self.P_steady_state,
509 scalar_type))
510 ans.append(
511 ' return %s(Q_continuous, R_continuous, P_steady_state);\n' %
Ravago Jones26f7ad02021-02-05 15:45:59 -0800512 (observer_coefficient_type, ))
Tyler Chatow6738c362019-02-16 14:12:30 -0800513 else:
514 glog.fatal('Unsupported observer type %s',
515 observer_coefficient_type)
Austin Schuh32501832017-02-25 18:32:56 -0800516
Tyler Chatow6738c362019-02-16 14:12:30 -0800517 ans.append('}\n')
518 return ''.join(ans)
519
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800520
521class HybridControlLoop(ControlLoop):
Tyler Chatow6738c362019-02-16 14:12:30 -0800522 def __init__(self, name):
523 super(HybridControlLoop, self).__init__(name=name)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800524
Tyler Chatow6738c362019-02-16 14:12:30 -0800525 def Discretize(self, dt):
526 [self.A, self.B, self.Q, self.R] = \
527 controls.kalmd(self.A_continuous, self.B_continuous,
528 self.Q_continuous, self.R_continuous, dt)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800529
Tyler Chatow6738c362019-02-16 14:12:30 -0800530 def PredictHybridObserver(self, U, dt):
531 self.Discretize(dt)
532 self.X_hat = self.A * self.X_hat + self.B * U
533 self.P = (self.A * self.P * self.A.T + self.Q)
Austin Schuh3ad5ed82017-02-25 21:36:19 -0800534
Tyler Chatow6738c362019-02-16 14:12:30 -0800535 def CorrectHybridObserver(self, U):
536 Y_bar = self.Y - self.C * self.X_hat
537 C_t = self.C.T
538 S = self.C * self.P * C_t + self.R
539 self.KalmanGain = self.P * C_t * numpy.linalg.inv(S)
540 self.X_hat = self.X_hat + self.KalmanGain * Y_bar
541 self.P = (numpy.eye(len(self.A)) - self.KalmanGain * self.C) * self.P
542
543 def InitializeState(self):
544 super(HybridControlLoop, self).InitializeState()
545 if hasattr(self, 'Q_steady_state'):
546 self.P = self.Q_steady_state
547 else:
548 self.P = numpy.matrix(
549 numpy.zeros((self.A.shape[0], self.A.shape[0])))
Campbell Crowley33e0e3d2017-12-27 17:55:40 -0800550
551
552class CIM(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800553 def __init__(self):
554 # Stall Torque in N m
555 self.stall_torque = 2.42
556 # Stall Current in Amps
557 self.stall_current = 133.0
558 # Free Speed in rad/s
559 self.free_speed = 5500.0 / 60.0 * 2.0 * numpy.pi
560 # Free Current in Amps
561 self.free_current = 4.7
562 # Resistance of the motor
563 self.resistance = 12.0 / self.stall_current
564 # Motor velocity constant
565 self.Kv = (
566 self.free_speed / (12.0 - self.resistance * self.free_current))
567 # Torque constant
568 self.Kt = self.stall_torque / self.stall_current
Lee Mracek97fc8af2018-01-13 04:38:52 -0500569
570
571class MiniCIM(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800572 def __init__(self):
573 # Stall Torque in N m
574 self.stall_torque = 1.41
575 # Stall Current in Amps
576 self.stall_current = 89.0
577 # Free Speed in rad/s
578 self.free_speed = 5840.0 / 60.0 * 2.0 * numpy.pi
579 # Free Current in Amps
580 self.free_current = 3.0
581 # Resistance of the motor
582 self.resistance = 12.0 / self.stall_current
583 # Motor velocity constant
584 self.Kv = (
585 self.free_speed / (12.0 - self.resistance * self.free_current))
586 # Torque constant
587 self.Kt = self.stall_torque / self.stall_current
Austin Schuhf173eb82018-01-20 23:32:30 -0800588
589
Austin Schuhb5d302f2019-01-20 20:51:19 -0800590class NMotor(object):
591 def __init__(self, motor, n):
592 """Gangs together n motors."""
593 self.motor = motor
594 self.stall_torque = motor.stall_torque * n
595 self.stall_current = motor.stall_current * n
596 self.free_speed = motor.free_speed
597
598 self.free_current = motor.free_current * n
599 self.resistance = motor.resistance / n
600 self.Kv = motor.Kv
601 self.Kt = motor.Kt
Austin Schuh36bb8e32019-02-18 15:02:57 -0800602 self.motor_inertia = motor.motor_inertia * n
Austin Schuhb5d302f2019-01-20 20:51:19 -0800603
604
605class Vex775Pro(object):
606 def __init__(self):
607 # Stall Torque in N m
608 self.stall_torque = 0.71
609 # Stall Current in Amps
610 self.stall_current = 134.0
611 # Free Speed in rad/s
612 self.free_speed = 18730.0 / 60.0 * 2.0 * numpy.pi
613 # Free Current in Amps
614 self.free_current = 0.7
615 # Resistance of the motor
616 self.resistance = 12.0 / self.stall_current
617 # Motor velocity constant
Tyler Chatow6738c362019-02-16 14:12:30 -0800618 self.Kv = (
619 self.free_speed / (12.0 - self.resistance * self.free_current))
Austin Schuhb5d302f2019-01-20 20:51:19 -0800620 # Torque constant
621 self.Kt = self.stall_torque / self.stall_current
622 # Motor inertia in kg m^2
623 self.motor_inertia = 0.00001187
624
625
Austin Schuhf173eb82018-01-20 23:32:30 -0800626class BAG(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800627 # BAG motor specs available at http://motors.vex.com/vexpro-motors/bag-motor
628 def __init__(self):
629 # Stall Torque in (N m)
630 self.stall_torque = 0.43
631 # Stall Current in (Amps)
632 self.stall_current = 53.0
633 # Free Speed in (rad/s)
634 self.free_speed = 13180.0 / 60.0 * 2.0 * numpy.pi
635 # Free Current in (Amps)
636 self.free_current = 1.8
637 # Resistance of the motor (Ohms)
638 self.resistance = 12.0 / self.stall_current
639 # Motor velocity constant (radians / (sec * volt))
640 self.Kv = (
641 self.free_speed / (12.0 - self.resistance * self.free_current))
642 # Torque constant (N * m / A)
643 self.Kt = self.stall_torque / self.stall_current
644 # Motor inertia in kg m^2
645 self.motor_inertia = 0.000006
646
Brian Silverman6260c092018-01-14 15:21:36 -0800647
648class MN3510(object):
Tyler Chatow6738c362019-02-16 14:12:30 -0800649 def __init__(self):
650 # http://www.robotshop.com/en/t-motor-navigator-mn3510-360kv-brushless-motor.html#Specifications
651 # Free Current in Amps
652 self.free_current = 0.0
653 # Resistance of the motor
654 self.resistance = 0.188
655 # Stall Current in Amps
656 self.stall_current = 14.0 / self.resistance
657 # Motor velocity constant
658 self.Kv = 360.0 / 60.0 * (2.0 * numpy.pi)
659 # Torque constant Nm / A
660 self.Kt = 1.0 / self.Kv
661 # Stall Torque in N m
662 self.stall_torque = self.Kt * self.stall_current
James Kuszmaulef0c18a2020-01-12 15:44:20 -0800663
664
665class Falcon(object):
666 """Class representing the VexPro Falcon 500 motor.
667
668 All numbers based on data from
669 https://www.vexrobotics.com/vexpro/falcon-500."""
670
671 def __init__(self):
672 # Stall Torque in N m
673 self.stall_torque = 4.69
674 # Stall Current in Amps
675 self.stall_current = 257.0
676 # Free Speed in rad / sec
677 self.free_speed = 6380.0 / 60.0 * 2.0 * numpy.pi
678 # Free Current in Amps
679 self.free_current = 1.5
680 # Resistance of the motor, divided by 2 to account for the 2 motors
681 self.resistance = 12.0 / self.stall_current
682 # Motor velocity constant
Ravago Jones26f7ad02021-02-05 15:45:59 -0800683 self.Kv = (
684 self.free_speed / (12.0 - self.resistance * self.free_current))
James Kuszmaulef0c18a2020-01-12 15:44:20 -0800685 # Torque constant
686 self.Kt = self.stall_torque / self.stall_current
Austin Schuhc1c957a2020-02-20 17:47:58 -0800687 # Motor inertia in kg m^2
688 # Diameter of 1.9", weight of: 100 grams
689 # TODO(austin): Get a number from Scott Westbrook for the mass
Ravago Jones26f7ad02021-02-05 15:45:59 -0800690 self.motor_inertia = 0.1 * ((0.95 * 0.0254)**2.0)