Exercise: Smart Conveyor Simulation

The main objective of this exercise is to become familiar with the Webots robot simulator we will be using for the first part of the course. But the simulated device is chosen to be a plausible idea for the course project, so it will also contribute to the larger inquiry.

../_images/conveyor-demo.png

Screen shot of the Webots application with the sample project loaded.

Objectives

After this exercise, you should be able to:

  1. Install the Webots simulator on your own computer.

  2. Install a Python 3 programming system on your own computer.

  3. Unpack a ‘Webots project’, i.e. a sample world definition.

  4. Run the simulator.

  5. Modify an existing Python script to create a slightly changed movement sequence.

  6. Modify dynamic properties of a physical simulation.

  7. Create a movie file.

Reference Guides

Please review the following reference guides as needed:

Resources

Steps and observations

  1. The details of software installation can be found on the Webots and Python pages listed above, as well as links to the software documentation. Please try this soon, and let me know if you have problems getting this running on your own computer. There are many potential ways this might go go astray and I’d like it not to become a roadblock to progress.

  2. On first launch, Webots will bring up the Guided Tour, which is a fun way to see the diversity of pre-installed robot models.

  3. Please download the Webots project zip file linked above and unpack it wherever convenient for you. In general, these exercises will provide a template project as a starting point for you to modify. Webots expects a particular folder structure within the project. Each project can contain one or more world definitions with associated robot control programs and other object definitions. Please note the reference project will continue to be updated.

  4. After unpacking, please locate the following contents:

    • Webots/worlds/conveyor-demo.wbt: sample world file, opening it should launch the simulator

    • Webots/controllers/conveyor/conveyor.py: Python script to control the simulated robot

  5. Please explore the interface. The play/rewind interface above the graphics interface should run and reset the simulation. The tree editor on the left is the “Scene Tree” which defines all the properties of the world and mechanism. The code editor should be open on the right; if not, please locate the Robot object in the scene tree, right-click on it and select ‘Edit Controller’ from the menu.

  6. For a more thorough tutorial, please consult The User Interface in the Getting Started with Webots section of he Webots User Guide.

  7. The key deliverable for the assignment is a movie of a modified movement sequence. This doesn’t need to be complicated, although I encourage you to decide on some simple bit of choreography before starting. Here are some suggested approaches of varying difficulty:

    • Explore modifications of the parameters within the ‘state machine’ portion of conveyor.py (starts around line 165 to the end).

    • Extend the state machine to lengthen the sequence or provide alternative sequences.

  8. Some ideas: can you build the movement to a climax? Can you land the object in an interesting pose?

  9. In this example, the mechanism is entirely defined within the scene tree. This won’t always be true; more complicated robots are defined as code in .proto files. The Robot definition is deeply nested as it represents a graph of the kinematic structure.

  10. Please also experiment with changing a dynamic or static property of the world. Here are some suggested approaches of varying difficulty:

    • Modifying the geometry or mass of the ‘manipulandum’.

    • Replace the manipulandum, either with other geometric primitives or other predefined objects.

    • Add fixed barrier objects into the scene. These can be a Solid Node with a Shape and boundingObject defined so it participates in collision, but physics left NULL so it doesn’t move. See controls-demo.wbt for an example.

  11. Parameters can be adjusted while the simulator is running. But I highly recommend you get in the habit of resetting the simulation state before saving any world changes in order to preserve the accuracy of the initial conditions. This does mean that desired positional changes need to be re-applied to the initial state.

  12. If you have any questions, please email.

  13. Finally, please render a short movie clip of your final results. You can either select File/Make Movie or the film icon in the toolbar.

Deliverables

  1. Short video clip (less than 30 seconds) of simulated behavior, submitted to Canvas either as a video file or a link to a third-party streaming service.