TMotor
TMotorMITCANActuator
¶
Bases: ActuatorBase
, TMotorManager_mit_can
The user-facing class that manages the motor. This class should be used in the context of a with as block, in order to safely enter/exit control of the motor.
Source code in opensourceleg/actuators/tmotor.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
|
case_temperature: float
property
¶
Returns: The most recently updated motor temperature in degrees C.
motor_acceleration: float
property
¶
Wrapper for get_output_acceleration that accounts for gear ratio to get motor-side acceleration
Returns:
Type | Description |
---|---|
float
|
The most recently updated motor-side acceleration in rad/s/s. |
motor_current: float
property
¶
Returns: The most recently updated qaxis current in amps
motor_position: float
property
¶
Wrapper for get_output_angle that accounts for gear ratio to get motor-side angle
Returns:
Type | Description |
---|---|
float
|
The most recently updated motor-side angle in rad. |
motor_torque: float
property
¶
Wrapper for get_output_torque that accounts for gear ratio to get motor-side torque
Returns:
Type | Description |
---|---|
float
|
The most recently updated motor-side torque in Nm. |
motor_velocity: float
property
¶
Wrapper for get_output_velocity that accounts for gear ratio to get motor-side velocity
Returns:
Type | Description |
---|---|
float
|
The most recently updated motor-side velocity in rad/s. |
output_acceleration: float
property
¶
Returns:
Type | Description |
---|---|
float
|
The most recently updated output acceleration in radians per second per second |
output_position: float
property
¶
Returns: The most recently updated output angle in radians
output_torque: float
property
¶
Returns:
Type | Description |
---|---|
float
|
the most recently updated output torque in Nm |
output_velocity: float
property
¶
Returns:
Type | Description |
---|---|
float
|
The most recently updated output velocity in radians per second |
winding_temperature: float
property
¶
ESTIMATED temperature of the windings in celsius. This is calculated based on the thermal model using motor current.
__init__(tag='TMotorActuator', motor_type='AK80-9', motor_ID=41, gear_ratio=1.0, frequency=500, offline=False, max_mosfett_temp=50)
¶
Sets up the motor manager. Note the device will not be powered on by this method! You must call enter, mostly commonly by using a with block, before attempting to control the motor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag |
str
|
A string tag to identify the motor |
'TMotorActuator'
|
motor_type |
str
|
The type of motor to control. Must be a key in MIT_Params. |
'AK80-9'
|
motor_ID |
int
|
The ID of the motor to control. |
41
|
gear_ratio |
float
|
The gear ratio of the motor. Default is 1.0. |
1.0
|
frequency |
int
|
The frequency at which to send commands to the motor. Default is 500. |
500
|
offline |
bool
|
Whether to run the motor in offline mode. Default is False. |
False
|
max_mosfett_temp |
float
|
The maximum temperature of the mosfet in degrees C. Default is 50. |
50
|
Source code in opensourceleg/actuators/tmotor.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
__str__()
¶
Prints the motor's device info and current
Source code in opensourceleg/actuators/tmotor.py
check_can_connection()
¶
Checks the motor's connection by attempting to send 10 startup messages. If it gets 10 replies, then the connection is confirmed.
Returns:
Type | Description |
---|---|
bool
|
True if a connection is established and False otherwise. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If the motor control has not been entered. |
Source code in opensourceleg/actuators/tmotor.py
set_current_gains(kp=40, ki=400, ff=128, spoof=False)
¶
Uses plain current mode, will send 0.0 for position gains in addition to requested current.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kp |
float
|
A dummy argument for backward compatibility with the dephy library. |
40
|
ki |
float
|
A dummy argument for backward compatibility with the dephy library. |
400
|
ff |
float
|
A dummy argument for backward compatibility with the dephy library. |
128
|
spoof |
bool
|
A dummy argument for backward compatibility with the dephy library. |
False
|
Source code in opensourceleg/actuators/tmotor.py
set_impedance_gains(kp=0, ki=0, K=0.08922, B=0.003807, ff=0)
¶
Uses plain impedance mode, will send 0.0 for current command in addition to position request.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kp |
float
|
A dummy argument for backward compatibility with the dephy library. |
0
|
ki |
float
|
A dummy argument for backward compatibility with the dephy library. |
0
|
K |
float
|
The stiffness in Nm/rad |
0.08922
|
B |
float
|
The damping in Nm/(rad/s) |
0.003807
|
ff |
float
|
A dummy argument for backward compatibility with the dephy library. |
0
|
Source code in opensourceleg/actuators/tmotor.py
set_motor_current(value)
¶
Used for either current or full state feedback mode to set current command. Note, this does not send a command, it updates the TMotorManager's saved command, which will be sent when update() is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
the desired current in amps. |
required |
Source code in opensourceleg/actuators/tmotor.py
set_motor_position(value)
¶
Wrapper for set_output_angle that accounts for gear ratio to control motor-side angle
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired motor position in rad. |
required |
Source code in opensourceleg/actuators/tmotor.py
set_motor_torque(value)
¶
Version of set_output_torque that accounts for gear ratio to control motor-side torque
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired motor torque in Nm. |
required |
Source code in opensourceleg/actuators/tmotor.py
set_motor_velocity(value)
¶
Wrapper for set_output_velocity that accounts for gear ratio to control motor-side velocity
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired motor velocity in rad/s. |
required |
Source code in opensourceleg/actuators/tmotor.py
set_output_position(value)
¶
Used for either impedance or full state feedback mode to set output angle command. Note, this does not send a command, it updates the TMotorManager's saved command, which will be sent when update() is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired output position in rads |
required |
Raises:
Type | Description |
---|---|
RuntimeError
|
If the position command is outside the range of the motor. |
Source code in opensourceleg/actuators/tmotor.py
set_output_torque(value)
¶
Used for either current or MIT Mode to set current, based on desired torque. If a more complicated torque model is available for the motor, that will be used. Otherwise it will just use the motor's torque constant.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired output torque in Nm. |
required |
Source code in opensourceleg/actuators/tmotor.py
set_output_velocity(value)
¶
Used for either speed or full state feedback mode to set output velocity command. Note, this does not send a command, it updates the TMotorManager's saved command, which will be sent when update() is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The desired output speed in rad/s |
required |
Raises:
Type | Description |
---|---|
RuntimeError
|
If the velocity command is outside the range of the motor. |
Source code in opensourceleg/actuators/tmotor.py
set_velocity_gains(kd=1.0)
¶
Uses plain speed mode, will send 0.0 for position gain and for feed forward current.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kd |
float
|
The gain for the speed controller. Control law will be (v_des - v_actual)*kd = iq |
1.0
|
Source code in opensourceleg/actuators/tmotor.py
start()
¶
Used to safely power the motor on and begin the log file (if specified).
Source code in opensourceleg/actuators/tmotor.py
stop()
¶
Used to safely power the motor off and close the log file (if specified).
Source code in opensourceleg/actuators/tmotor.py
update()
¶
This method is called by the user to synchronize the current state used by the controller with the most recent message recieved, as well as to send the current command.
Source code in opensourceleg/actuators/tmotor.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|