blob: 7505413519d06e038ce3a6c57cb6dd70e307293f [file] [log] [blame]
#!/usr/bin/python
"""
Control loop pole placement library.
This library will grow to support many different pole placement methods.
Currently it only supports direct pole placement.
"""
__author__ = 'Austin Schuh (austin.linux@gmail.com)'
import numpy
import slycot
import scipy.linalg
import glog
class Error (Exception):
"""Base class for all control loop exceptions."""
class PolePlacementError(Error):
"""Exception raised when pole placement fails."""
# TODO(aschuh): dplace should take a control system object.
# There should also exist a function to manipulate laplace expressions, and
# something to plot bode plots and all that.
def dplace(A, B, poles, alpha=1e-6):
"""Set the poles of (A - BF) to poles.
Args:
A: numpy.matrix(n x n), The A matrix.
B: numpy.matrix(n x m), The B matrix.
poles: array(imaginary numbers), The poles to use. Complex conjugates poles
must be in pairs.
Raises:
ValueError: Arguments were the wrong shape or there were too many poles.
PolePlacementError: Pole placement failed.
Returns:
numpy.matrix(m x n), K
"""
# See http://www.icm.tu-bs.de/NICONET/doc/SB01BD.html for a description of the
# fortran code that this is cleaning up the interface to.
n = A.shape[0]
if A.shape[1] != n:
raise ValueError("A must be square")
if B.shape[0] != n:
raise ValueError("B must have the same number of states as A.")
m = B.shape[1]
num_poles = len(poles)
if num_poles > n:
raise ValueError("Trying to place more poles than states.")
out = slycot.sb01bd(n=n,
m=m,
np=num_poles,
alpha=alpha,
A=A,
B=B,
w=numpy.array(poles),
dico='D')
A_z = numpy.matrix(out[0])
num_too_small_eigenvalues = out[2]
num_assigned_eigenvalues = out[3]
num_uncontrollable_eigenvalues = out[4]
K = numpy.matrix(-out[5])
Z = numpy.matrix(out[6])
if num_too_small_eigenvalues != 0:
raise PolePlacementError("Number of eigenvalues that are too small "
"and are therefore unmodified is %d." %
num_too_small_eigenvalues)
if num_assigned_eigenvalues != num_poles:
raise PolePlacementError("Did not place all the eigenvalues that were "
"requested. Only placed %d eigenvalues." %
num_assigned_eigenvalues)
if num_uncontrollable_eigenvalues != 0:
raise PolePlacementError("Found %d uncontrollable eigenvlaues." %
num_uncontrollable_eigenvalues)
return K
def c2d(A, B, dt):
"""Converts from continuous time state space representation to discrete time.
Returns (A, B). C and D are unchanged.
This code is copied from: scipy.signal.cont2discrete method zoh
"""
a, b = numpy.array(A), numpy.array(B)
# Build an exponential matrix
em_upper = numpy.hstack((a, b))
# Need to stack zeros under the a and b matrices
em_lower = numpy.hstack((numpy.zeros((b.shape[1], a.shape[0])),
numpy.zeros((b.shape[1], b.shape[1]))))
em = numpy.vstack((em_upper, em_lower))
ms = scipy.linalg.expm(dt * em)
# Dispose of the lower rows
ms = ms[:a.shape[0], :]
ad = ms[:, 0:a.shape[1]]
bd = ms[:, a.shape[1]:]
return numpy.matrix(ad), numpy.matrix(bd)
def ctrb(A, B):
"""Returns the controllability matrix.
This matrix must have full rank for all the states to be controllable.
"""
n = A.shape[0]
output = B
intermediate = B
for i in xrange(0, n):
intermediate = A * intermediate
output = numpy.concatenate((output, intermediate), axis=1)
return output
def dlqr(A, B, Q, R, optimal_cost_function=False):
"""Solves for the optimal lqr controller.
x(n+1) = A * x(n) + B * u(n)
J = sum(0, inf, x.T * Q * x + u.T * R * u)
"""
# P = (A.T * P * A) - (A.T * P * B * numpy.linalg.inv(R + B.T * P *B) * (A.T * P.T * B).T + Q
# 0.5 * X.T * P * X -> optimal cost to infinity
P, rcond, w, S, T = slycot.sb02od(
n=A.shape[0], m=B.shape[1], A=A, B=B, Q=Q, R=R, dico='D')
F = numpy.linalg.inv(R + B.T * P * B) * B.T * P * A
if optimal_cost_function:
return F, P
else:
return F
def kalman(A, B, C, Q, R):
"""Solves for the steady state kalman gain and covariance matricies.
Args:
A, B, C: SS matricies.
Q: The model uncertantity
R: The measurement uncertainty
Returns:
KalmanGain, Covariance.
"""
I = numpy.matrix(numpy.eye(Q.shape[0]))
Z = numpy.matrix(numpy.zeros(Q.shape[0]))
n = A.shape[0]
m = C.shape[0]
controllability_rank = numpy.linalg.matrix_rank(ctrb(A.T, C.T))
if controllability_rank != n:
glog.warning('Observability of %d != %d, unobservable state',
controllability_rank, n)
# Compute the steady state covariance matrix.
P_prior, rcond, w, S, T = slycot.sb02od(n=n, m=m, A=A.T, B=C.T, Q=Q, R=R, dico='D')
S = C * P_prior * C.T + R
K = numpy.linalg.lstsq(S.T, (P_prior * C.T).T)[0].T
P = (I - K * C) * P_prior
return K, P
def kalmd(A_continuous, B_continuous, Q_continuous, R_continuous, dt):
"""Converts a continuous time kalman filter to discrete time.
Args:
A_continuous: The A continuous matrix
B_continuous: the B continuous matrix
Q_continuous: The continuous cost matrix
R_continuous: The R continuous matrix
dt: Timestep
The math for this is from:
https://www.mathworks.com/help/control/ref/kalmd.html
Returns:
The discrete matrices of A, B, Q, and R.
"""
# TODO(austin): Verify that the dimensions make sense.
number_of_states = A_continuous.shape[0]
number_of_inputs = B_continuous.shape[1]
M = numpy.zeros((len(A_continuous) + number_of_inputs,
len(A_continuous) + number_of_inputs))
M[0:number_of_states, 0:number_of_states] = A_continuous
M[0:number_of_states, number_of_states:] = B_continuous
M_exp = scipy.linalg.expm(M * dt)
A_discrete = M_exp[0:number_of_states, 0:number_of_states]
B_discrete = numpy.matrix(M_exp[0:number_of_states, number_of_states:])
Q_continuous = (Q_continuous + Q_continuous.T) / 2.0
R_continuous = (R_continuous + R_continuous.T) / 2.0
M = numpy.concatenate((-A_continuous, Q_continuous), axis=1)
M = numpy.concatenate(
(M, numpy.concatenate((numpy.matrix(
numpy.zeros((number_of_states, number_of_states))),
numpy.transpose(A_continuous)), axis = 1)), axis = 0)
phi = numpy.matrix(scipy.linalg.expm(M*dt))
phi12 = phi[0:number_of_states, number_of_states:(2*number_of_states)]
phi22 = phi[number_of_states:2*number_of_states, number_of_states:2*number_of_states]
Q_discrete = phi22.T * phi12
Q_discrete = (Q_discrete + Q_discrete.T) / 2.0
R_discrete = R_continuous / dt
return (A_discrete, B_discrete, Q_discrete, R_discrete)
def TwoStateFeedForwards(B, Q):
"""Computes the feed forwards constant for a 2 state controller.
This will take the form U = Kff * (R(n + 1) - A * R(n)), where Kff is the
feed-forwards constant. It is important that Kff is *only* computed off
the goal and not the feed back terms.
Args:
B: numpy.Matrix[num_states, num_inputs] The B matrix.
Q: numpy.Matrix[num_states, num_states] The Q (cost) matrix.
Returns:
numpy.Matrix[num_inputs, num_states]
"""
# We want to find the optimal U such that we minimize the tracking cost.
# This means that we want to minimize
# (B * U - (R(n+1) - A R(n)))^T * Q * (B * U - (R(n+1) - A R(n)))
# TODO(austin): This doesn't take into account the cost of U
return numpy.linalg.inv(B.T * Q * B) * B.T * Q.T