Implementing Onboard Data Compression for the Van Allen Probes

Size: px
Start display at page:

Download "Implementing Onboard Data Compression for the Van Allen Probes"

Transcription

1 Implementing Onboard Data Van Allen Probes Compression for the Van Allen Probes Mark Reid Johns Hopkins University, Applied Physics Lab 1

2 Agenda Introduction Rationale for Adding Compression Recorder Management Software Overview Requirements Additions High Level Design, with Compression Configuration Parameter Table Considerations for Flight Compression Performance and CPU Usage Conclusions 2

3 Introduction The Van Allen Probes mission is a NASA mission to study near-earth space radiation. The mission consists of two nearly identical spacecraft. Each spacecraft hosts 5 instrument suites, with a total of 10 unique science instruments per spacecraft. The launch build of the Command and Data Handling (C&DH) Flight Software (FSW) for each spacecraft consisted of 17 unique applications and 8 libraries built upon NASA s core Flight Executive (cfe). This presentation will discuss the addition of an 18 th application post launch, which added on-board data compression of science, housekeeping and engineering data. 3

4 Rationale for Adding Compression FSW team evaluated 2 weeks of observatory data following commissioning Used gzip of files of recorded data Determined compression could result in a data reduction of approximately 1/3 (or 50% more data) Prototyped an application on FSW test-bed hardware Refined algorithm for packet level compression Verified performance on target hardware Estimated software to require 5% of the available CPU Also required a small memory footprint (RAM and EEPROM) Evaluated impact of implementing the prototype for flight Estimated both FSW and Ground Software (GSW) effort 3.5 Staff Months of additional effort (not in the baseline plan) 4 Calendar Months to implement Implementation was deemed low risk and transparent to operations 4

5 Recorder Management Software Overview Instrument Interfaces Spacecraft Interfaces (PDU, PSE, XCVR) SSR Directory Structure Instrument HK, Science Spacecraft HK IM SI Other Apps HK Packets REC File Opened For Write /ssr/rec/ Moved by REC when closed File Moved To DNL for Playback /ssr/px/ Downlink Protocol Data Units (PDU) Buffer CFDP Output Stream PB File Opened for Read /ssr/dnl/ /ssr/trash/ File Deleted or Moved by PB when closed If Auto-delete OFF 5 Major applications involved in creating, moving or deleting files in the flow of data on and off of SSR. Instrument Management (IM) and Spacecraft Interface (SI) receive interface data. TO CCSDS Downlink Telemetry Frames Record (REC) and Playback (PB) move data on and off of the Solid State Recorder (SSR) Telemetry Output (TO) sends data to the downlink 5

6 C&DH Software Requirements Additions 6

7 High Level Design ZIP Application in the Existing Data Flow Small modification to REC application to rename output file in the REC directory Instrument Interfaces Instrument HK, Science IM Spacecraft Interfaces (PDU, PSE, XCVR) Spacecraft HK SI Other Apps HK New ZIP application operates on files in the REC directory ZIP places its outputs in the output Priority (P0-P3) directories There was also a small impact on TO, REC and Autonomy (AUT) applications to subscribe to new ZIP housekeeping packet Downlink Protocol Data Units (PDU) Buffer CFDP Output Stream REC ZIP PB TO Packets File Opened For Write.rec file Deflated back to original filename File Moved To DNL for Playback File Opened for Read /ssr/rec/ /ram/rec/ /ssr/rec/ /ram/rec/ /ssr/px/ /ram/px/ /ssr/dnl/ /ssr/trash/ Renamed to.rec file by REC when closed Moved by ZIP when closed File Deleted or Moved by PB when closed If Auto-delete OFF CCSDS Downlink Telemetry Frames 7

8 High Level Design ZIP Application Package Diagrams 8

9 ZIP Configuration Table Parameters Device Input Path Output Path Input Key Output Replace Action FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_A.rec 1_A DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_B.rec 1_B RENAME FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_C.rec 1_C RENAME FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_D.rec 1_D DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_E.rec 1_E DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_F.rec 1_F DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_G.rec 1_G DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_H.rec 1_H DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P1 1_I.rec 1_I DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P2 2_D.rec 2_D DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P2 2_E.rec 2_E DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P2 2_F.rec 2_F RENAME FS_SSR ZIP_DIR_REC ZIP_DIR_P2 2_G.rec 2_G DEFLATE FS_SSR ZIP_DIR_REC ZIP_DIR_P2 2_H.rec 2_H RENAME FS_SSR ZIP_DIR_REC ZIP_DIR_P3 3_H.rec 3_H RENAME FS_RAM ZIP_DIR_REC ZIP_DIR_P0 0_A.rec 0_A RENAME FS_RAM ZIP_DIR_REC ZIP_DIR_P0 0_B.rec 0_B RENAME ZIP_NO_FS ZIP_DIR_REC ZIP_DIR_P0 RENAME ZIP_NO_FS ZIP_DIR_REC ZIP_DIR_P0 "" "" RENAME 9

10 Considerations for Flight Compression Packet Wrapping Telemetry Packets are zipped into the body of a new packet with a Message ID (CCSDS APID) specific to Zipped data. 12 Byte Zipped Packet Header Primary Header ZIP_APID CNT LEN Sec Hdr MET_SEC, SUB_SEC DATA 0x???????? Original Non-Zipped Packet(s) Original Original Non-Zipped Non-Zipped Packet(s) Packet(s) Primary Header Sec Hdr (MET) APID CNT LEN ZIP MET_SEC, SUB_SEC DATA 0x???????? Note: If the output of ZIP is larger than the original Non-Zipped packets, the original packets are written to the output file. Otherwise the smaller ZIPPED packet is written to the output file. Output files can contain all ZIPPED, all Non-Zipped, or a mix of ZIPPED and Non-Zipped packets. The ground software Unzipper keys on the APID to unzip the ZIPPED packet s data in order to retrieve the Non-Zipped packet prior to inserting into the Archive. Zipped Packet Non-Zipped Packet Zipped Packet Zipped Packet Non-Zipped Packet Zipped Packet Non-Zipped Packet 10

