Girish Mahajan (Editor)

Hybrid automaton

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In automata theory, a hybrid automaton (plural: hybrid automata or hybrid automatons) is a mathematical model for precisely describing systems in which digital computational processes interact with analog physical processes. A hybrid automaton is a finite state machine with a finite set of continuous variables whose values are described by a set of ordinary differential equations. This combined specification of discrete and continuous behaviors enables dynamic systems that comprise both digital and analog components to be modeled and analyzed.

Contents

Examples

A simple example is a room-thermostat-heater system where the temperature of the room evolves according to laws of thermodynamics and the state of the heater (on/off); the thermostat senses the temperature, performs certain computations and turns the heater on and off. In general, hybrid automata have been used to model and analyze a variety of embedded systems including vehicle control systems, air traffic control systems, mobile robots, and processes from systems biology.

Formal Definition

An Alur-Henzinger hybrid automaton H comprises the following components:

  • A finite set X = { x 1 , . . . , x n } of real-numbered variables. The number n is called the dimension of H . Let X ˙ be the set { x ˙ 1 , . . . , x ˙ n } of dotted variables that represent first derivatives during continuous change, and let X be the set { x 1 , . . . , x n } of primed variables that represent values at the conclusion of discrete change.
  • A finite multidigraph ( V , E ) . The vertices in V are called control modes. The edges in E are called control switches.
  • Three vertex labeling functions init, inv, and flow that assign to each control mode v V three predicates. Each initial condition init ( v ) is a predicate whose free variables are from X . Each invariant condition inv ( v ) is a predicate whose free variables are from X . Each flow condition flow ( v ) is a predicate whose free variables are from X X ˙ .
  • So this is a labeled multidigraph.

  • An edge labeling function jump that assigns to each control switch e E a predicate. Each jump condition jump ( e ) is a predicate whose free variables are from X X .
  • A finite set Σ of events, and an edge labeling function event: E Σ that assigns to each control switch an event.
  • Hybrid automata come in several flavors: The Alur-Henzinger hybrid automaton is a popular model; it was developed primarily for algorithmic analysis of hybrid systems model checking. The HyTech model checking tool is based on this model. The Hybrid Input/Output Automaton model has been developed more recently. This model enables compositional modeling and analysis of hybrid systems. Another formalism which is useful to model implementations of hybrid automaton is the lazy linear hybrid automaton. A sub-class of hybrid automata are timed automata in which all continuous variables have derivative 1. State reachability is decidable for this sub-class, which is why it is an interesting formalism for formal verification.

    References

    Hybrid automaton Wikipedia