Safety by Design for the Mariokart System Simon Richards [email protected] Coauthors: Wim Looman, Zachary Taylor Henry Jenkins and Dr Andrew Bainbridge-Smith [email protected] [email protected] [email protected] [email protected] Department of Electrical and Computer Engineering University of Canterbury Christchurch, New Zealand

Abstract—An electric go-kart is outfitted with a driveby-wire system in the first phase of development of an autonomous vehicle. The safety aspects of the design are evaluated and analysed using typical project management techniques. A model of the distributed software required is developed and proven and the place of modelling in software engineering is discussed..

I. I NTRODUCTION A. Project Description The authors’ reports are based on a group project carried out in the final year of their Bachelor of Engineering degree at Canterbury University. The original goal of this project was to take one of the electric go-karts used by the department for power electronics projects and convert it into an autonomous vehicle capable of a simple navigation task. Due to time restrictions the aim was reduced to implementing the mechanical and electronic systems needed to control the kart’s motion over a USB link. The authors refer to the project using the moniker Mariokart and this name may be used throughout this report in reference to the team, the vehicle or the project itself. B. System Design The overall system design consisted of a laptop, electronics, a CAN bus, actuators and an interface to the existing motor driver hardware. • Electronics: Five PCBs were located around the kart, each in close proximity to the sub-system







it was responsible for. The PCBs were identical in layout, specialisation was achieved by removing components from boards where they were not needed. For example it was intended for only one board to communicate directly with a laptop and so the other boards did not have USB headers. The decision to distribute control was made primarily to avoid problems caused by driving motors and actuators over a long distance in a high noise environment. Actuators: The brake pads were driven by a linear actuator mounted in place of the brake pedal. The actuator was mounted to the floor of the go-kart and its driver board was situated nearby. The steering column was similarly controlled by a DC motor mounted in place of the steering wheel and fixed to the frame. The DC motor included an encoder so that the relative angle of the steering column could be determined. Limit switches at each extreme of rotation ensures the motor does not turn too far and allows for the absolute angle to be measured. Controller laptop: To simplify use for future projects, the entire system is controllable via commands sent over a USB cable. The communications board is responsible for interfacing with a laptop and distributing the user’s commands Motor interface: Power electronics and a motor driver had already been implemented as part of

a student project so the only requirement from the motor driver board was to interface with this over the available SPI link. • The CAN bus: CAN is a multi-master serial bus with guaranteed sending and message priority. It was designed by Robert Bosch GmBH for networking micro-controllers in automobiles and has also some popularity in industrial automation. The CAN specification is low-level only, it does not specify a data protocol or a method address allocation. There are numerous similar software stacks built on top of CAN for various purposes such as the Society of Automotive Engineers’ J1939 [1] however due to the simplistic nature of our network we implemented our own protocol. For a more detailed description and justifications see Embedded Hardware Design For Autonomous Electric Vehicle [2]. C. Risk As with any vehicle, autonomous or otherwise, there is always a risk to the user, bystanders and the go-kart itself if a part of the system malfunctions in any way. Replacing a human driver with electromechanical control systems removes the non-deterministic element of human error from the system but adds a new set of risks and potential design mistakes. In this paper, the sources of these risks will be listed analysed and techniques for mitigation and negation will be investigated and evaluated. II. S AFETY - A M ETHOD Risk, according to ISO 31000 [3], is the effect of uncertainty on objectives. Therefore, in order to minimise risk we need to minimise uncertainty. In practical terms this means analysing the system from the top down, creating a hierarchy of risks to ensure that all issues are considered. Taking this approach means that even if the engineer does not identify every possible cause of failure (which is very likely), mitigation of the failure modes not identified may still be achieved via global mitigations which are applied to an entire branch of the taxonomy. When applying a divide and conquer approach as shown in figure1 we only need to ensure

