1 / 10

Principles of Software Engineering: Command-and-Control Subsystem

Principles of Software Engineering: Command-and-Control Subsystem. Ethan Jackson And Wolfram Schulte, Research in Software Engineering ( RiSE ) Microsoft Research. Goals. Develop a docking controller that navigates smaller probes to dock with main probe.

sanam
Download Presentation

Principles of Software Engineering: Command-and-Control Subsystem

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Principles of Software Engineering: Command-and-Control Subsystem Ethan Jackson And Wolfram Schulte, Research in Software Engineering (RiSE) Microsoft Research

  2. Goals Develop a docking controller that navigates smaller probes to dock with main probe. Controller should eventually dock the probes, but never crash them into each other. Apply the NuSMV model checker to verify properties: http://nusmv.fbk.eu/

  3. Idea Probes can dock to form a single large probe while not determining orientation. Undocked configuration Docked configuration

  4. Docking When the main probe wants to dock the other probes it issues a series of commands to cause the probes to dock.

  5. Modeling the System View the main spacecraft as stationary at the location (0, 0, 0). The state variables for each probe are (x, y, z, vx, vy, vz).

  6. Modeling the System At each tick the probes update their position according to the equations: The variables denote the velocities from the previous step. At each tick, the controller may change the velocities of the probes.

  7. Invariants Probes must maintain a safe separation distance, if they haven’t docked. The probes must be moving slowly once they arrive at (0, 0, 0).

  8. Controllable Actions At each step the controller can adjust each velocity by zero, one, or two units.

  9. Details NuSMV only supports bounded integers, so pick variables in some range, e.g. -256…256. The controller must keep the values in this range. How fast can you make the probes dock? Are there some initial conditions where the docking fails? What are the constraints on these initial conditions?

  10. http://www.cs.washington.edu/csep503 Thanks And Questions!

More Related