Skip to content

Estimate the peak of a function across all trajectories. Based on occupation measures, results in a hierarchy of SDPs. Assumes dynamics and objective are polynomial, and semialgebriac regions.

License

Jarmill/peak

Repository files navigation

Peak Estimation

Estimate the peak of a function p(x) across all trajectories of a dynamical system x'=f(t,x) starting from a set X0 over time [0, T]. If possible, recover the trajectories that attain the peak value are also recovered.

An occupation-measure framework is used to find a convergeng sequence of upper bounds in rising degree to the true peak value. The approximate-optimal trajectories may be recovered if moment matrices satisfy rank conditions (up to numerical accuracy).

Dependencies

All code is written and tested on Matlab R2020a.

Instructions

The peak_estimate routine has two arguments: p_opt and order. The order is the relaxation order involving moments of degree 2*order.

p_opt is an options structure of type peak_options defining properties of the system, with the fields:

  var:        Structure of symbolic variables (@mpol)
      t:      time (default empty)
      x:      state
      w:      parametric uncertainty (default empty)
      d:      time-dependent uncertainty (default empty)

  Tmax:       Maximum time (if var.t is not empty)

  dynamics:   Structure with fields (f, X)
      f:      dynamics x' = f(t,x, w) over the space X.
                  Each entry is a polynomial                
      X:      over what space do the dynamics evolve

      In case of switching in dynamics, f and X can be cells 
              f = {f1, f2, f3, ....}, in spaces X = {X1, X2, X3, ...}

  obj:        Functions to maximize along trajectories
      Scalar:     Single function
      List:       Maximize the minimum of all objectives
                     Each entry is a polynomial       
  
  state_supp: Support set of total set X (@supcon)
  state_init: Support set of initial set X0 (@supcon)
  Tmax:       Maximum time to consider (can be infinite if f(t,x) = f(x))
      
  rank_tol:   Rank tolerance for moment matrix to be rank-1
  box:        Box containing valid region X, default to [-1, 1]^n

Output is stored in the structure out. Trajectories are sampled by the function sampler after filling in a sampler_options structure. The user-defined function `sampler_options.sampler.x()' will randomly pick a point on X0, and sampler will return the trajectory.

The visualizing functions state_plot, cost_plot, nonneg_plot illustrate properties of trajectories.

Examine and run experiments_recovery/{pendulum_test, time_var_circ_2_1, sym_attractor_4_1, flow_half_safety}.m as examples.

Reference

https://ieeexplore.ieee.org/document/9308943 "Peak Estimation Recovery and Safety Analysis"

https://arxiv.org/abs/2103.13017 "Peak Estimation for Uncertain and Switched Systems"

Contact

For comments and questions please email Jared Miller.

About

Estimate the peak of a function across all trajectories. Based on occupation measures, results in a hierarchy of SDPs. Assumes dynamics and objective are polynomial, and semialgebriac regions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages