2009:Traction control function: Difference between revisions
From 1511Wookiee
Jump to navigationJump to search
Programming (talk | contribs) No edit summary |
Programming (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
= Traction control function = | = Traction control function = | ||
=== Requirements<br> === | === Requirements<br> === | ||
#When a wheel or wheels start slipping, stop the slipping and regain traction | #When a wheel or wheels start slipping, stop the slipping and regain traction | ||
#Allow for special cases such as when one or two wheels is on carpet. | #Allow for special cases such as when one or two wheels is on carpet. | ||
<br> | <br> | ||
=== Assumptions === | === Assumptions === | ||
Line 14: | Line 14: | ||
#We do not know robot speed nor direction. | #We do not know robot speed nor direction. | ||
<br> | <br> | ||
=== Research === | === Research === | ||
Research shows the options available to us include: | Research shows the options available to us include: | ||
#Reducing power to all wheels | #Reducing power to all wheels | ||
#Reducing power to the wheel (or wheels) that are slipping | #Reducing power to the wheel (or wheels) that are slipping | ||
Option #2 is our currently preferred option. | Option #2 is our currently preferred option. | ||
Link: [http://en.wikipedia.org/wiki/Traction_control_system en.wikipedia.org/wiki/Traction_control_system]<br> | |||
=== Ideas === | === Ideas === | ||
Line 31: | Line 31: | ||
#Compare left-front vs. left-rear wheels. If one wheel is significantly faster than the other, assume it is slipping. Reduce power to the slipping wheel for xxx milliseconds then restore restore full power. Perform same check for right-front vs. right-rear. | #Compare left-front vs. left-rear wheels. If one wheel is significantly faster than the other, assume it is slipping. Reduce power to the slipping wheel for xxx milliseconds then restore restore full power. Perform same check for right-front vs. right-rear. | ||
<br> | <br> | ||
=== Design | === Design === |
Revision as of 16:49, 14 January 2009
Traction control function
Requirements
- When a wheel or wheels start slipping, stop the slipping and regain traction
- Allow for special cases such as when one or two wheels is on carpet.
Assumptions
- We know the power values (L drive and R drive) we gave to the motors
- Our only sensor input is the actual motor speed of each of four motors.
- We do not know robot speed nor direction.
Research
Research shows the options available to us include:
- Reducing power to all wheels
- Reducing power to the wheel (or wheels) that are slipping
Option #2 is our currently preferred option.
Link: en.wikipedia.org/wiki/Traction_control_system
Ideas
- Compare left-front vs. left-rear wheels. If one wheel is significantly faster than the other, assume it is slipping. Reduce power to the slipping wheel for xxx milliseconds then restore restore full power. Perform same check for right-front vs. right-rear.