walker1
Industrial
- Dec 27, 2001
- 117
We need to slave our turntable to an external radar. We will also have to predict a little time forward in order to compensate for various delays. A Kalman-like approach seems a good solution.
The radar delivers various data, including X, Y and Z position on the target, so standard Kalman can be used.
However, some speed parameters of the target are also available!
How do one send those into a filter? All I have seen so far in books and on the web deals with position only.
A weighted combined value based on 1 derivative of position and the measured speed seems likely.
Something like: vn,n = vn,n-1 + h*[(1-w)*Δp/T + w*vn]
But is it that 'simple'?
Anybody, who got a good link to an article about this?
The radar delivers various data, including X, Y and Z position on the target, so standard Kalman can be used.
However, some speed parameters of the target are also available!
How do one send those into a filter? All I have seen so far in books and on the web deals with position only.
A weighted combined value based on 1 derivative of position and the measured speed seems likely.
Something like: vn,n = vn,n-1 + h*[(1-w)*Δp/T + w*vn]
vn : observed speed to feed into the filter
vn,n-1 : last filtered speed
vn,n : updated filtered speed
h : filter gain for speed
Δp : difference in position since last
T : sample time
w : weight value 0<w<1
But is it that 'simple'?
Anybody, who got a good link to an article about this?