11 Considerations for Flight Compression Configuration of zlib Packages zlib deflate package works at a block/buffer level Replaced dynamic memory allocations with statically allocated buffers Chose compression level and buffer sizes to best fit CPU and memory usage Compression Level = 6 ( Good compression vs. CPU usage) Max Memory Level = 5 (16 Kbytes) Max Window Bits = 12 (16 Kbytes) Maximum input/output buffers (~4 Kbytes each) Maximum CCSDS packet length used on Van Allen Probes is 4 Kbytes. Final Application used: ~ 14 Kbytes of EEPROM (compressed) ~ 100 Kbytes of RAM ~ 5% of CPU resources 11

12 Compression Performance Instrument Data Compression Enabled Here 12

13 CPU Usage (before and after compression) When compression is active CPU utilization is between 70% and 90% Raw Telemetry Averaged Value 13

14 Examples of Compression Performance on Various Data Types 14

15 Compression Performance (Spacecraft HK Data) * Compression Ratio = (output file size) / (input file size) 15

16 Compression Performance (ECT Science Data) * Compression Ratio = (output file size) / (input file size) 16

17 Compression Performance (EFW Science Data) * Compression Ratio = (output file size) / (input file size) 17

18 Compression Performance (RBSPICE Science Data) * Compression Ratio = (output file size) / (input file size) 18

19 Compression Performance (EMFISIS Mag Data) * Compression Ratio = (output file size) / (input file size) 19

20 Conclusions Review of on-orbit data led the Van Allen Probes team to consider the benefits of onboard data compression Readily available compression software easily transferred into the Van Allen Probes FSW architecture This small effort has provided a greatly increased science data return This reusable application can provide benefits to future APL projects 20

Lunar Reconnaissance Orbiter (LRO)

Lunar Reconnaissance Orbiter (LRO) Lunar Reconnaissance Orbiter (LRO) CRaTER Technical Interchange Meeting C&DH Flight Software April 14, 2005 1 C&DH Software Overview Command and Data Handling (C&DH) includes the following functions: Decoding

More information

NASA/GSFC s Flight Software Architecture: Core Flight Executive and Core Flight System

NASA/GSFC s Flight Software Architecture: Core Flight Executive and Core Flight System NASA/GSFC s Flight Software Architecture: Core Flight Executive and Core Flight System Alan Cudmore Software Engineering Division NASA/Goddard Space Flight Center Alan.P.Cudmore@nasa.gov 301-286-5809 cfe-

More information

SmartSSR DTN Router. Alan Mick David Edell Workshop on Spacecraft Flight Software FSW-10, 12/8/2010 NOT SUBJECT TO EXPORT (ITAR) CONTROL

SmartSSR DTN Router. Alan Mick David Edell Workshop on Spacecraft Flight Software FSW-10, 12/8/2010 NOT SUBJECT TO EXPORT (ITAR) CONTROL SmartSSR DTN Router 2010 Workshop on Spacecraft Flight Software FSW-10, 12/8/2010 NOT SUBJECT TO EXPORT (ITAR) CONTROL Alan Mick David Edell Alan.Mick@jhuapl.edu David.Edell@jhuapl.edu V02, 11/29/2010

More information

https://mms.gsfc.nasa.gov

https://mms.gsfc.nasa.gov Telemetry Storage Systems: A Comparison of Mission Approaches Robert Klar, Scott Miller and Paul Wood FSW 2016 (Not ITAR Restricted) Overview Magnetospheric Multiscale (MMS) Overview and Storage Approach

More information

National Aeronautics and Space and Administration Space Administration. cfe Release 6.6

National Aeronautics and Space and Administration Space Administration. cfe Release 6.6 National Aeronautics and Space and Administration Space Administration cfe Release 6.6 1 1 A Summary of cfe 6.6 All qualification testing and documentation is now complete and the release has been tagged

More information

The Geostationary Operational Satellite R Series (GOES-R) SpaceWire Implementation

The Geostationary Operational Satellite R Series (GOES-R) SpaceWire Implementation The Geostationary Operational Satellite R Series (GOES-R) SpaceWire Implementation Session: SpaceWire Missions and Applications William H. Anderson NASA Goddard Space Flight Center/MEI Technologies E-mail:

More information

Onboard CORBA Studies Project Review. Kevin Rice GST/NASA-GSFC Code 588 April 2001

Onboard CORBA Studies Project Review. Kevin Rice GST/NASA-GSFC Code 588 April 2001 Onboard CORBA Studies Project Review Kevin Rice GST/NASA-GSFC Code 588 April 2001 Project Phases Phase 1 Port satellite flight software to CORBA Phase 2 Port micro CORBA to flight u-controllers Connect

More information

New Tools for Spacecraft Simulator Development

New Tools for Spacecraft Simulator Development New Tools for Spacecraft Simulator Development March. 2007 Page 1 Why use Simulators? Replace the Spacecraft Support to design Support to testing replacement of real equipment in destructive or expensive

More information

RAD750 TM SPACEWIRE-ENABLED FLIGHT COMPUTER FOR LUNAR RECONNAISSANCE ORBITER

RAD750 TM SPACEWIRE-ENABLED FLIGHT COMPUTER FOR LUNAR RECONNAISSANCE ORBITER RAD750 TM SPACEWIRE-ENABLED FLIGHT COMPUTER FOR LUNAR RECONNAISSANCE ORBITER Session: Onboard Equipment and Software Short Paper Richard Berger, Alan Dennis, David Eckhardt, Suzanne Miller, Jeff Robertson,

More information

Lockheed Martin Corporation. All Rights Reserved. 1

Lockheed Martin Corporation. All Rights Reserved. 1 eileen.b.liu@lmco.com 1 LOCKHEED MARTIN HERITAGE 40 + years of planetary heritage Diverse mission requirements Incremental hardware evolution Strong operations focus Multiple NASA interfaces 2 LOCKHEED

More information

CRaTER Scence Operation Center Requirements Document. Dwg. No

CRaTER Scence Operation Center Requirements Document. Dwg. No Rev. ECO Description Author Approved Date 01 32-157 Initial Release for comment RFGoeke 7/27/06 CRaTER Scence Operation Center Requirements Document Dwg. No. 32-01209 Revision 01 July 26, 2006 32-01209

More information

CCSDS Space Link Extension (SLE)

CCSDS Space Link Extension (SLE) CCSDS Space Link Extension (SLE) Proposal for a NASA Wide Ground Data Service Standard Nascom Block Phase Out Work Group Team Prepared by Larry Muzny Lockheed Martin Space Operations Consolidated Space

More information

CCSDS and NASA Standards for Satellite Control Network Interoperability

CCSDS and NASA Standards for Satellite Control Network Interoperability InterPlanetary Network & Information Systems Directorate CCSDS and NASA Standards for Satellite Network Interoperability Peter Shames Jet Propulsion Laboratory California Institute of Technology The Fundamental

More information

Telemetry Processing and Display Ground System

Telemetry Processing and Display Ground System The MPCS Multimission Telemetry Processing and Display Ground System Its Use in the Mars Science Laboratory Mission and Beyond Josh Choi, Lloyd Deforrest, Marti DeMore Jet Propulsion Laboratory California

More information

IRIG-106 PCM IMPLEMENTATION UTILIZING CONSULTATIVE COMMITTEE FOR SPACE DATA SYSTEMS (CCSDS)

IRIG-106 PCM IMPLEMENTATION UTILIZING CONSULTATIVE COMMITTEE FOR SPACE DATA SYSTEMS (CCSDS) IRIG-106 PCM IMPLEMENTATION UTILIZING CONSULTATIVE COMMITTEE FOR SPACE DATA SYSTEMS (CCSDS) by Casey Tubbs SCI Technology, Inc. 8600 South Memorial Pkwy Huntsville, Alabama 35802 (205) 882-4267 ABSTRACT

More information

Inserting Core Flight System

Inserting Core Flight System Lockheed Martin Space Systems Company Inserting Core Flight System Ryan Slabaugh Michael Phillips Andrew Wobido Rob Chambers October 2015 2015 Lockheed Martin Corporation. All Rights Reserved. 1 Outline

More information

Nanosat Crosslink Transceiver. Boot Code. External Interface Control Document

Nanosat Crosslink Transceiver. Boot Code. External Interface Control Document JHU/APL The Johns Hopkins University Applied Physics Laboratory Nanosat Crosslink Transceiver Boot Code External Interface Control Document Prepared by: Johns Hopkins University/APL NCLT Lead Software

More information

A Reference Architecture for Payload Reusable Software (RAPRS)

A Reference Architecture for Payload Reusable Software (RAPRS) SAND2011-7588 C A Reference Architecture for Payload Reusable Software (RAPRS) 2011 Workshop on Spacecraft Flight Software Richard D. Hunt Sandia National Laboratories P.O. Box 5800 M/S 0513 Albuquerque,

More information

Advanced On-board Control Procedure

Advanced On-board Control Procedure 1 Overview The Advanced On-Board Control Procedure (AOBCP) product is one of a set of technologies that allows to implement cost effective operation and control of a spacecraft. Together these technologies

More information

Solid State Recorder Data Organization Software and Functional Emulator for Mission Planning and Early Integration

Solid State Recorder Data Organization Software and Functional Emulator for Mission Planning and Early Integration Solid State Recorder Data Organization Software and Functional Emulator for Mission Planning and Early Integration Workshop on Spacecraft Flight Software 2014 Michael Koets Space Science and Engineering

More information

Command & Control for the Constellation Program

Command & Control for the Constellation Program Session 6: Challenges Returning to the Moon and Beyond Command & Control for the Constellation Program Session 6: Challenges Returning to the Moon and Beyond February 12, 2007 Command & Control for the

More information

Mars Interoperability : Options for Relay Orbiter Support to Mars Bound Assets

Mars Interoperability : Options for Relay Orbiter Support to Mars Bound Assets SpaceOps 2008 Conference (Hosted and organized by ESA and EUMETSAT in association with AIAA) AIAA 2008-3368 Mars Interoperability 2008-2015: Options for Relay Orbiter Support to Mars Bound Assets Greg

More information

Planning Production Monitoring

Planning Production Monitoring RT LAT HK, Diag & Alert telem L0 File Ingest L0 files MOC GSSC Preliminary Science Timeline L0 Package Integ. Observ. Timeline, Contact Schedules, As-Flown Timeline, Flight Dynamics Products LAT Timeline

More information

Impact of New CCSDS File Delivery Protocol on JPL Telemetry and Command Ground System Architecture

Impact of New CCSDS File Delivery Protocol on JPL Telemetry and Command Ground System Architecture Impact of New CCSDS File Delivery Protocol on JPL Telemetry and Command Ground System Architecture Mike Levesque Jet Propulsion Laboratory (Michael.Levesque@jpl.nasa.gov) Page 1 Motivations specification

More information

AN ONBOARD PROCESSOR FOR FLIGHT TEST DATA ACQUISITION SYSTEMS

AN ONBOARD PROCESSOR FOR FLIGHT TEST DATA ACQUISITION SYSTEMS AN ONBOARD PROCESSOR FOR FLIGHT TEST DATA ACQUISITION SYSTEMS Item Type text; Proceedings Authors Wegener, John A.; Blase, Gordon A. Publisher International Foundation for Telemetering Journal International

More information

MARS RELAY OPERATIONS: APPLICATION OF THE CCSDS PROXIMITY-1 SPACE DATA LINK PROTOCOL

MARS RELAY OPERATIONS: APPLICATION OF THE CCSDS PROXIMITY-1 SPACE DATA LINK PROTOCOL MARS RELAY OPERATIONS: APPLICATION OF THE CCSDS PROXIMITY-1 SPACE DATA LINK PROTOCOL Introduction G. J. Kazz and E. Greenberg Jet Propulsion Laboratory, California Institute of Technology 4800 Oak Grove

More information

estec GS input to on-board data architecture Prepared by Michele Zundo Reference PE-TN-ESA-GS-405 Issue 1 Revision 3 Date of Issue

estec GS input to on-board data architecture Prepared by Michele Zundo Reference PE-TN-ESA-GS-405 Issue 1 Revision 3 Date of Issue estec Keplerlaan 1, 2200 AG Noordwik. The Netherlands +31-71-5656565 PE-TN-ESA-GS-405 GS inputs to on-board data architecture v1_3.docx Prepared by Michele Zundo Reference PE-TN-ESA-GS-405 Issue 1 Revision

More information

Goddard Mission Services Evolution Center. GSAW Demo

Goddard Mission Services Evolution Center. GSAW Demo National Aeronautics and Space Administration Goddard Mission Services Evolution Center GSAW Demo February 29, 2012 Dan Smith and Matt Handy NASA Goddard Space Flight Center Software Engineering Division

More information

SpaceWire Remote Memory Access Protocol

SpaceWire Remote Memory Access Protocol SpaceWire Remote Memory Access Protocol Steve Parkes and Chris McClements University of Dundee, Applied Computing, Dundee, DD1 4HN, Scotland, UK. sparkes@computing.dundee.ac.uk,, cmclements@computing.dundee.ac.uk.

More information

GOES-R SpaceWire Implementation

GOES-R SpaceWire Implementation GOES-R SpaceWire Implementation William Anderson GSFC/MEI Technologies Inc. William.H.Anderson@nasa.gov International SpaceWire Conference 2007 Dundee, Scotland, UK September 17, 2007 1 GOES-R SpaceWire

More information

Development of Generic Ground Systems by the Use of a Standard Modeling Method. Takahiro Yamada JAXA/ISAS March 1, 2005

Development of Generic Ground Systems by the Use of a Standard Modeling Method. Takahiro Yamada JAXA/ISAS March 1, 2005 Development of Generic Ground Systems by the Use of a Standard Modeling Method Takahiro Yamada JAXA/ISAS March 1, 2005 1 Purpose of This Presentation To explain how spacecraft can be virtualized by using

More information

Blue Canyon Technologies XB1 Enabling a New Realm of CubeSat Science. George Stafford BCT Range St, Suite 200 Boulder, CO 80301

Blue Canyon Technologies XB1 Enabling a New Realm of CubeSat Science. George Stafford BCT Range St, Suite 200 Boulder, CO 80301 Blue Canyon Technologies XB1 Enabling a New Realm of CubeSat Science George Stafford BCT 720.458.0703 1600 Range St, Suite 200 Boulder, CO 80301 About BCT Blue Canyon Technologies is a small business founded

More information

Using an Artificial Intelligence Tool to Perform Science Data Downlink Planning as Part of the Mission Planning Activities of Mars Express

Using an Artificial Intelligence Tool to Perform Science Data Downlink Planning as Part of the Mission Planning Activities of Mars Express Using an Artificial Intelligence Tool to Perform Science Data Downlink as Part of the Activities of Mars Express Erhard Rabenau NOVA Space Associates Ltd 11 Kingsmead Square, Bath, BA1 2AB, UK Erhard.Rabenau@esa.int

More information

The Euclid Ground Segment Design for File-based Operations

The Euclid Ground Segment Design for File-based Operations The Euclid Ground Segment Design for File-based Operations Frank Keck, Felix Flentge, Colin Haddow, Guillermo Buenadicha 14/03/2017 ESA UNCLASSIFIED - Releasable to the Public 2017 by European Space Agency.

More information

Subsystem Development. T&DF Development. LAT Flight Software Testbed. LAT Integration & Test. Mission Systems Integration & Test EGSE TKR EM1 LOF

Subsystem Development. T&DF Development. LAT Flight Software Testbed. LAT Integration & Test. Mission Systems Integration & Test EGSE TKR EM1 LOF GLAST Technical Memorandum GTM023A From: Scott Williams To: G. Haller Date: 13 July 2001 Subject: Concept for Summary Description of the Electrical Ground Support Equipment () concept to support the development

More information

S&OC System Requirements Review: GSRD Traceability Matrix

S&OC System Requirements Review: GSRD Traceability Matrix STScI-JWST-CI-0099 Space Telescope Science Institute James Webb Space Telescope Mission S&OC System Requirements Review: GSRD Traceability Matrix 20 December 2004 Issue A REVISION HISTORY ISSUE DESCRIPTION

More information

An Advanced High Speed Solid State Data Recorder

An Advanced High Speed Solid State Data Recorder An Advanced High Speed Solid State Data Recorder 401 Camp Craft Road, Austin, TX, USA 78746-6558 http://www.spec.com Dr. Gary McMillian Voice (512)347-1360 x2103 Fax (512)327-5487 E-mail mcmillian@spec.com

More information

Real-time Data Process Software for POAC Space Mission Management System

Real-time Data Process Software for POAC Space Mission Management System Real-time Data Process Software for POAC Space Mission Management System Yi Qu 1, Xuzhi Li 2, Yurong Liu 3, Juan Meng 4, Jun Rao 5 General Establishment of Space Science and Application, Chinese Academy

More information

Electrical Ground Support Equipment Verification Test Support. EGSE Verification Test Support

Electrical Ground Support Equipment Verification Test Support. EGSE Verification Test Support Electrical Ground Support Equipment Verification Test Support Tom Leisgang Orbital Network Engineering tleisgang@orbitalnetwork.com T. Leisgang 1 EGSE Functions Provide common infrastructure Command and

More information

FPGA-Based Embedded Systems for Testing and Rapid Prototyping

FPGA-Based Embedded Systems for Testing and Rapid Prototyping FPGA-Based Embedded Systems for Testing and Rapid Prototyping Martin Panevsky Embedded System Applications Manager Embedded Control Systems Department The Aerospace Corporation Flight Software Workshop

More information

Can Harmonization be Achieved via Standardization?: New Concrete Opportunities from the CCSDS Mission Operations Services

Can Harmonization be Achieved via Standardization?: New Concrete Opportunities from the CCSDS Mission Operations Services Can Harmonization be Achieved via Standardization?: New Concrete Opportunities from the CCSDS Mission Operations Services CCSDS Spacecraft (SM&C) Mario Merri (ESA), Chair GSAW, Los Angeles, USA - 1 Mar

More information

Deep Impact. Project Data Management Plan

Deep Impact. Project Data Management Plan Deep Impact Project Data Management Plan Document Number D - 21386 Jet Propulsion Laboratory California Institute of Technology Pasadena, California 91109-8099 Deep Impact Project Data Management Plan

More information

Working with M 3 Data. Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010

Working with M 3 Data. Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010 Working with M 3 Data Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010 For Reference Slides and example data from today s workshop available at http://m3dataquest.jpl.nasa.gov See Green et al. (2010)

More information

Disruption Tolerant Networking Across Mission Critical

Disruption Tolerant Networking Across Mission Critical Disruption Tolerant Networking Across Mission Critical Ground Networks Rashied Amini, Scott Burleigh, Joshua Schoolcraft, Jordan L. Torgerson Jet Propulsion Laboratory, California Institute of Technology

More information

MULTIPLEXER / DEMULTIPLEXER IMPLEMENTATION USING A CCSDS FORMAT

MULTIPLEXER / DEMULTIPLEXER IMPLEMENTATION USING A CCSDS FORMAT MULTIPLEXER / DEMULTIPLEXER IMPLEMENTATION USING A CCSDS FORMAT Item Type text; Proceedings Authors Grebe, David L. Publisher International Foundation for Telemetering Journal International Telemetering

More information

LISA Pathfinder Sheet : 1

LISA Pathfinder Sheet : 1 Pathfinder Sheet : 1 Issue : A Date : 7.3.5 Inputs to LISA Pathfinder Space-Ground Interface Document (SGICD) - Part 2, Baseband. CI CODE: 1240000 Prepared by: Date: Robin Ashencaen Checked by: Date: Kevin

More information

SSC17-XII-02. Using CCSDS Standards to Reduce Mission Costs

SSC17-XII-02. Using CCSDS Standards to Reduce Mission Costs SSC17-XII-02 Using CCSDS Standards to Reduce Mission Costs Jonathan Wilmot NASA Goddard Space Flight Center Greenbelt, MD, 20771, USA; 301-286-2623 Jonathan.J.Wilmot@NASA.gov ABSTRACT NASA s open source

More information

Optimizing Bandwidth Utilization in Packet Based Telemetry Systems

Optimizing Bandwidth Utilization in Packet Based Telemetry Systems Optimizing Bandwidth Utilization in Packet Based Telemetry Systems Jeffrey R. Kalibjian Lawrence Livermore National Laboratory Keywords bandwidth utilization, intelligent telemetry processing Abstract

More information

Managing data for Curiosity, fun and profit. Rajeev Joshi NASA / Jet Propulsion Laboratory, California Institute of Technology

Managing data for Curiosity, fun and profit. Rajeev Joshi NASA / Jet Propulsion Laboratory, California Institute of Technology Managing data for Curiosity, fun and profit Rajeev Joshi NASA / Jet Propulsion Laboratory, California Institute of Technology Copyright: 2013 California Institute of Technology. Government sponsorship

More information

SPACE DATA LINK PROTOCOLS SUMMARY OF CONCEPT AND RATIONALE

SPACE DATA LINK PROTOCOLS SUMMARY OF CONCEPT AND RATIONALE Report Concerning Space Data System Standards SPACE DATA LINK PROTOCOLS SUMMARY OF CONCEPT AND RATIONALE INFORMATIONAL REPORT CCSDS 130.2-G-3 GREEN BOOK September 2015 Report Concerning Space Data System

More information

GLAST Large Area Telescope

GLAST Large Area Telescope GLAST Large Area Telescope Gamma-ray Large Area Space Telescope Instrument Science Operations Center Monthly Status Review January 007 Rob Cameron ISOC Management Operations Facility Construction completed

More information

HiRISE Operations Center Overview. Eric Eliason Co-Investigator and Ground System Manager October 13, 2004

HiRISE Operations Center Overview. Eric Eliason Co-Investigator and Ground System Manager October 13, 2004 HiRISE Operations Center Overview Eric Eliason Co-Investigator and Ground System Manager High-Level Requirements relevant to HiCat (1/4) Data Observations and Volumes Target and acquire10,000 observations

More information

LEVERAGING SERIAL DIGITAL INTERFACES STANDARDIZATION: THE RASTA REFERENCE ARCHITECTURE FACILITY AT ESA

LEVERAGING SERIAL DIGITAL INTERFACES STANDARDIZATION: THE RASTA REFERENCE ARCHITECTURE FACILITY AT ESA LEVERAGING SERIAL DIGITAL INTERFACES STANDARDIZATION: THE RASTA REFERENCE ARCHITECTURE FACILITY AT ESA Session: Spacewire onboard equipment and software Short Paper Aitor Viana Sanchez, Gianluca Furano,

More information

Alexi Glover & Juha-Pekka Luntama SSA Programme Space Weather Segment, OPS-L ESA/ESAC, Madrid, Spain

Alexi Glover & Juha-Pekka Luntama SSA Programme Space Weather Segment, OPS-L ESA/ESAC, Madrid, Spain Alexi Glover & Juha-Pekka Luntama SSA Programme Space Weather Segment, OPS-L ESA/ESAC, Madrid, Spain Presentation Outline 1. SSA Programme short introduction 2. SWE Service Domains 3. Precursor Services

More information

Utilization of AGI STK and S-NPP Operational Data to Generate JPSS-1 Proxy Test Data

Utilization of AGI STK and S-NPP Operational Data to Generate JPSS-1 Proxy Test Data Utilization of AGI STK and S-NPP Operational Data to Generate JPSS-1 Proxy Test Data Emily Greene Wael Ibrahim Chris van Poollen Ed Meletyan Scott Leszczynski 2018 AMS Annual Meeting Austin, TX, USA Copyright

More information

r bulletin 96 november 1998 bull

r bulletin 96 november 1998 bull Figure 1. The XMM spacecraft the xmm simulator The XMM Simulator - The Technical Challenges H. Côme Simulation Section, ESA Directorate of Technical and Operational Support, ESOC, Germany M. Irvine Vega

More information

OBC Mass Memories Final Presentation

OBC Mass Memories Final Presentation OBC Mass Memories Final Presentation Patrik Sandin, Chief Engineer, Digital Product Unit, AB Dietmar Walter, Hardware Group, DSI-IT GmbH Glenn Johnson, Onboard Software Group, SCISYS UK Ltd ESA Contract

More information

GLAST Large Area Telescope:

GLAST Large Area Telescope: GLAST Large Area Telescope: Gamma-ray Large Area Space Telescope Flight Software J.J.Russell/A.P.Waite Stanford Linear Accelerator Center russell@slac.stanford.edu apw@slac.stanford.edu Topics To Be Covered

More information

On-Board Control Procedures: Autonomous and Updateable Spacecraft Operator Onboard and Beyond

On-Board Control Procedures: Autonomous and Updateable Spacecraft Operator Onboard and Beyond On-Board Control Procedures: Autonomous and Updateable Spacecraft Operator Onboard and Beyond Marek Prochazka / Kjeld Hjortnaes European Space Agency, ESTEC, Software Systems Division. FSW-10, Pasadena

More information

Spacecraft Monitoring & Control Systems

Spacecraft Monitoring & Control Systems Spacecraft Monitoring & Control Systems TSC & CCS - Presentation, May 2015 http://ccs.terma.com SATELLITE CHECKOUT & OPERATIONS SCOE TSC P/L EGSE CCS Unified Monitoring & Control data model procedures

More information

SOFTWARE DESIGN DOCUMENT

SOFTWARE DESIGN DOCUMENT J SOFTWARE DESIGN DOCUMENT FOR THE GLOBAL ULTRAVIOLET IMAGER -GUVI- DATA PROCESSING -DP- PAYLOAD OPERATIONS CENTER -POC- March 13, 1998 Release A Prepared by: M. B. Weiss J. S. Evans R. J. Barnes The Johns

More information

"STEPPING STONES ON THE PATH TO INTERPLANETARY INTERNETWORKING

STEPPING STONES ON THE PATH TO INTERPLANETARY INTERNETWORKING "STEPPING STON ON THE PATH TO INTERPLANETARY INTERNETWORKING IND Staff Meeting 24 June 2003 Adrian J. Hooke OUTLINE Where we ve come from: CCSDS space links Where we are now: Delay Intolerant Networking

More information

Science Data Processing and Data Products

Science Data Processing and Data Products and Data Products Chris Pankratz LASP/CU (303)492-0696 chris.pankratz@lasp.colorado.edu Page 1 Abstract The SORCE Science Data System will produce assigned EOS Standard Products using data acquired from

More information

Instrument Data Processing Unit for THEMIS

Instrument Data Processing Unit for THEMIS Instrument Data Processing Unit for THEMIS E. TAYLOR 1, P. HARVEY 1, M. LUDLAM 1, P. BERG 1, R. ABIAD 1, and D. GORDON 1 1. Space Sciences Laboratory, University of California at Berkeley, CA. U.S.A. Abstract.

More information

Dillon M. Collins, Brendan S. Surrusco, Sven G. Bilén, Charles C. Croskey The Pennsylvania State University

Dillon M. Collins, Brendan S. Surrusco, Sven G. Bilén, Charles C. Croskey The Pennsylvania State University Implementation of a Modern Internet Protocol-Based Communications System and Error Detection and Correction System for Commercial Memory within a Radiation Hardened FPGA for a Low-Earth-Orbit Satellite

More information

PROPOSED TELEMETRY TRANSMISSION AND TELECOMMANDING MODES FOR THE NOAA-N MISSION

PROPOSED TELEMETRY TRANSMISSION AND TELECOMMANDING MODES FOR THE NOAA-N MISSION PROPOSED TELEMETRY TRANSMISSION AND TELECOMMANDING MODES FOR THE NOAA-N MISSION Diem V. Nguyen Lockheed Martin Space Mission Systems & Services Seabrook, Maryland 20706 Warner Miller NASA / Goddard Space

More information

InnoDB Compression Present and Future. Nizameddin Ordulu Justin Tolmer Database

InnoDB Compression Present and Future. Nizameddin Ordulu Justin Tolmer Database InnoDB Compression Present and Future Nizameddin Ordulu nizam.ordulu@fb.com, Justin Tolmer jtolmer@fb.com Database Engineering @Facebook Agenda InnoDB Compression Overview Adaptive Padding Compression

More information

LUNAR RECONNAISSANCE ORBITER PROJECT CONFIGURATION CHANGE REQUEST

LUNAR RECONNAISSANCE ORBITER PROJECT CONFIGURATION CHANGE REQUEST Page 1 of 2_ LUNAR RECONNAISSANCE ORBITER PROJECT CONFIGURATION CHANGE REQUEST CCR: 431-CCR-000131 DATE INITIATED: 2/6/2006 CCR REV.: CCR REV DATE: CCB SECRETARY: DEB YODER PROPRIETARY? Yes No ITAR SENSTIVE?

More information

NASA/GSFC s Flight Software Core Flight System Community

NASA/GSFC s Flight Software Core Flight System Community NASA/GSFC s Flight Software Core Flight System Community David McComas david.c.mccomas@nasa.gov Flight Software Systems Branch NASA/Goddard Space Flight Center Flight Software Workshop December 16-18,

More information

ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency

ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency OMG meeting Paris 1 Content PUS History and Background PUS context Presentation of the ECSS Standard for TM &

More information

European Data Relay Satellite System EDA Workshop

European Data Relay Satellite System EDA Workshop European Data Relay Satellite System EDA Workshop Brussels 7/06/2011 Agenda 1. Rationale for Data Relay Services 2. Potential benefits for Earth Observation systems 3. EDRS Programme principles, targeted

More information

FPGA Provides Speedy Data Compression for Hyperspectral Imagery

FPGA Provides Speedy Data Compression for Hyperspectral Imagery FPGA Provides Speedy Data Compression for Hyperspectral Imagery Engineers implement the Fast Lossless compression algorithm on a Virtex-5 FPGA; this implementation provides the ability to keep up with

More information

I&T&C Organization Chart

I&T&C Organization Chart I&T&C Organization Chart I&T&C Manager Elliott Bloom WBS 4.1.9 I&T Engineer B. Grist WBS 4.1.9.1 Reliability & QA D. Marsh WBS 4.1.9.2 Mechanical Ground Support Equipment TBD Instrument Operations Coordinator

More information

Network on Chip round table European Space Agency, ESTEC Noordwijk / The Netherlands 17 th and 18 th of September 2009

Network on Chip round table European Space Agency, ESTEC Noordwijk / The Netherlands 17 th and 18 th of September 2009 Network on Chip round table European Space Agency, ESTEC Noordwijk / The Netherlands 17 th and 18 th of September 2009 Ph. Armbruster Head of Data Systems Division European Space Agency - ESTEC 17 th of

More information

Data Acquisition, Processing, Analytics, and Display

Data Acquisition, Processing, Analytics, and Display Data Acquisition, Processing, Analytics, and Display Ground support software and equipment for complex aerospace platforms The Power of insight Monitor Control Test Satellites, launch vehicles, aircraft,

More information

GSAW The Earth Observing System (EOS) Ground System: Leveraging an Existing Operational Ground System Infrastructure to Support New Missions

GSAW The Earth Observing System (EOS) Ground System: Leveraging an Existing Operational Ground System Infrastructure to Support New Missions GSAW 2016 The Earth Observing System (EOS) Ground System: Leveraging an Existing Operational Ground System Infrastructure to Support New Missions David Hardison NASA Goddard Space Flight Center Johnny

More information

A Packet Utilisation Standard (PUS) Model

A Packet Utilisation Standard (PUS) Model A Packet Utilisation Standard (PUS) Model This is a simulation model of the European Space Agency (ESA) Packet Utilisation Standard (PUS) in an operational environment linking a satellite with ground stations.

More information

Characterizing the Performance of SpaceWire on a LEON3FT. Ken Koontz, Andrew Harris, David Edell

Characterizing the Performance of SpaceWire on a LEON3FT. Ken Koontz, Andrew Harris, David Edell Characterizing the Performance of SpaceWire on a LEON3FT Ken Koontz, Andrew Harris, David Edell Introduction SpaceWire is emerging as standard high-performance data interface Recent NASA missions include

More information

Port Tapping Session 2 Race tune your infrastructure

Port Tapping Session 2 Race tune your infrastructure Port Tapping Session 2 Race tune your infrastructure Born on Oct 30 th 2012. 2 3 Tap Module Red adapter indicates TAP port 4 Corning Fibre Channel and Ethernet Tap s 72 Ports per 1U 288 Ports per 4U 5

More information

Wide-field Infrared Survey Explorer (WISE) WISE Mission Operations System Preliminary Design Review. WSDC Architecture

Wide-field Infrared Survey Explorer (WISE) WISE Mission Operations System Preliminary Design Review. WSDC Architecture WISE Mission Operations System Preliminary Design Review WSDC Architecture Tim Conrow - IPAC WSDC Lead Engineer TPC - 1 Ingest Data Flow TPC - 2 Ingest Subsystem Ingest, step 1 Receive and verify high-rate

More information

11 th Annual CubeSat Developers Workshop

11 th Annual CubeSat Developers Workshop 11 th Annual CubeSat Developers Workshop NearSpace Launch, Inc. Satellite Globalstar Products: Technology, Service, and Education TSAT Communication First Results EyeStar: A Paradigm Shift 25 // 04 //

More information

RAWDAR: Raw Data Repository

RAWDAR: Raw Data Repository : Raw Data Repository May 14 th, 2018 GEDAIS RAWDAR Objectives & Status RAWDAR has the following, related but independent objectives: Storage of the missions historic raw data in a central repository.

More information

A Regional Application Center (RAC) Ingest System

A Regional Application Center (RAC) Ingest System A Regional Application Center (RAC) Ingest System Kelvin Brentzel Global Science & Technology Inc. Patrick Coronado, Barbie Brown, Parminder Ghuman NASA, Goddard Space Flight Center Greenbelt, Maryland

More information

Expanding Interoperability between the AFSCN and Commercial Networks. Van S. Husson HTSI/DataLynx March 28, 2007

Expanding Interoperability between the AFSCN and Commercial Networks. Van S. Husson HTSI/DataLynx March 28, 2007 Expanding Interoperability between the AFSCN and Commercial Networks Van S. Husson HTSI/DataLynx March 28, 2007 Outline Background DataLynx Overview APL Overview DataLynx/APL Project Task & Objectives

More information

Instrument Modelling with EPS/ MAPPS

