Software Lab 04: Touched By An Angle
Files
This lab description is available as a PDF file here. The
code distribution may be downloaded (in zip format) here, or by
running athrun 6.01 getFiles
from an Athena machine or a 6.01 lab
laptop.
1) Getting Started
You can work alone or with a partner in this lab, but you should both Submit all the Tutor problems. You may use any computer that reliably runs `soar` and `idle`.2) Wall Follower
In Design Lab last week, we explored the "wall follower" problem: trying to get the robot to drive parallel to a wall, keeping the wall a fixed distance to its right. Last week, we saw that using a simple controller to set the robot's angular velocity proportional to the robot's error in distance did not work particularly well1. This week, we will explore alternative strategies for this problem.
3) Looking Back
Run your code from last week in the soar
simulator (not the real
robot) in the wallFollowerWorld.py
simulation world.
In this lab, we will develop a controller to cause the robot to adjust its angle to be 0, but we won't directly control its distance to the wall. In design lab, we will build on this to fix our wall-following robot.
We will start by implementing a proportional controller that sets the robot's angular velocity proportional to the robot's error in angle, with a constant of proportionality K.
4) Experimenting with the Angle Controller
Complete the soar brain in wallFollowerAngleBrain.py
in this week's
distribution to implement this controller. The brain should set the robot's
rotational velocity proportional to the robot's error in angle, with a
constant of proportionality K
. Note that our desired angle is 0
radians relative to the axis of the wall.
Run your code in the soar
simulator in
wallFollowerWorld.py
for each of the following gains: K=0.1
,
K=0.5
, K=1
, K=10
. This world will start the robot
0.5
meters away from the wall, facing at an angle of \pi / 12
radians away from the wall. Let the robot run until its distance from
the wall stops changing or it runs out of room.
For each of the gains above, what was the robot's distance to the
wall (in meters) at the end of the run? Enter your answers accurate
to within 1 centimeter. If the robot did not converge with that
gain, enter None
.
K=0.1
, the robot ends up at a distance:
K=0.5
, the robot ends up at a distance:
K=1
, the robot ends up at a distance:
K=10
, the robot ends up at a distance:
soar
.
10
?
5) Modeling the Angle Controller
In this section, we will build up an LTI model for the angle controller system. As with other systems we have considered, it will be helpful to break this system down into smaller pieces in order to analyze it.
5.1) Just Angle
We will start by looking at a simpler system that models how the proportional controller changes the robot's angle in response to a set point, in the absence of forward motion. Note that this system will have a desired angle \Theta_i as its input and the robot's actual angle \Theta_o as its output.
Assume that the robot's angle is "sensed" immediately; that is, assume that the error, proportional to which the robot sets its angular velocity, is calculated from the current desired angle and the current actual angle.
Enter your system functional below.
Enter your answer by entering the coefficient lists associated with the
numerator and denominator Polynomial
instances. You may use the
variables K
and T
to represent the proportional controller's
gain and the length of the timestep, respectively. Note that, like any other
Python variables, these are case-sensitive!
System Functional:
Numerator coeffs (in {\cal R}):
Denominator coeffs (in {\cal R}):
K
and T
, representing the
proportional gain in the system, and the length of the timestep in seconds,
respectively.
5.2) Distance From The Wall
Adjust your model so that it models not only the robot's rotation, but also how this affects the robot's distance from the wall. Assume that the robot is moving forward with a constant, fixed velocity V. As with last week's lab, make the small angle approximation that \sin\theta \approx \theta.
Note that now you will have a system whose input is the signal \Theta_i (representing the robot's desired angle), and whose output is D_o (representing the robot's actual distance from the wall).
K
and T
, representing the
proportional gain in the system, and the length of the timestep in seconds,
respectively.
6) Testing our model
Now, use the framework we have developed over the last few weeks to model and then predict the behavior of the robot. In `wallFollowerAngleModel.py`, define a function `make_wall_follower_model` that takes the following inputs:- the gain of the system K
- the starting angle \theta_o[0], in radians
- the starting distance from the wall d_o[0], in meters
- the length of a time step, in seconds
- the forward velocity of the robot, in meters per second
Your function should return a model of the complete system expressed in the system functional above, using the infrastructure from week 3's exercises.
We strongly recommend that you approach this problem by defining several
subsystems and combining them to make the overall system. The skeleton code
contains variables angle_only_model
and distance_model
to hold two of these
systems.
You may find the lib601
documentation for the lti
module helpful.
The SystemSimulator
class can be used to create simulators for any system.
This simulator representation will allow us to determine the output of the
system for arbitrary input. If we had a System
instance called x
, for example,
we could make a simulator for that system with: sim = SystemSimulator(x)
.
Then we could find the system's response to a particular input by calling its get_response
method
Remember that in wallFollowerWorld
,
the starting distance is 0.5 m and the starting angle is \frac{\pi}{12}
radians (for accurate results, you will need to replicate these initial
conditions in your simulations).
Enter your answers accurate to within 1 centimeter. If the robot does not
converge with that gain, enter None
.
K=0.1
, the robot ends up at a distance:
K=0.5
, the robot ends up at a distance:
K=1
, the robot ends up at a distance:
K=10
, the robot ends up at a distance:
K=15
, the robot ends up at a distance:
K=25
, the robot ends up at a distance:
K=25
are particularly surprising.
Are they physically realistic? What assumption that we made in our
modeling breaks down in this case?
Footnotes
1In fact, we were able to prove mathematically that our proportional controller setup from last week could not lead to convergent behavior, regardless of the value we chose for the gain K!