Quote:
The simple way to do it, if you're going a little bit at a time anyway, is to simply accelerate in the direction of the target. The computer will have some overshooting issues, and it won't be the most efficient course, but it'll do the job eventually.
|
A variation on this which may (or may not) work better would be:
Missile looks at where target is now, and figures how much time it would take the missile to accellerate in a straight line and get to that point. Lets say it predicts it could get there at time U.
Missile now predicts where target will be at time U based on target's current course and accelleration. Lets call this Location K. (I like picking random letters to use a variables, it bugs reals mathematicians/ scientists=-).
Missile begins accelerating towards K.
Every time the target changes course or acceleration, go back to square one.
When missile gets within a certain "kill range" of the target, it startss accellerating directly toward the target instead of some predicted future position.
Again, it's not perfect. Overshooting may still occur (but less so than if always accellerating directly at the target), and it might do crazy things if the target takes violent evasive maneuvers, but it seems to me it ought to generate something akin to a decent intercept. As a bonus, it only has to recalculate when the target changes course, instead of all the time, thus saving you CPU cycles.
Just a thought.