]> defiant.homedns.org Git - ros_wild_thumper.git/blob - scripts/dwm1000.py
dwm1000: variance dependant on distance
[ros_wild_thumper.git] / scripts / dwm1000.py
1 #!/usr/bin/env python
2 # -*- coding: iso-8859-15 -*-
3
4 VISULAIZE = False
5
6 import threading
7 import struct
8 import rospy
9 import tf
10 import numpy as np
11 from math import *
12 from datetime import datetime
13 from i2c import i2c
14 from time import sleep
15 from std_msgs.msg import Float32
16 from nav_msgs.msg import Odometry
17 from wild_thumper.srv import DWM1000Center, DWM1000CenterResponse
18 if VISULAIZE:
19         import matplotlib.pyplot as plt
20
21 class simple_kalman:
22         def __init__(self, x_est, P_est, Q, R):
23                 self.x_est = x_est # Systemzustand
24                 self.P_est = P_est # Fehlerkovarianz
25                 self.Q = Q # Systemrauschen
26                 self.R = R # Varianz des Messfehlers
27
28         def run(self, y):
29                 # Korrektur mit der Messung
30                 # (1) Berechnung der Kalman Verstärkung
31                 K = self.P_est/(self.R + self.P_est)
32                 # (2) Korrektur der Schätzung mit der Messung y
33                 x = self.x_est + K*(y - self.x_est)
34                 # (3) Korrektur der Fehlerkovarianzmatrix
35                 P = (1-K)*self.P_est
36                 #
37                 # Prädiktion
38                 # (1) Prädiziere den Systemzustand
39                 self.x_est = x
40                 # (2) Präzidiere die Fehlerkovarianzmatrix
41                 self.P_est = P + self.Q
42
43                 return x
44
45 class DW1000(threading.Thread):
46         def __init__(self, name, addr, offset):
47                 threading.Thread.__init__(self)
48                 self.setDaemon(1)
49                 self.dist = 0
50                 self.offset = offset
51                 self.addr = addr
52                 self.name = name
53                 self.last_update = datetime.min
54
55                 self.pub = rospy.Publisher(name, Float32, queue_size=16)
56
57                 self.start()
58
59         def get_value(self):
60                 dev = i2c(self.addr)
61                 ret = struct.unpack("f", dev.read(4))
62                 dev.close()
63                 return ret[0]
64
65         def distance(self):
66                 return self.dist
67
68         # Returns each distance only if current
69         def distance_valid(self):
70                 if (datetime.now() - self.last_update).seconds < 1:
71                         return self.dist
72                 return None
73
74         def run(self):
75                 last_val = 10
76                 while not rospy.is_shutdown():
77                         val = self.get_value()
78                         if abs(val - last_val)  > 10:
79                                 rospy.logwarn("Ignoring values too far apart %s: %.2f - %.2f", self.name, val, last_val)
80                         elif not isnan(val):
81                                 self.dist = val + self.offset
82                                 self.last_update = datetime.now()
83                                 self.pub.publish(self.distance())
84                                 last_val = val
85                         sleep(0.1)
86
87 class Position:
88         def __init__(self):
89                 # Varianz des Messfehlers
90                 Rx = 0.2
91                 Ry = 0.05
92                 # Fehlerkovarianz
93                 P_est_x = 0.02
94                 P_est_y = 0.01
95                 # Systemrauschen
96                 Q = 0.002
97                 self.filter_x = simple_kalman(1.0, P_est_x, Q, Rx)
98                 self.filter_y = simple_kalman(0.0, P_est_y, Q, Ry)
99                 self.speed_x = 0
100                 self.speed_y = 0
101                 self.speed_z = 0
102                 self.last_time = rospy.Time.now()
103                 rospy.Subscriber("/odom_combined", Odometry, self.odomReceived)
104
105         def odomReceived(self, msg):
106                 self.speed_x = msg.twist.twist.linear.x
107                 self.speed_y = msg.twist.twist.linear.y
108                 self.speed_z = msg.twist.twist.angular.z
109
110         def filter(self, x, y):
111                 # Correct estimation with speed
112                 current_time = rospy.Time.now()
113                 dt = (current_time - self.last_time).to_sec()
114                 # Subtract vehicle speed
115                 pos = np.array([self.filter_x.x_est, self.filter_y.x_est])
116                 # translation
117                 pos -= np.array([self.speed_x*dt, self.speed_y*dt])
118                 # rotation
119                 rot = np.array([[np.cos(self.speed_z*dt), -np.sin(self.speed_z*dt)],
120                                 [np.sin(self.speed_z*dt),  np.cos(self.speed_z*dt)]])
121                 pos = np.dot(pos, rot)
122                 # copy back
123                 self.filter_x.x_est = pos[0]
124                 self.filter_y.x_est = pos[1]
125
126                 # run kalman if new measurements are valid
127                 if x != None and y != None:
128                         print "Var", self.filter_x.R, self.filter_y.R
129                         x = self.filter_x.run(x)
130                         y = self.filter_y.run(y)
131
132                         # Update covariance
133                         dist = np.linalg.norm([x, y])
134                         self.filter_x.R = np.polyval([0.017795,  -0.021832, 0.010968], dist)
135                         self.filter_y.R = np.polyval([0.0060314, -0.013387, 0.0065049], dist)
136                 else:
137                         x = self.filter_x.x_est
138                         y = self.filter_y.x_est
139
140                 self.last_time = current_time
141                 return x,y
142
143
144 def handle_center_call(req):
145         diff = dwleft.distance_valid() - dwright.distance_valid()
146         dwleft.offset -= diff/2
147         dwright.offset += diff/2
148         rospy.loginfo("Centering to %.2f %.2f", dwleft.offset, dwright.offset)
149         return DWM1000CenterResponse()
150
151 if __name__ == "__main__":
152         rospy.init_node('DWM1000', log_level=rospy.DEBUG)
153         dwleft  = DW1000("uwb_dist_left",  0xc2, +0.00)
154         dwright = DW1000("uwb_dist_right", 0xc0, -0.00)
155         dist_l_r = 0.285 # Distance between both DWM1000
156         rate = rospy.Rate(10)
157         pos = Position()
158         tf_broadcaster = tf.broadcaster.TransformBroadcaster()
159         rospy.Service('/DWM1000/center', DWM1000Center, handle_center_call)
160
161         while not rospy.is_shutdown() and dwleft.is_alive() and dwright.is_alive():
162                 dist_left = dwleft.distance_valid()
163                 dist_right = dwright.distance_valid()
164                 if dist_left == None or dist_right == None:
165                         rospy.logerr("no valid sensor update")
166                         # run kalman prediction only
167                         pos.filter(None, None)
168                 else:
169                         dir = "left" if (dist_left < dist_right) else "right"
170
171                         diff = abs(dist_left - dist_right)
172                         if diff >= dist_l_r:
173                                 # difference to high, correct to maximum
174                                 off = diff - dist_l_r + 0.01
175                                 if dist_left > dist_right:
176                                         dist_left -= off/2
177                                         dist_right += off/2
178                                 else:
179                                         dist_left += off/2
180                                         dist_right -= off/2
181                         rospy.logdebug("%.2f %.2f %.2f %.2f %s", dwleft.distance(), dwright.distance(), dist_left, dist_right, dir)
182
183                         a_r = (-dist_right**2 + dist_left**2 - dist_l_r**2) / (-2*dist_l_r)
184                         x = dist_l_r/2 - a_r
185                         t = dist_right**2 - a_r**2
186                         if t >= 0:
187                                 y = sqrt(t)
188                                 rospy.logdebug("x=%.2f, y=%.2f", x, y)
189                                 # Rotate 90 deg
190                                 x, y = (y, -x)
191
192                                 x, y = pos.filter(x, y)
193                                 tf_broadcaster.sendTransform((x, y, 0.0), (0, 0, 0, 1), rospy.Time.now(), "uwb_beacon", "base_footprint")
194
195                                 if VISULAIZE:
196                                         circle_left = plt.Circle((-dist_l_r/2, 0), dwleft.distance, color='red', fill=False)
197                                         circle_right = plt.Circle((dist_l_r/2, 0), dwright.distance, color='green', fill=False)
198                                         plt.gca().add_patch(circle_left)
199                                         plt.gca().add_patch(circle_right)
200                                         plt.grid(True)
201                                         plt.axis('scaled')
202                                         plt.show()
203                         else:
204                                 # No current position, still need up update kalman prediction
205                                 pos.filter(None, None)
206
207                 rate.sleep()