COMP 417 Assignment 1: Kinematics and Path Planning solved

$40.00

Category: You will receive a download link of the .ZIP file upon Payment

Description

5/5 - (1 vote)

Question #1: 2D Rotation Transform (3 points)
In the lectures, we stated a matrix form to express the kinematics of a body rotating in 2D
about the ICC with rotation rate ๐œ” radians per second for ๐›ฟ๐‘ก seconds is:
๐‘ฅ(๐‘ก + 1) = ๐‘…(๐œ”๐›ฟ๐‘ก)๐‘ฅ(๐‘ก) + [
0
0
๐œ”๐›ฟ๐‘ก
]
Where the state vector, x, has 3 components:
๐‘ฅ(๐‘ก) = [
๐‘ฅ
๐‘ฆ
๐œƒ
]
The 3×3 โ€œrotation matrixโ€ ๐‘…(๐œ™) that represents the change in x,y position after rotating ๐œ™
radians about the ICC is:
๐‘…(๐œ™) = [
cos(๐œ™) โˆ’sin(๐œ™) 0
sin(๐œ™) cos(๐œ™) 0
0 0 1
]
Explain in words, with back-up from drawings or math where possible why this is correct.
Hint: there are many good explanations for this online (e.g., the recommended text, Wikipedia,
and hundreds more). You may use any of these resources to inform yourself. This question is
mainly just to prompt you to spend some time reading/thinking on this topic if youโ€™ve not seen
it before. Once you find an explanation that makes sense to you, try to re-state it in your own
words to make sure you really understood.
For challenge/honor: First try to derive this yourself from basic geometry without help!
Question #2: Forward and Inverse Kinematics (4 points)
Consider the two-link arm above that operates in the 2D plane defined by this page. Assuming:
โ€ข the origin of the global frame is at the armโ€™s anchor point with the table (thicker blue
rectangle), with y-axis upwards and x-axis pointing to the right,
โ€ข the arm has one motor in each joint (indexed by theta one and two as shown),
โ€ข the joint angles have zero angles for their respective theta when the arm is straight
upwards,
โ€ข the joints have limits,
o the first link cannot rotate through the table (max ๐œƒ1 =
๐œ‹
2
, min ๐œƒ1 =
โˆ’๐œ‹
2
),
o the second link cannot rotate through the first link (max ๐œƒ2 = ๐œ‹, min ๐œƒ2 = โˆ’๐œ‹),
โ€ข collisions are not allowed (the arm cannot poke into or through the table),
โ€ข the tasks all involve the end-effector, that is the orange/yellow ball at the end of the
arm, and
โ€ข each โ€œlinkโ€ in the arm has length one.
Write the:
a) state space,
b) action space,
c) forward kinematics function and,
d) inverse kinematics function
for this robot. For spaces, use vector notation. For the functions, give the โ€œspecsโ€ (return value
and function arguments), as well as pseudo-code or some simple equations for the function
body.
Recommended reference: The recommended textbooks by Craig (starting from Chapter 2
onwards) or Lavalle (Chapter 3).
๐œƒ2
๐œƒ1
Question #3: Choose the Algorithm (5 points)
Consider the map and plan shown here, with green
indicating start, red indicating end, the blue line
showing the states along the path and the
black/white background showing free space and
obstacles in the map.
Could this path have been produced by:
a) The Bug #1 Algorithm (with right-hand rule)?
b)The Bug #2 Algorithm (with right-hand rule)?
c) Dijkstraโ€™s algorithm?
d)The A* algorithm?
e) The RRT algorithm?
For each, briefly state (in 1-2 key sentences, maybe a quick sketch) why you believe the planner
is (or is not) likely to be the source of this path. Note, weโ€™ll cover RRTs on Tuesday Sept 22nd
.
The Lecture 5 slides are already posted for you to read about this method, or else you can wait
one day to be able to answer this question.
Recommended reference: I hope you can do this one from the course notes and lectures.