z lus a synchronous language with odes
play

Zlus: a synchronous language with ODEs Timothy Bourke 1 , 2 Marc - PowerPoint PPT Presentation

Zlus: a synchronous language with ODEs Timothy Bourke 1 , 2 Marc Pouzet 2 , 1 1. INRIA Paris-Rocquencourt 2. cole normale suprieure (DI) http://www.di.ens.fr/ParkasTeam.html C O L E N O R M A L E S U P R I E U R E HSCC 2013, CPS


  1. Zélus: a synchronous language with ODEs Timothy Bourke 1 , 2 Marc Pouzet 2 , 1 1. INRIA Paris-Rocquencourt 2. École normale supérieure (DI) http://www.di.ens.fr/ParkasTeam.html É C O L E N O R M A L E S U P É R I E U R E HSCC 2013, CPS Week, April 8–11, Philadelphia, USA

  2. Hybrid Systems Modelers Program complex discrete systems and their physical environments in a single language Many tools exist ◮ Simulink/Stateflow, LabVIEW, Modelica, Ptolemy, . . . Focus on programming language issues to improve safety Our proposal ◮ Build a hybrid modeler on top of a synchronous language ◮ Recycle existing techniques and tools ◮ Clarify underlying principles and guide language design/semantics

  3. Typical system Physical environment ◮ ODEs with reset der v = (0.7 /. maxf) ∗. error init 0.0 reset hit(v0) → v0 ◮ Hierarchical hybrid automata rate = 0.0 push() on ( not segout) atlimit() discrete controller pull() on ( not segin) rate = maxf atlimit() atlimit = up(angle − max) pull() push() atlimit() on ( last v > 0.3 ∗ maxf) Discrete controller / emit hit = − 0.8 ∗ last v ◮ Dataflow equations rate = − maxf atlimit = up(min − angle) ◮ Hierarchical automata atlimit() on ( last v < − 0.3 ∗ maxf) / emit hit = − 0.8 ∗ last v

  4. Reuse existing tools and techniques Synchronous languages (SCADE/Lustre) ◮ Widely used for critical systems design and implementation ◮ mathematically sound semantics ◮ certified compilation (DO178C) ◮ Expressive language for both discrete controllers and mode changes Off-the-shelf ODEs numeric solvers ◮ Sundials CVODE (LLNL) among others, treated as black boxes ◮ Exploit existing techniques and (variable step) solvers A conservative extension: Any synchronous program must be compiled, optimized, and executed as per usual

  5. Type systems to separate continuous from discrete What is a discrete step? ◮ Reject unreasonable parallel compositions ◮ Ensure by static typing that discrete changes occur on zero-crossings ◮ Statically detect causality loops, initialization issues Simulation engine [reinitialize] D C reaction integrate zero-crossing event σ ′ = d σ ( t , y ) upz = g σ ( t , y ) y = f σ ( t , y ) ˙

  6. Compiler architecture lexing/ causality/ typing inlining automata parsing initialization normalize let/in Built on an existing synchronous compiler periods ◮ Source-to-source and traceable transformations ◮ Resulting program is synchronous and translated to sequential code discrete zero-crossing code present/ generation signals ODEs variable scheduling optimization last/fby/ → zero-crossings completion

  7. Comparison with existing tools Simulink/Stateflow (Mathworks) ◮ Integrated treatment of automata vs two distinct languages ◮ More rigid separation of discrete and continuous behaviors Modelica ◮ Do not handle DAEs ◮ Our proposal for automata will be integrated into new version 3.4 Ptolemy (E.A. Lee et al., Berkeley) ◮ A unique computational model: synchronous ◮ Everything is compiled to sequential code (not interpreted)

  8. Z´ elus: A Synchronous Language with ODEs Timothy Bourke Marc Pouzet INRIA Team PARKAS, ´ Ecole normale sup´ erieure (Paris, France) http://www.di.ens.fr/ParkasTeam.html Hybrid simulation run-time Programming embedded systems and [reinitialize] lexing/ parsing their environments in the same language D C reaction approximate ◮ A Lustre-like language with ODEs. event typing ◮ Dedicated type systems to separate discrete The Type system D C time from continuous time behaviors. ◮ A compiler architecture based on checkable A (+) : int × int → int A causality/ A (=) : ∀ β.β × β → bool initialization source-to-source transformations. A if : ∀ β. bool × β × β → β bt ::= float | int | bool | zero D ◮ Simulate with an off-the-shelf numeric solver. pre ( · ) : ∀ β.β → β t ::= bt | t × t | β · fby · : ∀ β.β × β → β D σ ::= ∀ β 1 , ..., β n .t k → t C up ( · ) : float → zero k ::= D | C | A inlining A · on · : zero × bool → zero Compiler architecture: source-to-source and traceable transformations Example system with (hierarchical) Hybrid Automaton automata stick in stop button boom push stick push extend button boom pull stick pull retract button boom drive stick drive bucket in normalize boom in bucket push legs extend let/in bucket pull legs retract stick out bucket drive legs stop alarm lamp(bool) bucket out done lamp(bool) cancel lamp(bool) periods boom out second legs in legs out let hybrid segment ((min, max, i), maxf, (push, pull, go)) discrete = ((segin, segout), angle) where zero-crossing rate = 0.0 rec der angle = v init i and error = v r − . v and der v = (0.7 /. maxf) ∗ . error +. 0.3 ∗ . z init 0.0 (Stuck) reset hit(v0) → v0 present/ pull() on ( not segin) and der z = error init 0.0 reset hit( ) → 0.0 signals and v r = if go then rate else 0.0 push() on ( not segout) atlimit() and (segin, segout) = (angle < = min, angle > = max) and automaton | Stuck → variable do rate = maxf completion rate = 0.0 until push() on ( not segout) then Pushing atlimit = up(angle − max) else pull() on ( not segin) then Pulling (Pushing) ODEs | Pushing → local atlimit in do zero-crossings pull() push() rate = maxf atlimit() on ( last v > 0.3 ∗ maxf) and atlimit = up(angle − . max) atlimit() / emit hit = − 0.8 ∗ last v until atlimit() on ( last v > 0.3 ∗ . maxf) then do emit hit = − 0.8 ∗ . last v in Pushing else atlimit() then Stuck rate = − maxf last/fby/ → else pull() then Pulling atlimit = up(min − angle) | Pulling → local atlimit in do rate = − . maxf (Pulling) and atlimit = up(min − . angle) optimization until atlimit() on ( last v < − 0.3 ∗ . maxf) then atlimit() on ( last v < − 0.3 ∗ maxf) do emit hit = − 0.8 ∗ . last v in Pulling / emit hit = − 0.8 ∗ last v else atlimit() then Stuck else push() then Pushing scheduling Hybrid Systems: Computation and Control 9–11 April 2013 code generation Philadelphia, USA É C O L E N O R M A L E S U P É R I E U R E

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend