GNS/INS (Inertial Navigation System) integration

AI Thread Summary
The discussion focuses on the integration of a GPS and Inertial Navigation System (INS) model, specifically addressing challenges during GPS outages. The user has developed mechanization equations for the INS and a Kalman filter to estimate position errors based on the differences between GPS and INS data. However, they are uncertain about how to proceed when GPS data is unavailable, as the Kalman filter cannot function without new measurements. Suggestions include exploring existing literature on inertial navigation during GPS outages and considering the use of the INS model for predictions in the absence of GPS data. The user seeks validation of their approach and understanding of the Kalman filter's application in this context.
ramesses
Messages
16
Reaction score
0
Hi
I'm working on a GPS/INS model.

Now I developped the mecanization equations for the INS.

I have a kalman filter which estimate the error state (position error with respect to north and east).

it takes as an input the diffrence between GPS and INS and gives its estimation .

I have developped a gauss-markov process which very similar to sensor noise (after applying wavlet).

Now, I don't know what can I do during the GPS outage ?

Because the mesaures are not available during this periode; I can't use Kalman filter.

Documentation that I have, doesn't say clearly what to do during GPS outage.
 
Engineering news on Phys.org
ramesses said:
Hi
I'm working on a GPS/INS model.

Now I developped the mecanization equations for the INS.

I have a kalman filter which estimate the error state (position error with respect to north and east).

it takes as an input the diffrence between GPS and INS and gives its estimation .

I have developped a gauss-markov process which very similar to sensor noise (after applying wavlet).

Now, I don't know what can I do during the GPS outage ?

Because the mesaures are not available during this periode; I can't use Kalman filter.

Documentation that I have, doesn't say clearly what to do during GPS outage.

I googled Inertial Navigation During GPS Outage, and got some pretty good hits. Maybe have a look through some of them to see if they give you some ideas...

https://www.google.com/search?sourc...s+outage&gs_l=hp...0.0.0.7637...0.uCHzFb-uDEc

:smile:
 
ramesses said:
Now, I don't know what can I do during the GPS outage ?
During the GPS outage your GPS fix has infinite, or perhaps some really large, variance. So what happens to your Kalman filter when that happens?
 
@berkeman
Thank you :)
olivermsun said:
During the GPS outage your GPS fix has infinite, or perhaps some really large, variance. So what happens to your Kalman filter when that happens?
Kalman filter doesn't work until a new GPS's measure comes. unless the Kalman filter can't be used
 
Last edited:
Doesn't your Kalman filter have at least one input which is the integrating model from your INS?
 
Hello;
the system starts its loop after receiving the initiale position, bearing and speed from the GPS receiver.
this loop, presented in the first figure, is used during GPS outage.
2B4qVqQZVPD0.png

Now, when a new measure comes from a the GPS receiver, the distance between the GPS and INS positions will be used as input for the kalman filter.
2B4qkWENiM1S.png

the measurement equation, as in [1],is
2B4r14BBjQsU.png


I followed the same model as ([1]), except I used Gauss-Markov process instead of autoregression.
2B4quCJX5Css.png

The vector in the right is called the error state vector. It is used to estime the INS error.
αuN and αvN are the parameters of the 4 ordre autoregression process for the 2 accelerometer axes.

If I have well understand, the use of the process parameters inside this matrix serve for the prediction step. it gives an estimation for the evolution of the error for the epoch t+(1/INS_frequency)
but after giving its feedback, the error state vector will reset to zeros

What do you think about it ?

Sorry for my english

[1]Park, Minha, and Yang Gao. "Error and performance analysis of MEMS-based inertial sensors with a low-cost GPS receiver." Sensors 8.4 (2008): 2240-2261.
link to document: http://www.mdpi.com/1424-8220/8/4/2240/htm
link to PFE document: http://www.mdpi.com/1424-8220/8/4/2240/pdf
 
your opinion is very important to me, because I'm not very sure, that I used kalman filter correctly.
thank you
 
Back
Top