Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add optimization to flat systems trajectory generation #569

Merged
merged 7 commits into from
Mar 19, 2021

Commits on Mar 3, 2021

  1. Configuration menu
    Copy the full SHA
    178af36 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2021

  1. initial implementation of optimization for flatsystems

    This commit allows a cost function and constraints to be passed to the
    flatsys point_to_point() function and when present will use sp.optimize to
    find a trajectory.  Preliminary unit tests, benchmarks, docstrings and
    documentation also in place.
    
    Switched the order of arguments in point_to_point() so that Tf (or timepts)
    now comes before the initial and final states, consistent with ordering
    elsewhere in the package.
    
    Make some small updates to optimal.py docstrings and argument names to make
    things consistent with flatsys.
    murrayrm committed Mar 7, 2021
    Configuration menu
    Copy the full SHA
    8a9ab95 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2021

  1. Configuration menu
    Copy the full SHA
    67a2169 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2021

  1. optimize via null space + updated testing

    This commit changes the way that cost functions and constraints are handled
    for flat system to carry out optimization only in the null space of the flat
    system basis coefficients, eliminating the use of an equality constraint for
    the terminal condition.
    murrayrm committed Mar 13, 2021
    Configuration menu
    Copy the full SHA
    f02b1be View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c240e9b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1fe6e86 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0c1d638 View commit details
    Browse the repository at this point in the history