Instrument Modelling with EPS/ MAPPS Instrument Modelling with EPS/ MAPPS Why? How? Link to SAP work and planning cycles Andrew Walsh, Anik De Groof SOC Instrument Scientists Overview 1. Why we need SOC modelling 2. SOC instrument modelling:

More information

A Distributed Network Architecture for PC-Based Telemetry Systems

A Distributed Network Architecture for PC-Based Telemetry Systems A Distributed Network Architecture for PC-Based Telemetry Systems by Paul A. Thoreson, Lockheed Martin Telemetry & Instrumentation Presented to Ground Systems Architectures Workshop February 26, 1997 frank:/550/gndsysws

More information

1 COMMAND AND DATA HANDLING (C&DH)

1 COMMAND AND DATA HANDLING (C&DH) 1 COMMAND AND DATA HANDLING (C&DH) 1.1 Requirements and Design Drivers 1.1.1 Functional The command and data handling shall provide the capability to: Transfer information in digital or discrete representation

More information

SpaceWire devices developed in JAXA s SpaceWire R&D activities in the last 3 years (and coming several years).

SpaceWire devices developed in JAXA s SpaceWire R&D activities in the last 3 years (and coming several years). JAXA Status Report Part 2 SpaceWire devices developed in JAXA s SpaceWire R&D activities in the last 3 years (and coming several years). Takayuki Yuasa, Tadayuki Takahashi JAXA Masaharu Nomachi Osaka University

More information

in the Telecommand Link to Improve Security

in the Telecommand Link to Improve Security in the Telecommand Link to Improve Security Calum B. Smith, Agustín Fernández León 30 Oct 2001 ESTEC TOS-ESM TTC 2001 1 THREATS TO THE TC UPLINK IMPERSONATION ATTACK AUTHENTICATION: THE CONCEPT ESA AUTHENTICATION

More information

TECHNICAL REPORT. There will be two types of ingest into the I&T Data Archive; package based, and file based (for FITS files only).

TECHNICAL REPORT. There will be two types of ingest into the I&T Data Archive; package based, and file based (for FITS files only). TECHNICAL REPORT Title: JWST I&T Data Archive Operations Concept Authors: Rusty Whitman Phone: 410-338-5042 Doc #: JWST-STScI-001658, Date: February 2, 2009 Rev: - Release Date: February 13, 2009 1.0 Introduction

More information

Science Data Management Plan (SDMP) Document #: ICN-SCI-001 Rev. C Release Date: 05/05/15 ICON Mission

Science Data Management Plan (SDMP) Document #: ICN-SCI-001 Rev. C Release Date: 05/05/15 ICON Mission UNIVERSITY OF CALIFORNIA, BERKELEY SPACE SCIENCES LABORATORY Digitally signed by Michael Raffanti Date: 2015.06.02 16:33:31 PDT Science Data Management Plan (SDMP) Document #: ICN-SCI-001 Rev. C Release

More information

GLAST Large Area Telescope:

GLAST Large Area Telescope: Gamma-ray Large Area Space Telescope GLAST Large Area Telescope: ISOC Subsystems WBS: 4.1.B David Lung Stanford Linear Accelerator Center ISOC Deputy Manager dlung@slac.stanford.edu Document: LAT-PR-XXXXX

More information

Packet-Level Network Analytics without Compromises NANOG 73, June 26th 2018, Denver, CO. Oliver Michel

Packet-Level Network Analytics without Compromises NANOG 73, June 26th 2018, Denver, CO. Oliver Michel Packet-Level Network Analytics without Compromises NANOG 73, June 26th 2018, Denver, CO Oliver Michel Network monitoring is important Security issues Performance issues Equipment failure Analytics Platform

More information

CCSDS Mission Operations Services

CCSDS Mission Operations Services CCSDS Mission Operations Services Mario Merri Head of Mission Data Systems Division (ESOC/HSO-GD) CCSDS Mission Operations and Information Management Services (MOIMS) Mehran Sarkarati Head of Applications

More information

AIA Data processing and Distribution: from Telemetry to Science data

AIA Data processing and Distribution: from Telemetry to Science data AIA Data processing and Distribution: from Telemetry to Science data AIA and HMI impose novel requirements on the data processing and distribution. The volume of data places constraints on the frequency

More information

Satellite Telemetry and Command Applications. Flexible Processing and Network Transport for Distributed Ground Systems

Satellite Telemetry and Command Applications. Flexible Processing and Network Transport for Distributed Ground Systems Satellite Telemetry and Command Applications Flexible Processing and Network Transport for Distributed Ground Systems The Built-In Flexibility to Evolve and Scale with Your Satellite Ground System softfep

More information

Synthesizing Adaptive Protocols by Selective Enumeration (SYNAPSE)

Synthesizing Adaptive Protocols by Selective Enumeration (SYNAPSE) Synthesizing Adaptive Protocols by Selective Enumeration (SYNAPSE) Problem Definition Solution Approach Benefits to End User Talk Overview Metrics Summary of Results to Date Lessons Learned & Future Work

More information

Space Mission Communications Security

Space Mission Communications Security Space Mission Communications Security Nick Shave, Gavin Kenny Logica UK Limited Howard Weiss SPARTA Inc James Stanier DERA GSAW 2001 1 Presentation Overview Background and Security Issues Space Mission

More information

SpaceFibre Flight Software Workshop 2015

SpaceFibre Flight Software Workshop 2015 SpaceFibre Flight Software Workshop 2015 Steve Parkes, University of Dundee Albert Ferrer Florit, Alberto Gonzalez Villafranca, STAR-Dundee Ltd. David McLaren, Chris McClements, University of Dundee Contents

More information

Lessons Learned: cfs on Linux and RTEMS

Lessons Learned: cfs on Linux and RTEMS Lessons Learned: cfs on Linux and RTEMS Allen Brown, Thadeus Fleming Flight Software Southwest Research Institute San Antonio, Texas This presentation does not contain US export controlled material. Company

More information