that each failure set is equal to the union of those below it. At the lowest level of figure1 the categories are colour coded into the following groups: G Failures that are not a source of risk as they may be eliminated during testing. R Failures that are not preventable but may warrant mitigation. B A failure which could happen unpredictably and could be more severe than loss of power. Preventing this from occurring is the main focus of this paper. A. Preventing Mistakes (Green) For a detailed look into software and systems engineering practices see Looman’s Software Engineering in the Mariokart System [4]. If standard design practices such as unit testing are followed then it is possible to eliminate risk from these sources. B. Risk Analysis (Red) Traditional project management tools for risk management involve tools like Risk Matrices and qualitatively assessing the potential consequences and probabilities of risks. Such tools are popular mainly for their simplicity and have little backing in research, taking criticism from researchers such as Tony Cox [5] for reasons such as their qualitative nature and reliance on experienced judgement. Cox even goes as far to suggest that in some cases using Risk Matrices leads to worse-than-random decisions. For this reason and for simplicity’s sake it was decided to lessen the consequences of potential failure modes with a set of general mitigating techniques. Hence we have the following set of guidelines and design decisions: • Despite the goal of autonomous function, a passenger should always be in the vehicle during operation so that the vehicle may be shut down immediately by the provided kill switch. • All subsystems fall into an error state immediately after communication is lost with any board. Any board losing then regaining power will also transition into an error state. • In the error state each board will perform whatever is necessary to minimise the potential

Fig. 1.

A hierarchy of failures.

harm in case the go-kart is currently mobile. The important detail here is that both the brake board and motor will attempt to slow the vehicle (the motor is capable of regenerative braking) providing redundancy of the most critical function. C. Automated model checking to prevent design errors (Blue) While it is a given that a structural engineer will calculate forces and stress before starting constructing and that a mechanical engineer may likewise simulate loads on his or her design using a CAD package. Software engineering has, due to the relative flexibility of the medium, been exempt from the expectation that a design must be proven before it is implemented. This is not necessarily an advantage, however, as modelling can provide benefits including but not limited to proof of system robustness. SPIN is an automated model checker for ‘the

formal verification of distributed software system.’ [6] The name is an acronym for Simple Promela INterpretor, where Promela is the language used to specify a model and its constraints. For more information on SPIN and Promela visit spinroot.com but for the purposes of this paper an in-depth knowledge is not required. When modelling a software system, heavyhanded abstraction is useful and sometimes necessary. This is because accurately modelling the software to the level of calculations that have no effect on the system state only serves to increase the state-space and therefore the amount of computation required to check the model. Conversely too much abstraction will limit the usefulness of a model to being little more than a way of sketching out the top level design of a distributed system. Hence we wish to find an optimal level of detail which will lie somewhere between the overly naive and ultimately useless model which assumes too

much; and the result of several years of work and many hours of computation which simulates a system down to the instruction set level. The level of detail which is right for a project is subject to the law of diminishing returns, where an increase in the severity of failure or the resources available to the project will justify a more in depth model to be developed. 1) The (other) Benefits of Modelling a Distributed System: The obvious aim of modelling is model checking, proving that a design is correct. That is not the only benefit that modelling brings to a project however. Writing a model before code provides the author with a ‘sketched’ version of the code. Unlike a state diagram sketched on paper however the Promela sketch can be simulated visually using the iSpin frontend for spin. iSpin is capable of generating sequence diagram-like output showing message transmission and reception between processes as well as other, more complicated graphical output we won’t discuss here. D. Modelling Mariokart The software for mariokart was modelled with a focus on the state machine seen in appendix B and the message passing between boards. Failure was explicitly allowed as seen in the first part of appendix A where the client board may nondeterministically (the :: operator) choose to either reset itself, discover an error or continue running as expected. Notice the probabilities of these three events occurring is not specified as SPIN will exhaustively explore all possibilities regardless of their respective probabilities. The constraints placed on the model enforce a consistent state between the boards and ensure that the system either executes infinitely or all boards reach an error state and exit. Although the second option is not desirable in practice, showing that the boards fail gracefully regardless of the failure mode is the most important part of the model as it proves the correctness of an aspect of the system that would be difficult or maybe even impossible to test manually. As previously explained, if the team had more resources or if the project came with significantly

more danger (for example if the authors were modifying a space shuttle instead of a go-kart) then a more in depth model would be justified. As it stands, however, the time restrictions imposed on the project led to the relatively simple model described above being developed quickly before being implemented in C. III. D ISCUSSION A responsible engineer evaluates his or her design before implementing it and it is the author’s opinion that this belief is sometimes lacking in software development. Since a Promela model skips the details of implementation it is simple to write and understand and does not bury the top level design in details. If written before implementation or concurrently it simplifies writing the actual software as the design is already specified and proven. Balancing the cost of developing the model with the benefits it can bring is an important consideration for any team wishing to travel the same path as the authors did with mariokart. For groups or individuals working on projects similar to the authors’ it is recommended to at least explore modelling top level designs before implementing them. The worst case outcome is the cost of learning a new language (and Promela contains few difficult concepts) and the potential benefits include quicker development times and the chance to catch a potentially dangerous fault before it can manifest itself. IV. C ONCLUSION The potential for failure in the mariokart system was analysed. Solutions, mitigations and justifications for ignoring potential problems were described along with the costs and benefits of modelling software. R EFERENCES [1] SAE, 2011. [Online]. Available: http://www.sae.org/ standardsdev/groundvehicle/j1939.htm [2] H. V. Jenkins, “Embedded hardware design for autonomous electric vehicle,” 2011. [Online]. Available: https://raw.github.com/team-ramrod/mariokart/master/ Documentation/ScientificReport/Henry/report.pdf [3] ISO, 2009. [Online]. Available: http://www.iso.org/iso/ catalogue detail.htm?csnumber=43170 [4] W. G. Looman, “Software engineering practices in the mariokart system,” 2011. [Online]. Available: https://raw.github.com/team-ramrod/mariokart/master/ Documentation/ScientificReport/Wim/report.pdf

[5] A. Cox Jr et al., “What’s wrong with risk matrices?” Risk Analysis, vol. 28, no. 2, pp. 497–512, 2008. [6] (2011) Spin - formal verification. [Online]. Available: http: //www.spinroot.com/

Never claim: All boards transition to error state or remain in running state indefinitely: /∗ ∗ ∗ I f one b o a r d g o e s i n t o ∗ e r r o r s t a t e , t h e y a l l must . ∗/ never { do : : e r r o r c o u n t > 0 −> break : : t r u e −> s k i p od ;

V. A PPENDICES accept : do : : e r r o r c o u n t ! = num boards od ; } A. Promela examples B. Single board state machine Fig. 2.

Client Board proctype: /∗ ∗ ∗ A greatly simplified version ∗ o f t h e c l i e n t b o a r d model . ∗/ p r o c t y p e C l i e n t ( chan i n p u t ) { Startup : input ? req transition ; comms ! a c k t r a n s i t i o n ; Calibration : / / c a l i b r a t i o n handling / / More m e s s a g e p a s s i n g Running : do : : / / Normal r o u t i n e : : goto S t a r t u p : : goto E r r o r od ; Error : broadcast ! error }

The state machine each board follows.

Safety by Design for the Mariokart System - GitHub

Simon Richards [email protected]. ... autonomous vehicle capable of a simple navigation task. Due to .... Documentation/ScientificReport/Henry/report.pdf. [3] ISO ...

303KB Sizes 0 Downloads 268 Views

Recommend Documents

Software Engineering Practices in the Mariokart System - GitHub
to say that Computer Science departments do a better job of teaching it — they don't [1] and in fact Software Engineering really should be taught as ... This was a nal year project for the ... gineering degree carried out by the authors. The aim of

Mariokart An Autonomous Go-Kart - GitHub
Mar 9, 2011 - Make a robust platform for future projects ... Nice hardware platform for future years. - Project almost stuck to time ... Automation Software. 45d.

Environment and Safety - GitHub
Jul 18, 2014 - ... the analysis identifying key 'global leverage points' that offers the best ... atmosphere is a complex natural system that is essential to support ...

The Dissident File System - GitHub
Preferably compressed data like media files. Cryptographically secure ... Analysis of Adversary and Threats. Some attack ... Store sensitive data in free space?

Wardriving the Public Safety Band - GitHub
2. [email protected]. Twitter: @foundstone ..... Discone antennas do 25-1300MHz http://www.rfparts.com/diamond/d130j.html ... p25sec.pdf.

Confusion Network Based System Combination for ... - GitHub
segmentation is not the best word segmentation for SMT,. ➢P-C Chang, et al. optimized ... 巴基斯坦说死不投诚. ➢ 巴基斯坦说死于投诚. 5. ' ' ' ( | ). ( | ) (1 ). ( | ) j i sem j i sur ... the output into words by different CWS too

External Localization System for Mobile Robotics - GitHub
... the most known external localization reference is GPS; however, it ... robots [8], [9], [10], [11]. .... segments, their area ratio, and a more complex circularity .... The user just places ..... localization,” in IEEE Workshop on Advanced Robo

routine management system - GitHub
10. Figure 4 - Sample Data Set of Routine Management System . .... platform apps, conventional software architectural design patterns may be adopted and ...

System Requirements Specification - GitHub
This section describes the scope of Project Odin, as well as an overview of the contents of the SRS doc- ument. ... .1 Purpose. The purpose of this document is to provide a thorough description of the requirements for Project Odin. .... Variables. â€

System Requirements Specification - GitHub
System Requirements Specification. Project Odin. Kyle Erwin. Joshua Cilliers. Jason van Hattum. Dimpho Mahoko. Keegan Ferrett. Note: This document is constantly under revision due to our chosen methodology, ... This section describes the scope of Pro

FreeBSD ports system - GitHub
Search - make search (cont'd). Port: rsync-3.0.9_3. Path: /usr/ports/net/rsync. Info: Network file distribution/synchronization utility. Maint: [email protected].

The MeqTrees software system and its use for third ... - GitHub
Nov 5, 2010 - The technical goal of MeqTrees is to provide a tool for rapid implementation of such models ... 1 Throughout this paper, we will use the generic term station for an element ..... have emerged in recent years (most prominently numpy/scip

CodaLab Worker System - GitHub
The worker system consists of 3 components: • REST server: ... a ”check out” call which is used to tell the server that a worker is shutting down and prevent it from.

CBIR System - GitHub
Final result was a Matlab built software application, with an image database, that utilized ... The main idea is to integrate the strengths of content- and keyword-based image ..... In the following we present some of the best search results.

The MeqTrees Software System And Its Use For Third ... - GitHub
of about 100:1. However modest ..... To do this, we pick a domain in t,ν, and define a gridding over that ..... towards a “policy-free” solving scheme that works ade-.

The Algorithm Design Manual - GitHub
design form one of the core practical technologies of computer science. .... placed. Degree of difficulty ratings (from 1 to 10) have been assigned to all ... Updating a book dedication after ten years focuses attention on the effects of time. ......

pdf-1399\computer-system-reliability-safety-and-usability-by-bs ...
pdf-1399\computer-system-reliability-safety-and-usability-by-bs-dhillon.pdf. pdf-1399\computer-system-reliability-safety-and-usability-by-bs-dhillon.pdf. Open.

pdf-1830\ohio-safety-management-system-work-plan-by-richard ...
pdf-1830\ohio-safety-management-system-work-plan-by-richard-paddock.pdf. pdf-1830\ohio-safety-management-system-work-plan-by-richard-paddock.pdf.

The summary of Tibbo Project System - GitHub
To achieve an economical basic unit price, we kept the onboard circuitry to the necessary minimum. For example, there is no built-in power supply – the boards directly accept only regulated +5V power. Real- world power processing (12V, 24V, PoE, et

Open Vehicle Monitoring System - GitHub
Aug 14, 2013 - 10. CONFIGURE THE GPRS DATA CONNECTION (NEEDED FOR ...... Using the OVMS smartphone App (Android or Apple iOS), set Feature ...

Historical Query/Response System - GitHub
Feb 12, 2010 - developer website. Tick Query Examples. In order to query all the ticks for Google between 9 am and 12 pm on February 3, 2009, execute:.

Open Vehicle Monitoring System - GitHub
Feb 5, 2017 - GITHUB. 10. COMPILE AND FLASH YOUR FIRST FIRMWARE. 10. CHIPS USED .... If your laptop already has a RS232 port, then you can ... download your own forked repository from github to your local computer. Detailed ...