Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 3 | import control_loop |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 4 | import controls |
Austin Schuh | fe6d37e | 2014-03-24 09:45:01 -0700 | [diff] [blame] | 5 | import polytope |
| 6 | import polydrivetrain |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 7 | import numpy |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 8 | import sys |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 9 | from matplotlib import pylab |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 10 | |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 11 | class Claw(control_loop.ControlLoop): |
| 12 | def __init__(self, name="RawClaw"): |
| 13 | super(Claw, self).__init__(name) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 14 | # Stall Torque in N m |
James Kuszmaul | e1755b3 | 2014-02-13 06:27:48 -0800 | [diff] [blame] | 15 | self.stall_torque = 2.42 |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 16 | # Stall Current in Amps |
James Kuszmaul | e1755b3 | 2014-02-13 06:27:48 -0800 | [diff] [blame] | 17 | self.stall_current = 133 |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 18 | # Free Speed in RPM |
| 19 | self.free_speed = 5500.0 |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 20 | # Free Current in Amps |
James Kuszmaul | e1755b3 | 2014-02-13 06:27:48 -0800 | [diff] [blame] | 21 | self.free_current = 2.7 |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 22 | # Moment of inertia of the claw in kg m^2 |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 23 | # measured from CAD |
| 24 | self.J_top = 0.3 |
| 25 | self.J_bottom = 0.9 |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 26 | # Resistance of the motor |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 27 | self.R = 12.0 / self.stall_current |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 28 | # Motor velocity constant |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 29 | self.Kv = ((self.free_speed / 60.0 * 2.0 * numpy.pi) / |
| 30 | (13.5 - self.R * self.free_current)) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 31 | # Torque constant |
| 32 | self.Kt = self.stall_torque / self.stall_current |
| 33 | # Gear ratio |
James Kuszmaul | e1755b3 | 2014-02-13 06:27:48 -0800 | [diff] [blame] | 34 | self.G = 14.0 / 48.0 * 18.0 / 32.0 * 18.0 / 66.0 * 12.0 / 60.0 |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 35 | # Control loop time step |
| 36 | self.dt = 0.01 |
| 37 | |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 38 | # State is [bottom position, bottom velocity, top - bottom position, |
| 39 | # top - bottom velocity] |
| 40 | # Input is [bottom power, top power - bottom power * J_top / J_bottom] |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 41 | # Motor time constants. difference_bottom refers to the constant for how the |
| 42 | # bottom velocity affects the difference of the top and bottom velocities. |
| 43 | self.common_motor_constant = -self.Kt / self.Kv / (self.G * self.G * self.R) |
| 44 | self.bottom_bottom = self.common_motor_constant / self.J_bottom |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 45 | self.difference_bottom = -self.common_motor_constant * (1 / self.J_bottom |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 46 | - 1 / self.J_top) |
| 47 | self.difference_difference = self.common_motor_constant / self.J_top |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 48 | # State feedback matrices |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 49 | |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 50 | self.A_continuous = numpy.matrix( |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 51 | [[0, 0, 1, 0], |
| 52 | [0, 0, 0, 1], |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 53 | [0, 0, self.bottom_bottom, 0], |
| 54 | [0, 0, self.difference_bottom, self.difference_difference]]) |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 55 | |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 56 | self.A_bottom_cont = numpy.matrix( |
| 57 | [[0, 1], |
| 58 | [0, self.bottom_bottom]]) |
| 59 | |
| 60 | self.A_diff_cont = numpy.matrix( |
| 61 | [[0, 1], |
| 62 | [0, self.difference_difference]]) |
| 63 | |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 64 | self.motor_feedforward = self.Kt / (self.G * self.R) |
James Kuszmaul | f2ed6e6 | 2014-02-17 17:52:07 -0800 | [diff] [blame] | 65 | self.motor_feedforward_bottom = self.motor_feedforward / self.J_bottom |
| 66 | self.motor_feedforward_difference = self.motor_feedforward / self.J_top |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 67 | self.motor_feedforward_difference_bottom = ( |
| 68 | self.motor_feedforward * (1 / self.J_bottom - 1 / self.J_top)) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 69 | self.B_continuous = numpy.matrix( |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 70 | [[0, 0], |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 71 | [0, 0], |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 72 | [self.motor_feedforward_bottom, 0], |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 73 | [-self.motor_feedforward_bottom, self.motor_feedforward_difference]]) |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 74 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 75 | print "Cont X_ss", self.motor_feedforward / -self.common_motor_constant |
| 76 | |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 77 | self.B_bottom_cont = numpy.matrix( |
| 78 | [[0], |
| 79 | [self.motor_feedforward_bottom]]) |
| 80 | |
| 81 | self.B_diff_cont = numpy.matrix( |
| 82 | [[0], |
| 83 | [self.motor_feedforward_difference]]) |
| 84 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 85 | self.C = numpy.matrix([[1, 0, 0, 0], |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 86 | [1, 1, 0, 0]]) |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 87 | self.D = numpy.matrix([[0, 0], |
| 88 | [0, 0]]) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 89 | |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 90 | self.A, self.B = self.ContinuousToDiscrete( |
| 91 | self.A_continuous, self.B_continuous, self.dt) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 92 | |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 93 | self.A_bottom, self.B_bottom = controls.c2d( |
| 94 | self.A_bottom_cont, self.B_bottom_cont, self.dt) |
| 95 | self.A_diff, self.B_diff = controls.c2d( |
| 96 | self.A_diff_cont, self.B_diff_cont, self.dt) |
| 97 | |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 98 | self.K_bottom = controls.dplace(self.A_bottom, self.B_bottom, [.65, .45]) |
| 99 | self.K_diff = controls.dplace(self.A_diff, self.B_diff, [.40, .28]) |
| 100 | |
| 101 | print "K_diff", self.K_diff |
| 102 | print "K_bottom", self.K_bottom |
| 103 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 104 | print "A" |
| 105 | print self.A |
| 106 | print "B" |
| 107 | print self.B |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 108 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 109 | |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 110 | self.Q = numpy.matrix([[(1.0 / (0.10 ** 2.0)), 0.0, 0.0, 0.0], |
Austin Schuh | 01c652b | 2014-02-21 23:13:42 -0800 | [diff] [blame] | 111 | [0.0, (1.0 / (0.06 ** 2.0)), 0.0, 0.0], |
| 112 | [0.0, 0.0, 0.10, 0.0], |
| 113 | [0.0, 0.0, 0.0, 0.1]]) |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 114 | |
James Kuszmaul | f2ed6e6 | 2014-02-17 17:52:07 -0800 | [diff] [blame] | 115 | self.R = numpy.matrix([[(1.0 / (40.0 ** 2.0)), 0.0], |
| 116 | [0.0, (1.0 / (5.0 ** 2.0))]]) |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 117 | #self.K = controls.dlqr(self.A, self.B, self.Q, self.R) |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 118 | |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 119 | self.K = numpy.matrix([[self.K_bottom[0, 0], 0.0, self.K_bottom[0, 1], 0.0], |
| 120 | [0.0, self.K_diff[0, 0], 0.0, self.K_diff[0, 1]]]) |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 121 | |
| 122 | # Compute the feed forwards aceleration term. |
| 123 | self.K[1, 0] = -self.B[1, 0] * self.K[0, 0] / self.B[1, 1] |
| 124 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 125 | lstsq_A = numpy.identity(2) |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 126 | lstsq_A[0, :] = self.B[1, :] |
| 127 | lstsq_A[1, :] = self.B[3, :] |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 128 | print "System of Equations coefficients:" |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 129 | print lstsq_A |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 130 | print "det", numpy.linalg.det(lstsq_A) |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 131 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 132 | out_x = numpy.linalg.lstsq( |
| 133 | lstsq_A, |
| 134 | numpy.matrix([[self.A[1, 2]], [self.A[3, 2]]]))[0] |
| 135 | self.K[1, 2] = -lstsq_A[0, 0] * (self.K[0, 2] - out_x[0]) / lstsq_A[0, 1] + out_x[1] |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 136 | |
| 137 | print "K unaugmented" |
| 138 | print self.K |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 139 | print "B * K unaugmented" |
| 140 | print self.B * self.K |
| 141 | F = self.A - self.B * self.K |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 142 | print "A - B * K unaugmented" |
| 143 | print F |
| 144 | print "eigenvalues" |
| 145 | print numpy.linalg.eig(F)[0] |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 146 | |
| 147 | self.rpl = .05 |
| 148 | self.ipl = 0.008 |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 149 | self.PlaceObserverPoles([self.rpl + 1j * self.ipl, |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 150 | self.rpl + 1j * self.ipl, |
James Kuszmaul | e2afbe4 | 2014-02-17 22:29:59 -0800 | [diff] [blame] | 151 | self.rpl - 1j * self.ipl, |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 152 | self.rpl - 1j * self.ipl]) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 153 | |
James Kuszmaul | 9279740 | 2014-02-17 14:08:49 -0800 | [diff] [blame] | 154 | # The box formed by U_min and U_max must encompass all possible values, |
| 155 | # or else Austin's code gets angry. |
James Kuszmaul | d536a40 | 2014-02-18 22:32:12 -0800 | [diff] [blame] | 156 | self.U_max = numpy.matrix([[12.0], [12.0]]) |
| 157 | self.U_min = numpy.matrix([[-12.0], [-12.0]]) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 158 | |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 159 | # Compute the steady state velocities for a given applied voltage. |
| 160 | # The top and bottom of the claw should spin at the same rate if the |
| 161 | # physics is right. |
| 162 | X_ss = numpy.matrix([[0], [0], [0.0], [0]]) |
| 163 | |
| 164 | U = numpy.matrix([[1.0],[1.0]]) |
| 165 | A = self.A |
| 166 | B = self.B |
| 167 | #X_ss[2, 0] = X_ss[2, 0] * A[2, 2] + B[2, 0] * U[0, 0] |
| 168 | X_ss[2, 0] = 1 / (1 - A[2, 2]) * B[2, 0] * U[0, 0] |
| 169 | #X_ss[3, 0] = X_ss[3, 0] * A[3, 3] + X_ss[2, 0] * A[3, 2] + B[3, 0] * U[0, 0] + B[3, 1] * U[1, 0] |
| 170 | #X_ss[3, 0] * (1 - A[3, 3]) = X_ss[2, 0] * A[3, 2] + B[3, 0] * U[0, 0] + B[3, 1] * U[1, 0] |
| 171 | X_ss[3, 0] = 1 / (1 - A[3, 3]) * (X_ss[2, 0] * A[3, 2] + B[3, 1] * U[1, 0] + B[3, 0] * U[0, 0]) |
| 172 | #X_ss[3, 0] = 1 / (1 - A[3, 3]) / (1 - A[2, 2]) * B[2, 0] * U[0, 0] * A[3, 2] + B[3, 0] * U[0, 0] + B[3, 1] * U[1, 0] |
| 173 | X_ss[0, 0] = A[0, 2] * X_ss[2, 0] + B[0, 0] * U[0, 0] |
| 174 | X_ss[1, 0] = A[1, 2] * X_ss[2, 0] + A[1, 3] * X_ss[3, 0] + B[1, 0] * U[0, 0] + B[1, 1] * U[1, 0] |
| 175 | |
| 176 | print "X_ss", X_ss |
| 177 | |
Austin Schuh | fe6d37e | 2014-03-24 09:45:01 -0700 | [diff] [blame] | 178 | self.U_poly = polytope.HPolytope( |
| 179 | numpy.matrix([[1, 0], |
| 180 | [-1, 0], |
| 181 | [0, 1], |
| 182 | [0, -1]]), |
| 183 | numpy.matrix([[12], |
| 184 | [12], |
| 185 | [12], |
| 186 | [12]])) |
| 187 | |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 188 | self.InitializeState() |
| 189 | |
| 190 | |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 191 | class ClawDeltaU(Claw): |
| 192 | def __init__(self, name="Claw"): |
| 193 | super(ClawDeltaU, self).__init__(name) |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 194 | A_unaugmented = self.A |
| 195 | B_unaugmented = self.B |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 196 | C_unaugmented = self.C |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 197 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 198 | self.A = numpy.matrix([[0.0, 0.0, 0.0, 0.0, 0.0], |
| 199 | [0.0, 0.0, 0.0, 0.0, 0.0], |
| 200 | [0.0, 0.0, 0.0, 0.0, 0.0], |
| 201 | [0.0, 0.0, 0.0, 0.0, 0.0], |
| 202 | [0.0, 0.0, 0.0, 0.0, 1.0]]) |
| 203 | self.A[0:4, 0:4] = A_unaugmented |
| 204 | self.A[0:4, 4] = B_unaugmented[0:4, 0] |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 205 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 206 | self.B = numpy.matrix([[0.0, 0.0], |
| 207 | [0.0, 0.0], |
| 208 | [0.0, 0.0], |
| 209 | [0.0, 0.0], |
| 210 | [1.0, 0.0]]) |
| 211 | self.B[0:4, 1] = B_unaugmented[0:4, 1] |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 212 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 213 | self.C = numpy.concatenate((C_unaugmented, numpy.matrix([[0.0], [0.0]])), |
| 214 | axis=1) |
| 215 | self.D = numpy.matrix([[0.0, 0.0], |
| 216 | [0.0, 0.0]]) |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 217 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 218 | #self.PlaceControllerPoles([0.55, 0.35, 0.55, 0.35, 0.80]) |
| 219 | self.Q = numpy.matrix([[(1.0 / (0.04 ** 2.0)), 0.0, 0.0, 0.0, 0.0], |
| 220 | [0.0, (1.0 / (0.01 ** 2)), 0.0, 0.0, 0.0], |
| 221 | [0.0, 0.0, 0.01, 0.0, 0.0], |
| 222 | [0.0, 0.0, 0.0, 0.08, 0.0], |
| 223 | [0.0, 0.0, 0.0, 0.0, (1.0 / (10.0 ** 2))]]) |
| 224 | |
| 225 | self.R = numpy.matrix([[0.000001, 0.0], |
| 226 | [0.0, 1.0 / (10.0 ** 2.0)]]) |
| 227 | self.K = controls.dlqr(self.A, self.B, self.Q, self.R) |
| 228 | |
| 229 | self.K = numpy.matrix([[50.0, 0.0, 10.0, 0.0, 1.0], |
| 230 | [50.0, 0.0, 10.0, 0.0, 1.0]]) |
| 231 | #self.K = numpy.matrix([[50.0, -100.0, 0, -10, 0], |
| 232 | # [50.0, 100.0, 0, 10, 0]]) |
| 233 | |
| 234 | controlability = controls.ctrb(self.A, self.B); |
| 235 | print "Rank of augmented controlability matrix.", numpy.linalg.matrix_rank(controlability) |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 236 | |
| 237 | print "K" |
| 238 | print self.K |
| 239 | print "Placed controller poles are" |
| 240 | print numpy.linalg.eig(self.A - self.B * self.K)[0] |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 241 | print [numpy.abs(x) for x in numpy.linalg.eig(self.A - self.B * self.K)[0]] |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 242 | |
| 243 | self.rpl = .05 |
| 244 | self.ipl = 0.008 |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 245 | self.PlaceObserverPoles([self.rpl + 1j * self.ipl, 0.10, 0.09, |
Brian Silverman | 23a67ca | 2013-03-16 23:48:50 -0700 | [diff] [blame] | 246 | self.rpl - 1j * self.ipl, 0.90]) |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 247 | #print "A is" |
| 248 | #print self.A |
| 249 | #print "L is" |
| 250 | #print self.L |
| 251 | #print "C is" |
| 252 | #print self.C |
| 253 | #print "A - LC is" |
| 254 | #print self.A - self.L * self.C |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 255 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 256 | #print "Placed observer poles are" |
| 257 | #print numpy.linalg.eig(self.A - self.L * self.C)[0] |
| 258 | |
| 259 | self.U_max = numpy.matrix([[12.0], [12.0]]) |
| 260 | self.U_min = numpy.matrix([[-12.0], [-12.0]]) |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 261 | |
| 262 | self.InitializeState() |
| 263 | |
| 264 | |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 265 | def FullSeparationPriority(claw, U): |
| 266 | bottom_u = U[0, 0] |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 267 | top_u = U[1, 0] |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 268 | |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 269 | if bottom_u > claw.U_max[0, 0]: |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 270 | top_u -= bottom_u - claw.U_max[0, 0] |
| 271 | if top_u < claw.U_min[1, 0]: |
| 272 | top_u = claw.U_min[1, 0] |
| 273 | |
| 274 | bottom_u = claw.U_max[0, 0] |
| 275 | if top_u > claw.U_max[1, 0]: |
| 276 | bottom_u -= top_u - claw.U_max[1, 0] |
| 277 | if bottom_u < claw.U_min[0, 0]: |
| 278 | bottom_u = claw.U_min[0, 0] |
| 279 | |
| 280 | top_u = claw.U_max[1, 0] |
| 281 | if top_u < claw.U_min[1, 0]: |
| 282 | bottom_u -= top_u - claw.U_min[1, 0] |
| 283 | if bottom_u > claw.U_max[0, 0]: |
| 284 | bottom_u = claw.U_max[0, 0] |
| 285 | |
| 286 | top_u = claw.U_min[1, 0] |
| 287 | if bottom_u < claw.U_min[0, 0]: |
| 288 | top_u -= bottom_u - claw.U_min[0, 0] |
| 289 | if top_u > claw.U_max[1, 0]: |
| 290 | top_u = claw.U_max[1, 0] |
| 291 | |
| 292 | bottom_u = claw.U_min[0, 0] |
| 293 | |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 294 | return numpy.matrix([[bottom_u], [top_u]]) |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 295 | |
Austin Schuh | fe6d37e | 2014-03-24 09:45:01 -0700 | [diff] [blame] | 296 | def ScaleU(claw, U, K, error): |
| 297 | """Clips U as necessary. |
| 298 | |
| 299 | Args: |
| 300 | claw: claw object containing moments of inertia and U limits. |
| 301 | U: Input matrix to clip as necessary. |
| 302 | """ |
| 303 | bottom_u = U[0, 0] |
| 304 | top_u = U[1, 0] |
| 305 | |
| 306 | if (bottom_u > claw.U_max[0, 0] or bottom_u < claw.U_min[0, 0] or |
| 307 | top_u > claw.U_max[0, 0] or top_u < claw.U_min[0, 0]): |
| 308 | |
| 309 | position_K = K[:, 0:2] |
| 310 | velocity_K = K[:, 2:] |
| 311 | position_error = error[0:2, 0] |
| 312 | velocity_error = error[2:, 0] |
| 313 | |
| 314 | # H * U <= k |
| 315 | # U = UPos + UVel |
| 316 | # H * (UPos + UVel) <= k |
| 317 | # H * UPos <= k - H * UVel |
| 318 | # |
| 319 | # Now, we can do a coordinate transformation and say the following. |
| 320 | # |
| 321 | # UPos = position_K * position_error |
| 322 | # (H * position_K) * position_error <= k - H * UVel |
| 323 | # |
| 324 | # Add in the constraint that 0 <= t <= 1 |
| 325 | # Now, there are 2 ways this can go. Either we have a region, or we don't |
| 326 | # have a region. If we have a region, then pick the largest t and go for it. |
| 327 | # If we don't have a region, we need to pick a good comprimise. |
| 328 | |
| 329 | # First prototype! -> Only cap the position power, leave the velocity power active. |
| 330 | |
| 331 | #u_velocity = velocity_K * velocity_error |
| 332 | #u_position = position_K * position_error |
| 333 | #scalar = min(1.0, claw.U_max[0, 0] / max(numpy.abs(u_position[0, 0]), numpy.abs(u_position[1, 0]))) |
| 334 | #return u_velocity + scalar * u_position |
| 335 | |
| 336 | pos_poly = polytope.HPolytope( |
| 337 | claw.U_poly.H * position_K, |
| 338 | claw.U_poly.k - claw.U_poly.H * velocity_K * velocity_error) |
| 339 | |
| 340 | adjusted_pos_error = polydrivetrain.CoerceGoal(pos_poly, numpy.matrix([[position_error[1, 0], -position_error[0, 0]]]), 0.0, position_error) |
| 341 | |
| 342 | return velocity_K * velocity_error + position_K * adjusted_pos_error |
| 343 | |
| 344 | #U = Kpos * poserror + Kvel * velerror |
| 345 | |
| 346 | #scalar = claw.U_max[0, 0] / max(numpy.abs(top_u), numpy.abs(bottom_u)) |
| 347 | |
| 348 | #top_u *= scalar |
| 349 | #bottom_u *= scalar |
| 350 | |
| 351 | return numpy.matrix([[bottom_u], [top_u]]) |
| 352 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 353 | def AverageUFix(claw, U, preserve_v3=False): |
| 354 | """Clips U as necessary. |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 355 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 356 | Args: |
| 357 | claw: claw object containing moments of inertia and U limits. |
| 358 | U: Input matrix to clip as necessary. |
| 359 | preserve_v3: There are two ways to attempt to clip the voltages: |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 360 | -If you preserve the imaginary v3, then it will attempt to |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 361 | preserve the effect on the separation of the two claws. |
| 362 | If it is not able to do this, then it calls itself with preserve_v3 |
| 363 | set to False. |
| 364 | -If you preserve the ratio of the voltage of the bottom and the top, |
| 365 | then it will attempt to preserve the ratio of those two. This is |
| 366 | equivalent to preserving the ratio of v3 and the bottom voltage. |
| 367 | """ |
| 368 | bottom_u = U[0, 0] |
| 369 | top_u = U[1, 0] |
| 370 | seperation_u = top_u - bottom_u * claw.J_top / claw.J_bottom |
| 371 | |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 372 | bottom_bad = bottom_u > claw.U_max[0, 0] or bottom_u < claw.U_min[0, 0] |
Austin Schuh | 170fe25 | 2014-02-22 15:52:01 -0800 | [diff] [blame] | 373 | top_bad = top_u > claw.U_max[0, 0] or top_u < claw.U_min[0, 0] |
| 374 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 375 | scalar = claw.U_max[0, 0] / max(numpy.abs(top_u), numpy.abs(bottom_u)) |
| 376 | if bottom_bad and preserve_v3: |
| 377 | bottom_u *= scalar |
| 378 | top_u = seperation_u + bottom_u * claw.J_top / claw.J_bottom |
| 379 | if abs(top_u) > claw.U_max[0, 0]: |
| 380 | return AverageUFix(claw, U, preserve_v3=False) |
| 381 | elif top_bad and preserve_v3: |
| 382 | top_u *= scalar |
| 383 | bottom_u = (top_u - seperation_u) * claw.J_bottom / claw.J_top |
| 384 | if abs(bottom_u) > claw.U_max[0, 0]: |
| 385 | return AverageUFix(claw, U, preserve_v3=False) |
| 386 | elif (bottom_bad or top_bad) and not preserve_v3: |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 387 | top_u *= scalar |
| 388 | bottom_u *= scalar |
Austin Schuh | 2758ade | 2014-02-22 16:58:21 -0800 | [diff] [blame] | 389 | print "Scaling" |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 390 | |
James Kuszmaul | c02a39a | 2014-02-18 15:45:16 -0800 | [diff] [blame] | 391 | return numpy.matrix([[bottom_u], [top_u]]) |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 392 | |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 393 | def ClipDeltaU(claw, U): |
| 394 | delta_u = U[0, 0] |
| 395 | top_u = U[1, 0] |
| 396 | old_bottom_u = claw.X[4, 0] |
| 397 | |
| 398 | # TODO(austin): Preserve the difference between the top and bottom power. |
| 399 | new_unclipped_bottom_u = old_bottom_u + delta_u |
| 400 | |
| 401 | #print "Bottom is", new_unclipped_bottom_u, "Top is", top_u |
| 402 | if new_unclipped_bottom_u > claw.U_max[0, 0]: |
Austin Schuh | 0d9467a | 2014-02-15 22:36:45 -0800 | [diff] [blame] | 403 | top_u -= new_unclipped_bottom_u - claw.U_max[0, 0] |
| 404 | new_unclipped_bottom_u = claw.U_max[0, 0] |
| 405 | if top_u > claw.U_max[1, 0]: |
| 406 | new_unclipped_bottom_u -= top_u - claw.U_max[1, 0] |
| 407 | top_u = claw.U_max[1, 0] |
| 408 | if top_u < claw.U_min[1, 0]: |
| 409 | new_unclipped_bottom_u -= top_u - claw.U_min[1, 0] |
| 410 | top_u = claw.U_min[1, 0] |
| 411 | if new_unclipped_bottom_u < claw.U_min[0, 0]: |
| 412 | top_u -= new_unclipped_bottom_u - claw.U_min[0, 0] |
| 413 | new_unclipped_bottom_u = claw.U_min[0, 0] |
| 414 | |
| 415 | new_bottom_u = numpy.clip(new_unclipped_bottom_u, claw.U_min[0, 0], claw.U_max[0, 0]) |
| 416 | new_top_u = numpy.clip(top_u, claw.U_min[1, 0], claw.U_max[1, 0]) |
| 417 | |
| 418 | return numpy.matrix([[new_bottom_u - old_bottom_u], [new_top_u]]) |
Austin Schuh | c1f6889 | 2013-03-16 17:06:27 -0700 | [diff] [blame] | 419 | |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame^] | 420 | def run_test(claw, initial_X, goal, max_separation_error=0.01, show_graph=True, iterations=200): |
| 421 | """Runs the claw plant on a given claw (claw) with an initial condition (initial_X) and goal (goal). |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 422 | |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame^] | 423 | The tests themselves are not terribly sophisticated; I just test for |
| 424 | whether the goal has been reached and whether the separation goes |
| 425 | outside of the initial and goal values by more then max_separation_error. |
| 426 | Prints out something for a failure of either condition and returns |
| 427 | False if tests fail. |
| 428 | Args: |
| 429 | claw: claw object to use. |
| 430 | initial_X: starting state. |
| 431 | goal: goal state. |
| 432 | show_graph: Whether or not to display a graph showing the changing |
| 433 | states and voltages. |
| 434 | iterations: Number of timesteps to run the model for.""" |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 435 | |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame^] | 436 | claw.X = initial_X |
| 437 | |
| 438 | # Various lists for graphing things. |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 439 | t = [] |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame^] | 440 | x_bottom = [] |
| 441 | x_top = [] |
| 442 | u_bottom = [] |
| 443 | u_top = [] |
| 444 | x_separation = [] |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 445 | |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame^] | 446 | tests_passed = True |
| 447 | |
| 448 | # Bounds which separation should not exceed. |
| 449 | lower_bound = (initial_X[1, 0] if initial_X[1, 0] < goal[1, 0] |
| 450 | else goal[1, 0]) - max_separation_error |
| 451 | upper_bound = (initial_X[1, 0] if initial_X[1, 0] > goal[1, 0] |
| 452 | else goal[1, 0]) + max_separation_error |
| 453 | |
| 454 | for i in xrange(iterations): |
| 455 | U = claw.K * (goal - claw.X) |
| 456 | U = ScaleU(claw, U, claw.K, goal - claw.X) |
| 457 | claw.Update(U) |
| 458 | |
| 459 | if claw.X[1, 0] > upper_bound or claw.X[1, 0] < lower_bound: |
| 460 | tests_passed = False |
| 461 | print "Claw separation was", claw.X[1, 0] |
| 462 | print "Should have been between", lower_bound, "and", upper_bound |
| 463 | |
| 464 | t.append(i * claw.dt) |
| 465 | x_bottom.append(claw.X[0, 0] * 10.0) |
| 466 | x_top.append((claw.X[1, 0] + claw.X[0, 0]) * 10.0) |
| 467 | u_bottom.append(U[0, 0]) |
| 468 | u_top.append(U[1, 0]) |
| 469 | x_separation.append(claw.X[1, 0] * 10.0) |
| 470 | |
| 471 | if show_graph: |
| 472 | pylab.plot(t, x_bottom, label='x bottom * 10') |
| 473 | pylab.plot(t, x_top, label='x top * 10') |
| 474 | pylab.plot(t, u_bottom, label='u bottom') |
| 475 | pylab.plot(t, u_top, label='u top') |
| 476 | pylab.plot(t, x_separation, label='separation * 10') |
| 477 | pylab.legend() |
| 478 | pylab.show() |
| 479 | |
| 480 | # Test to make sure that we are near the goal. |
| 481 | if numpy.max(abs(claw.X - goal)) > 1e-4: |
| 482 | tests_passed = False |
| 483 | print "X was", claw.X, "Expected", goal |
| 484 | |
| 485 | return tests_passed |
| 486 | |
| 487 | def main(argv): |
| 488 | claw = Claw() |
| 489 | |
| 490 | # Test moving the claw with constant separation. |
| 491 | initial_X = numpy.matrix([[-1.0], [0.0], [0.0], [0.0]]) |
| 492 | R = numpy.matrix([[1.0], [0.0], [0.0], [0.0]]) |
| 493 | run_test(claw, initial_X, R) |
| 494 | |
| 495 | # Test just changing separation. |
| 496 | initial_X = numpy.matrix([[0.0], [0.0], [0.0], [0.0]]) |
| 497 | R = numpy.matrix([[0.0], [1.0], [0.0], [0.0]]) |
| 498 | run_test(claw, initial_X, R) |
| 499 | |
| 500 | # Test changing both separation and position at once.. |
| 501 | initial_X = numpy.matrix([[0.0], [0.0], [0.0], [0.0]]) |
| 502 | R = numpy.matrix([[1.0], [1.0], [0.0], [0.0]]) |
| 503 | run_test(claw, initial_X, R) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 504 | |
Austin Schuh | 3c54231 | 2013-02-24 01:53:50 -0800 | [diff] [blame] | 505 | # Write the generated constants out to a file. |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 506 | if len(argv) != 3: |
| 507 | print "Expected .h file name and .cc file name for the claw." |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 508 | else: |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 509 | claw = Claw("Claw") |
| 510 | loop_writer = control_loop.ControlLoopWriter("Claw", [claw]) |
Austin Schuh | 683a0d0 | 2013-03-02 01:51:31 -0800 | [diff] [blame] | 511 | if argv[1][-3:] == '.cc': |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 512 | loop_writer.Write(argv[2], argv[1]) |
Austin Schuh | 683a0d0 | 2013-03-02 01:51:31 -0800 | [diff] [blame] | 513 | else: |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 514 | loop_writer.Write(argv[1], argv[2]) |
Austin Schuh | c8ca244 | 2013-02-23 12:29:33 -0800 | [diff] [blame] | 515 | |
| 516 | if __name__ == '__main__': |
| 517 | sys.exit(main(sys.argv)) |