Rocket Instrument Data Parsing

Realtime Data Parsing

Rocket instruments demand constant, real-time monitoring to assess hardware health and nominal behavior. This is especially important when the rocket is on the rail, 60 seconds from launch, awaiting a go/no-go status check. For this reason, the code or software that parses instrument data streams is a crucial component of rocket instrument design.

I contributed to the development of such monitoring software for the rocket Mini Plasma Imager (rMPI) and overhauled the parsing code for the Petite Ion Probes (PIP), transitioning it to Python 3 to take advantage of its significantly improved binary data handling. A time step of the real-time plotting is shown here.

The PIPs communicate using the RS-422 protocol with asynchronous data streams. This necessitates the use of sentinel values to indicate the start of a specific message. The PIP data can include up to four messages per data point.

Pass-Through Parsing

Sounding rockets collect only a few minutes of data during flight, making it vital to prevent data dropouts or, worse, parser crashes. To enhance reliability, I divided the parser into two top-level functionalities. This first script, shield_feed.py, has just two tasks: read data from the serial port and write it to standard output and a data file. The only event that can terminate this script is a Keyboard Interrupt, ensuring that, regardless of issues with the parsing and plotting scripts, the data will not be lost.

The output of this script can be passed through, or piped, into a second script, shield_realtime.py, which handles parsing and plotting. One particularly challenging aspect of this process is synchronization given that the cadence of the instrument data stream and the speed at which the parsing and plotting happens do not necessarily align. To address this, the number of bytes parsed per time step adjusts gradually, allowing the parser to function on different systems with various processing speeds.

The pass-through parser setup has another benefit in that a saved data file can be piped into the real-time parser script, replaying the data file. Additional scripts I wrote are shield_plot.py, which parses and plots an entire data file at once, and shield_simulator.py, which simulates the data stream of an instrument by reading a data file and looping it over a virtual serial port connection.