Austin Schuh | ce7e03d | 2020-11-20 22:32:44 -0800 | [diff] [blame] | 1 | import frc971.control_loops.python.controls as controls |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 2 | import numpy |
Austin Schuh | 572ff40 | 2015-11-08 12:17:50 -0800 | [diff] [blame] | 3 | import os |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 4 | |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 5 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 6 | class Constant(object): |
Austin Schuh | e8ca06a | 2020-03-07 22:27:39 -0800 | [diff] [blame] | 7 | def __init__(self, name, formatt, value, comment=None): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 8 | 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 Schuh | e8ca06a | 2020-03-07 22:27:39 -0800 | [diff] [blame] | 14 | if comment is None: |
| 15 | self.comment = "" |
| 16 | else: |
| 17 | self.comment = comment + "\n" |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 18 | |
| 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 Schuh | e8ca06a | 2020-03-07 22:27:39 -0800 | [diff] [blame] | 23 | return str("\n%sstatic constexpr %s %s = "+ self.formatt +";\n") % \ |
| 24 | (self.comment, typestring, self.name, self.value) |
Ben Fredrickson | 1b45f78 | 2014-02-23 07:44:36 +0000 | [diff] [blame] | 25 | |
| 26 | |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 27 | class ControlLoopWriter(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 28 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 37 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 38 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 54 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 55 | self._namespace_start = '\n'.join( |
| 56 | ['namespace %s {' % name for name in self._namespaces]) |
Austin Schuh | 86093ad | 2016-02-06 14:29:34 -0800 | [diff] [blame] | 57 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 58 | self._namespace_end = '\n'.join([ |
| 59 | '} // namespace %s' % name for name in reversed(self._namespaces) |
| 60 | ]) |
Austin Schuh | 2593385 | 2014-02-23 02:04:13 -0800 | [diff] [blame] | 61 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 62 | self._constant_list = [] |
| 63 | self._plant_type = plant_type |
| 64 | self._observer_type = observer_type |
| 65 | self._scalar_type = scalar_type |
Austin Schuh | 2593385 | 2014-02-23 02:04:13 -0800 | [diff] [blame] | 66 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 67 | def AddConstant(self, constant): |
| 68 | """Adds a constant to write. |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 69 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 70 | Args: |
| 71 | constant: Constant, the constant to add to the header. |
| 72 | """ |
| 73 | self._constant_list.append(constant) |
Brian Silverman | e51ad63 | 2014-01-08 15:12:29 -0800 | [diff] [blame] | 74 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 75 | def _TopDirectory(self): |
| 76 | return self._namespaces[0] |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 77 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 78 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 82 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 83 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 87 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 88 | 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 Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 101 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 102 | def _ControllerType(self): |
| 103 | """Returns a template name for StateFeedbackController.""" |
| 104 | return self._GenericType('StateFeedbackController') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 105 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 106 | def _ObserverType(self): |
| 107 | """Returns a template name for StateFeedbackObserver.""" |
| 108 | return self._GenericType(self._observer_type) |
Austin Schuh | 20388b6 | 2017-11-23 22:40:46 -0800 | [diff] [blame] | 109 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 110 | 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 Schuh | 20388b6 | 2017-11-23 22:40:46 -0800 | [diff] [blame] | 115 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 116 | return 'StateFeedbackLoop<%d, %d, %d, %s, %s, %s>' % ( |
| 117 | num_states, num_inputs, num_outputs, self._scalar_type, |
| 118 | self._PlantType(), self._ObserverType()) |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 119 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 120 | def _PlantType(self): |
| 121 | """Returns a template name for StateFeedbackPlant.""" |
| 122 | return self._GenericType(self._plant_type) |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 123 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 124 | def _PlantCoeffType(self): |
| 125 | """Returns a template name for StateFeedbackPlantCoefficients.""" |
| 126 | return self._GenericType(self._plant_type + 'Coefficients') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 127 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 128 | def _ControllerCoeffType(self): |
| 129 | """Returns a template name for StateFeedbackControllerCoefficients.""" |
| 130 | return self._GenericType('StateFeedbackControllerCoefficients') |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 131 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 132 | def _ObserverCoeffType(self): |
| 133 | """Returns a template name for StateFeedbackObserverCoefficients.""" |
| 134 | return self._GenericType(self._observer_type + 'Coefficients') |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 135 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 136 | 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 144 | if (self._plant_type == 'StateFeedbackHybridPlant' |
| 145 | or self._observer_type == 'HybridKalman'): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 146 | fd.write( |
| 147 | '#include \"frc971/control_loops/hybrid_state_feedback_loop.h\"\n' |
| 148 | ) |
Austin Schuh | 4cc4fe2 | 2017-11-23 19:13:09 -0800 | [diff] [blame] | 149 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 150 | fd.write('\n') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 151 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 152 | fd.write(self._namespace_start) |
Ben Fredrickson | 1b45f78 | 2014-02-23 07:44:36 +0000 | [diff] [blame] | 153 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 154 | for const in self._constant_list: |
| 155 | fd.write(const.Render(self._scalar_type)) |
Ben Fredrickson | 1b45f78 | 2014-02-23 07:44:36 +0000 | [diff] [blame] | 156 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 157 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 165 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 166 | fd.write('%s Make%sPlant();\n\n' % (self._PlantType(), |
| 167 | self._gain_schedule_name)) |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 168 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 169 | fd.write('%s Make%sController();\n\n' % (self._ControllerType(), |
| 170 | self._gain_schedule_name)) |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 171 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 172 | fd.write('%s Make%sObserver();\n\n' % (self._ObserverType(), |
| 173 | self._gain_schedule_name)) |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 174 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 175 | fd.write('%s Make%sLoop();\n\n' % (self._LoopType(), |
| 176 | self._gain_schedule_name)) |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 177 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 178 | fd.write(self._namespace_end) |
| 179 | fd.write('\n\n') |
| 180 | fd.write("#endif // %s\n" % header_guard) |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 181 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 182 | 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 Kuszmaul | 03be124 | 2020-02-21 14:52:04 -0800 | [diff] [blame] | 188 | fd.write('#include <chrono>\n') |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 189 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 200 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 201 | for loop in self._loops: |
| 202 | fd.write(loop.DumpController(self._scalar_type)) |
| 203 | fd.write('\n') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 204 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 205 | for loop in self._loops: |
| 206 | fd.write( |
| 207 | loop.DumpObserver(self._ObserverCoeffType(), |
| 208 | self._scalar_type)) |
| 209 | fd.write('\n') |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 210 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 211 | 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 216 | fd.write(' plants[%d] = ::std::unique_ptr<%s>(new %s(%s));\n' |
| 217 | % (index, self._PlantCoeffType(), |
| 218 | self._PlantCoeffType(), loop.PlantFunction())) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 219 | fd.write(' return %s(&plants);\n' % self._PlantType()) |
| 220 | fd.write('}\n\n') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 221 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 222 | 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 229 | ' controllers[%d] = ::std::unique_ptr<%s>(new %s(%s));\n' |
| 230 | % (index, self._ControllerCoeffType(), |
| 231 | self._ControllerCoeffType(), loop.ControllerFunction())) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 232 | fd.write(' return %s(&controllers);\n' % self._ControllerType()) |
| 233 | fd.write('}\n\n') |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 234 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 235 | 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 Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 246 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 247 | 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 Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 254 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 255 | fd.write(self._namespace_end) |
| 256 | fd.write('\n') |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 257 | |
| 258 | |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 259 | class ControlLoop(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 260 | def __init__(self, name): |
| 261 | """Constructs a control loop object. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 262 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 263 | Args: |
| 264 | name: string, The name of the loop to use when writing the C++ files. |
| 265 | """ |
| 266 | self._name = name |
Austin Schuh | b5d302f | 2019-01-20 20:51:19 -0800 | [diff] [blame] | 267 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 268 | @property |
| 269 | def name(self): |
| 270 | """Returns the name""" |
| 271 | return self._name |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 272 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 273 | def ContinuousToDiscrete(self, A_continuous, B_continuous, dt): |
| 274 | """Calculates the discrete time values for A and B. |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 275 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 276 | 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 Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 280 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 281 | Returns: |
| 282 | (A, B), numpy.matrix, the control matricies. |
| 283 | """ |
| 284 | return controls.c2d(A_continuous, B_continuous, dt) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 285 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 286 | def InitializeState(self): |
| 287 | """Sets X, Y, and X_hat to zero defaults.""" |
Austin Schuh | 43b9ae9 | 2020-02-29 23:08:38 -0800 | [diff] [blame] | 288 | self.X = numpy.matrix(numpy.zeros((self.A.shape[0], 1))) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 289 | self.Y = self.C * self.X |
Austin Schuh | 43b9ae9 | 2020-02-29 23:08:38 -0800 | [diff] [blame] | 290 | self.X_hat = numpy.matrix(numpy.zeros((self.A.shape[0], 1))) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 291 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 292 | def PlaceControllerPoles(self, poles): |
| 293 | """Places the controller poles. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 294 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 295 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 300 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 301 | def PlaceObserverPoles(self, poles): |
| 302 | """Places the observer poles. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 303 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 304 | 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 Davis | 3922dfa | 2018-02-10 23:10:05 -0800 | [diff] [blame] | 309 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 310 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 315 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 316 | 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 Schuh | 1a38796 | 2015-01-31 16:36:20 -0800 | [diff] [blame] | 319 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 320 | 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 Schuh | 1a38796 | 2015-01-31 16:36:20 -0800 | [diff] [blame] | 327 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 328 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 336 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 337 | def _DumpMatrix(self, matrix_name, matrix, scalar_type): |
| 338 | """Dumps the provided matrix into a variable called matrix_name. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 339 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 340 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 344 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 345 | Returns: |
| 346 | string, The C++ commands required to populate a variable named matrix_name |
| 347 | with the contents of matrix. |
| 348 | """ |
| 349 | ans = [ |
Ravago Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 350 | ' Eigen::Matrix<%s, %d, %d> %s;\n' % |
| 351 | (scalar_type, matrix.shape[0], matrix.shape[1], matrix_name) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 352 | ] |
Austin Schuh | 5ea4847 | 2021-02-02 20:46:41 -0800 | [diff] [blame] | 353 | for x in range(matrix.shape[0]): |
| 354 | for y in range(matrix.shape[1]): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 355 | write_type = repr(matrix[x, y]) |
| 356 | if scalar_type == 'float': |
Austin Schuh | 085eab9 | 2020-11-26 13:54:51 -0800 | [diff] [blame] | 357 | if '.' not in write_type and 'e' not in write_type: |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 358 | write_type += '.0' |
| 359 | write_type += 'f' |
| 360 | ans.append( |
| 361 | ' %s(%d, %d) = %s;\n' % (matrix_name, x, y, write_type)) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 362 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 363 | return ''.join(ans) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 364 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 365 | def DumpPlantHeader(self, plant_coefficient_type): |
| 366 | """Writes out a c++ header declaration which will create a Plant object. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 367 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 368 | Returns: |
| 369 | string, The header declaration for the function. |
| 370 | """ |
| 371 | return '%s Make%sPlantCoefficients();\n' % (plant_coefficient_type, |
| 372 | self._name) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 373 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 374 | def DumpPlant(self, plant_coefficient_type, scalar_type): |
| 375 | """Writes out a c++ function which will create a PlantCoefficients object. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 376 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 377 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 384 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 385 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 389 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 390 | 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 Kuszmaul | 03be124 | 2020-02-21 14:52:04 -0800 | [diff] [blame] | 394 | ' const std::chrono::nanoseconds dt(%d);\n' % (self.dt * 1e9)) |
| 395 | ans.append( |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 396 | ' return %s' |
James Kuszmaul | 03be124 | 2020-02-21 14:52:04 -0800 | [diff] [blame] | 397 | '(A, B, C, D, U_max, U_min, dt);\n' % (plant_coefficient_type)) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 398 | 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 Schuh | 3ad5ed8 | 2017-02-25 21:36:19 -0800 | [diff] [blame] | 410 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 411 | ans.append('}\n') |
| 412 | return ''.join(ans) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 413 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 414 | def PlantFunction(self): |
| 415 | """Returns the name of the plant coefficient function.""" |
| 416 | return 'Make%sPlantCoefficients()' % self._name |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 417 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 418 | def ControllerFunction(self): |
| 419 | """Returns the name of the controller function.""" |
| 420 | return 'Make%sControllerCoefficients()' % self._name |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 421 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 422 | def ObserverFunction(self): |
| 423 | """Returns the name of the controller function.""" |
| 424 | return 'Make%sObserverCoefficients()' % self._name |
Austin Schuh | e349062 | 2013-03-13 01:24:30 -0700 | [diff] [blame] | 425 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 426 | def DumpControllerHeader(self, scalar_type): |
| 427 | """Writes out a c++ header declaration which will create a Controller object. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 428 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 429 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 438 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 439 | def DumpController(self, scalar_type): |
| 440 | """Returns a c++ function which will create a Controller object. |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 441 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 442 | 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 Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 453 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 454 | 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 Schuh | 86093ad | 2016-02-06 14:29:34 -0800 | [diff] [blame] | 457 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 458 | ans.append(self._DumpMatrix('Kff', self.Kff, scalar_type)) |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 459 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 460 | 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 Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 465 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 466 | def DumpObserverHeader(self, observer_coefficient_type): |
| 467 | """Writes out a c++ header declaration which will create a Observer object. |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 468 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 469 | Returns: |
| 470 | string, The header declaration for the function. |
| 471 | """ |
Ravago Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 472 | return '%s %s;\n' % (observer_coefficient_type, |
| 473 | self.ObserverFunction()) |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 474 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 475 | def DumpObserver(self, observer_coefficient_type, scalar_type): |
| 476 | """Returns a c++ function which will create a Observer object. |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 477 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 478 | Returns: |
| 479 | string, The function which will create the object. |
| 480 | """ |
| 481 | ans = [ |
| 482 | '%s %s {\n' % (observer_coefficient_type, self.ObserverFunction()) |
| 483 | ] |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 484 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 485 | 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 498 | (observer_coefficient_type, )) |
Sabina Davis | 3922dfa | 2018-02-10 23:10:05 -0800 | [diff] [blame] | 499 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 500 | 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 512 | (observer_coefficient_type, )) |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 513 | else: |
| 514 | glog.fatal('Unsupported observer type %s', |
| 515 | observer_coefficient_type) |
Austin Schuh | 3250183 | 2017-02-25 18:32:56 -0800 | [diff] [blame] | 516 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 517 | ans.append('}\n') |
| 518 | return ''.join(ans) |
| 519 | |
Austin Schuh | 3ad5ed8 | 2017-02-25 21:36:19 -0800 | [diff] [blame] | 520 | |
| 521 | class HybridControlLoop(ControlLoop): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 522 | def __init__(self, name): |
| 523 | super(HybridControlLoop, self).__init__(name=name) |
Austin Schuh | 3ad5ed8 | 2017-02-25 21:36:19 -0800 | [diff] [blame] | 524 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 525 | 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 Schuh | 3ad5ed8 | 2017-02-25 21:36:19 -0800 | [diff] [blame] | 529 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 530 | 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 Schuh | 3ad5ed8 | 2017-02-25 21:36:19 -0800 | [diff] [blame] | 534 | |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 535 | 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 Crowley | 33e0e3d | 2017-12-27 17:55:40 -0800 | [diff] [blame] | 550 | |
| 551 | |
| 552 | class CIM(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 553 | 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 Mracek | 97fc8af | 2018-01-13 04:38:52 -0500 | [diff] [blame] | 569 | |
| 570 | |
| 571 | class MiniCIM(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 572 | 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 Schuh | f173eb8 | 2018-01-20 23:32:30 -0800 | [diff] [blame] | 588 | |
| 589 | |
Austin Schuh | b5d302f | 2019-01-20 20:51:19 -0800 | [diff] [blame] | 590 | class 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 Schuh | 36bb8e3 | 2019-02-18 15:02:57 -0800 | [diff] [blame] | 602 | self.motor_inertia = motor.motor_inertia * n |
Austin Schuh | b5d302f | 2019-01-20 20:51:19 -0800 | [diff] [blame] | 603 | |
| 604 | |
| 605 | class 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 Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 618 | self.Kv = ( |
| 619 | self.free_speed / (12.0 - self.resistance * self.free_current)) |
Austin Schuh | b5d302f | 2019-01-20 20:51:19 -0800 | [diff] [blame] | 620 | # 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 Schuh | f173eb8 | 2018-01-20 23:32:30 -0800 | [diff] [blame] | 626 | class BAG(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 627 | # 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 Silverman | 6260c09 | 2018-01-14 15:21:36 -0800 | [diff] [blame] | 647 | |
| 648 | class MN3510(object): |
Tyler Chatow | 6738c36 | 2019-02-16 14:12:30 -0800 | [diff] [blame] | 649 | 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 Kuszmaul | ef0c18a | 2020-01-12 15:44:20 -0800 | [diff] [blame] | 663 | |
| 664 | |
| 665 | class 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 683 | self.Kv = ( |
| 684 | self.free_speed / (12.0 - self.resistance * self.free_current)) |
James Kuszmaul | ef0c18a | 2020-01-12 15:44:20 -0800 | [diff] [blame] | 685 | # Torque constant |
| 686 | self.Kt = self.stall_torque / self.stall_current |
Austin Schuh | c1c957a | 2020-02-20 17:47:58 -0800 | [diff] [blame] | 687 | # 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 Jones | 26f7ad0 | 2021-02-05 15:45:59 -0800 | [diff] [blame] | 690 | self.motor_inertia = 0.1 * ((0.95 * 0.0254)**2.0) |