imap-processing 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imap_processing/__init__.py +34 -0
- imap_processing/_version.py +3 -0
- imap_processing/ccsds/__init__.py +0 -0
- imap_processing/ccsds/ccsds_data.py +55 -0
- imap_processing/ccsds/excel_to_xtce.py +477 -0
- imap_processing/cdf/__init__.py +0 -0
- imap_processing/cdf/cdf_attribute_manager.py +322 -0
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
- imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
- imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
- imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/cdf/imap_cdf_manager.py +64 -0
- imap_processing/cdf/utils.py +147 -0
- imap_processing/cli.py +863 -0
- imap_processing/codice/__init__.py +1 -0
- imap_processing/codice/codice_l0.py +54 -0
- imap_processing/codice/codice_l1a.py +558 -0
- imap_processing/codice/codice_l1b.py +194 -0
- imap_processing/codice/constants.py +986 -0
- imap_processing/codice/data/esa_sweep_values.csv +257 -0
- imap_processing/codice/data/lo_stepping_values.csv +129 -0
- imap_processing/codice/decompress.py +142 -0
- imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
- imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
- imap_processing/codice/utils.py +95 -0
- imap_processing/decom.py +40 -0
- imap_processing/glows/__init__.py +1 -0
- imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
- imap_processing/glows/l0/__init__.py +0 -0
- imap_processing/glows/l0/decom_glows.py +91 -0
- imap_processing/glows/l0/glows_l0_data.py +194 -0
- imap_processing/glows/l1a/glows_l1a.py +424 -0
- imap_processing/glows/l1a/glows_l1a_data.py +555 -0
- imap_processing/glows/l1b/glows_l1b.py +270 -0
- imap_processing/glows/l1b/glows_l1b_data.py +583 -0
- imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
- imap_processing/glows/utils/__init__.py +0 -0
- imap_processing/glows/utils/constants.py +105 -0
- imap_processing/hi/__init__.py +1 -0
- imap_processing/hi/l0/__init__.py +0 -0
- imap_processing/hi/l0/decom_hi.py +24 -0
- imap_processing/hi/l1a/__init__.py +0 -0
- imap_processing/hi/l1a/hi_l1a.py +73 -0
- imap_processing/hi/l1a/histogram.py +142 -0
- imap_processing/hi/l1a/housekeeping.py +27 -0
- imap_processing/hi/l1a/science_direct_event.py +341 -0
- imap_processing/hi/l1b/__init__.py +0 -0
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
- imap_processing/hi/l1b/hi_l1b.py +127 -0
- imap_processing/hi/l1c/__init__.py +0 -0
- imap_processing/hi/l1c/hi_l1c.py +228 -0
- imap_processing/hi/packet_definitions/__init__.py +0 -0
- imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
- imap_processing/hi/utils.py +27 -0
- imap_processing/hit/__init__.py +1 -0
- imap_processing/hit/l0/__init__.py +0 -0
- imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
- imap_processing/hit/l0/data_classes/science_packet.py +259 -0
- imap_processing/hit/l0/decom_hit.py +467 -0
- imap_processing/hit/l0/utils/hit_base.py +57 -0
- imap_processing/hit/l1a/__init__.py +0 -0
- imap_processing/hit/l1a/hit_l1a.py +254 -0
- imap_processing/hit/l1b/hit_l1b.py +179 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
- imap_processing/ialirt/__init__.py +0 -0
- imap_processing/ialirt/l0/__init__.py +0 -0
- imap_processing/ialirt/l0/process_hit.py +220 -0
- imap_processing/ialirt/packet_definitions/__init__.py +0 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
- imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
- imap_processing/idex/__init__.py +2 -0
- imap_processing/idex/idex_constants.py +27 -0
- imap_processing/idex/idex_l0.py +31 -0
- imap_processing/idex/idex_l1a.py +631 -0
- imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
- imap_processing/lo/__init__.py +1 -0
- imap_processing/lo/l0/__init__.py +0 -0
- imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
- imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
- imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
- imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
- imap_processing/lo/l0/lo_apid.py +15 -0
- imap_processing/lo/l0/lo_science.py +150 -0
- imap_processing/lo/l0/utils/binary_string.py +59 -0
- imap_processing/lo/l0/utils/bit_decompression.py +62 -0
- imap_processing/lo/l0/utils/lo_base.py +57 -0
- imap_processing/lo/l1a/__init__.py +0 -0
- imap_processing/lo/l1a/lo_l1a.py +157 -0
- imap_processing/lo/l1b/lo_l1b.py +160 -0
- imap_processing/lo/l1c/lo_l1c.py +180 -0
- imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
- imap_processing/mag/__init__.py +2 -0
- imap_processing/mag/constants.py +108 -0
- imap_processing/mag/l0/decom_mag.py +170 -0
- imap_processing/mag/l0/mag_l0_data.py +118 -0
- imap_processing/mag/l1a/mag_l1a.py +317 -0
- imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/mag/l1b/mag_l1b.py +125 -0
- imap_processing/mag/l1c/mag_l1c.py +57 -0
- imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
- imap_processing/quality_flags.py +91 -0
- imap_processing/spice/__init__.py +1 -0
- imap_processing/spice/geometry.py +322 -0
- imap_processing/spice/kernels.py +459 -0
- imap_processing/spice/time.py +72 -0
- imap_processing/swapi/__init__.py +1 -0
- imap_processing/swapi/l1/__init__.py +0 -0
- imap_processing/swapi/l1/swapi_l1.py +685 -0
- imap_processing/swapi/l2/__init__.py +0 -0
- imap_processing/swapi/l2/swapi_l2.py +107 -0
- imap_processing/swapi/packet_definitions/__init__.py +0 -0
- imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
- imap_processing/swapi/swapi_utils.py +25 -0
- imap_processing/swe/__init__.py +1 -0
- imap_processing/swe/l1a/__init__.py +0 -0
- imap_processing/swe/l1a/swe_l1a.py +48 -0
- imap_processing/swe/l1a/swe_science.py +223 -0
- imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
- imap_processing/swe/l1b/swe_l1b.py +49 -0
- imap_processing/swe/l1b/swe_l1b_science.py +557 -0
- imap_processing/swe/packet_definitions/__init__.py +0 -0
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
- imap_processing/swe/utils/__init__.py +0 -0
- imap_processing/swe/utils/swe_utils.py +9 -0
- imap_processing/tests/__init__.py +0 -0
- imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
- imap_processing/tests/cdf/__init__.py +0 -0
- imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
- imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
- imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
- imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
- imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
- imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
- imap_processing/tests/cdf/test_utils.py +109 -0
- imap_processing/tests/codice/__init__.py +0 -0
- imap_processing/tests/codice/conftest.py +56 -0
- imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
- imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
- imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/test_codice_l0.py +144 -0
- imap_processing/tests/codice/test_codice_l1a.py +187 -0
- imap_processing/tests/codice/test_codice_l1b.py +60 -0
- imap_processing/tests/codice/test_decompress.py +50 -0
- imap_processing/tests/conftest.py +372 -0
- imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
- imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
- imap_processing/tests/glows/test_glows_decom.py +133 -0
- imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
- imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
- imap_processing/tests/glows/test_glows_l1b.py +348 -0
- imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
- imap_processing/tests/hi/__init__.py +0 -0
- imap_processing/tests/hi/conftest.py +133 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
- imap_processing/tests/hi/test_data/l0/README.txt +54 -0
- imap_processing/tests/hi/test_decom.py +55 -0
- imap_processing/tests/hi/test_hi_l1b.py +31 -0
- imap_processing/tests/hi/test_hi_l1c.py +69 -0
- imap_processing/tests/hi/test_l1a.py +96 -0
- imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
- imap_processing/tests/hi/test_utils.py +15 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/__init__.py +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
- imap_processing/tests/hit/test_hit_decom.py +230 -0
- imap_processing/tests/hit/test_hit_l1a.py +224 -0
- imap_processing/tests/hit/test_hit_l1b.py +52 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
- imap_processing/tests/ialirt/__init__.py +0 -0
- imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
- imap_processing/tests/ialirt/unit/__init__.py +0 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
- imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
- imap_processing/tests/idex/__init__.py +0 -0
- imap_processing/tests/idex/conftest.py +22 -0
- imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
- imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
- imap_processing/tests/idex/test_idex_l0.py +45 -0
- imap_processing/tests/idex/test_idex_l1a.py +91 -0
- imap_processing/tests/lo/__init__.py +0 -0
- imap_processing/tests/lo/test_binary_string.py +21 -0
- imap_processing/tests/lo/test_bit_decompression.py +39 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +66 -0
- imap_processing/tests/lo/test_lo_l1b.py +74 -0
- imap_processing/tests/lo/test_lo_l1c.py +66 -0
- imap_processing/tests/lo/test_science_counts.py +41 -0
- imap_processing/tests/lo/test_science_direct_events.py +209 -0
- imap_processing/tests/lo/test_star_sensor.py +35 -0
- imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
- imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
- imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
- imap_processing/tests/mag/test_mag_decom.py +117 -0
- imap_processing/tests/mag/test_mag_l1a.py +856 -0
- imap_processing/tests/mag/test_mag_l1b.py +77 -0
- imap_processing/tests/mag/test_mag_l1c.py +40 -0
- imap_processing/tests/spice/__init__.py +0 -0
- imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
- imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
- imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
- imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
- imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
- imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
- imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
- imap_processing/tests/spice/test_data/naif0012.tls +150 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
- imap_processing/tests/spice/test_geometry.py +214 -0
- imap_processing/tests/spice/test_kernels.py +272 -0
- imap_processing/tests/spice/test_time.py +35 -0
- imap_processing/tests/swapi/__init__.py +0 -0
- imap_processing/tests/swapi/conftest.py +16 -0
- imap_processing/tests/swapi/l0_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
- imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/test_swapi_decom.py +135 -0
- imap_processing/tests/swapi/test_swapi_l1.py +354 -0
- imap_processing/tests/swapi/test_swapi_l2.py +21 -0
- imap_processing/tests/swe/__init__.py +0 -0
- imap_processing/tests/swe/conftest.py +35 -0
- imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
- imap_processing/tests/swe/test_swe_l1a.py +12 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
- imap_processing/tests/swe/test_swe_l1b.py +61 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
- imap_processing/tests/test_cli.py +229 -0
- imap_processing/tests/test_decom.py +66 -0
- imap_processing/tests/test_quality_flags.py +71 -0
- imap_processing/tests/test_utils.py +107 -0
- imap_processing/tests/ultra/__init__.py +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
- imap_processing/tests/ultra/unit/__init__.py +0 -0
- imap_processing/tests/ultra/unit/conftest.py +210 -0
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
- imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
- imap_processing/ultra/__init__.py +1 -0
- imap_processing/ultra/constants.py +60 -0
- imap_processing/ultra/l0/__init__.py +0 -0
- imap_processing/ultra/l0/decom_tools.py +281 -0
- imap_processing/ultra/l0/decom_ultra.py +278 -0
- imap_processing/ultra/l0/ultra_utils.py +326 -0
- imap_processing/ultra/l1a/__init__.py +0 -0
- imap_processing/ultra/l1a/ultra_l1a.py +319 -0
- imap_processing/ultra/l1b/badtimes.py +26 -0
- imap_processing/ultra/l1b/cullingmask.py +26 -0
- imap_processing/ultra/l1b/de.py +59 -0
- imap_processing/ultra/l1b/extendedspin.py +45 -0
- imap_processing/ultra/l1b/lookup_utils.py +165 -0
- imap_processing/ultra/l1b/ultra_l1b.py +65 -0
- imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
- imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
- imap_processing/ultra/l1c/histogram.py +36 -0
- imap_processing/ultra/l1c/pset.py +36 -0
- imap_processing/ultra/l1c/ultra_l1c.py +52 -0
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
- imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
- imap_processing/ultra/packet_definitions/__init__.py +0 -0
- imap_processing/ultra/utils/__init__.py +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
- imap_processing/utils.py +413 -0
- imap_processing-0.6.0.dist-info/LICENSE +21 -0
- imap_processing-0.6.0.dist-info/METADATA +107 -0
- imap_processing-0.6.0.dist-info/RECORD +398 -0
- imap_processing-0.6.0.dist-info/WHEEL +4 -0
- imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,618 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="P_COD_NHK">
|
|
3
|
+
<xtce:Header date="2023-10" version="1.0" author="IMAP SDC" />
|
|
4
|
+
<xtce:TelemetryMetaData>
|
|
5
|
+
<xtce:ParameterTypeSet>
|
|
6
|
+
<xtce:IntegerParameterType name="UINT1" signed="false">
|
|
7
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
8
|
+
</xtce:IntegerParameterType>
|
|
9
|
+
<xtce:IntegerParameterType name="UINT2" signed="false">
|
|
10
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
11
|
+
</xtce:IntegerParameterType>
|
|
12
|
+
<xtce:IntegerParameterType name="UINT3" signed="false">
|
|
13
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
14
|
+
</xtce:IntegerParameterType>
|
|
15
|
+
<xtce:IntegerParameterType name="UINT4" signed="false">
|
|
16
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
17
|
+
</xtce:IntegerParameterType>
|
|
18
|
+
<xtce:IntegerParameterType name="UINT8" signed="false">
|
|
19
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
20
|
+
</xtce:IntegerParameterType>
|
|
21
|
+
<xtce:IntegerParameterType name="UINT9" signed="false">
|
|
22
|
+
<xtce:IntegerDataEncoding sizeInBits="9" encoding="unsigned" />
|
|
23
|
+
</xtce:IntegerParameterType>
|
|
24
|
+
<xtce:IntegerParameterType name="UINT11" signed="false">
|
|
25
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
26
|
+
</xtce:IntegerParameterType>
|
|
27
|
+
<xtce:IntegerParameterType name="UINT12" signed="false">
|
|
28
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned" />
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
<xtce:IntegerParameterType name="UINT14" signed="false">
|
|
31
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
32
|
+
</xtce:IntegerParameterType>
|
|
33
|
+
<xtce:IntegerParameterType name="UINT15" signed="false">
|
|
34
|
+
<xtce:IntegerDataEncoding sizeInBits="15" encoding="unsigned" />
|
|
35
|
+
</xtce:IntegerParameterType>
|
|
36
|
+
<xtce:IntegerParameterType name="UINT16" signed="false">
|
|
37
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
38
|
+
</xtce:IntegerParameterType>
|
|
39
|
+
<xtce:IntegerParameterType name="UINT20" signed="false">
|
|
40
|
+
<xtce:IntegerDataEncoding sizeInBits="20" encoding="unsigned" />
|
|
41
|
+
</xtce:IntegerParameterType>
|
|
42
|
+
<xtce:IntegerParameterType name="UINT28" signed="false">
|
|
43
|
+
<xtce:IntegerDataEncoding sizeInBits="28" encoding="unsigned" />
|
|
44
|
+
</xtce:IntegerParameterType>
|
|
45
|
+
<xtce:IntegerParameterType name="UINT32" signed="false">
|
|
46
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
47
|
+
</xtce:IntegerParameterType>
|
|
48
|
+
</xtce:ParameterTypeSet>
|
|
49
|
+
<xtce:ParameterSet>
|
|
50
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="UINT3">
|
|
51
|
+
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
52
|
+
</xtce:Parameter>
|
|
53
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="UINT1">
|
|
54
|
+
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
55
|
+
</xtce:Parameter>
|
|
56
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="UINT1">
|
|
57
|
+
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
58
|
+
</xtce:Parameter>
|
|
59
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="UINT11">
|
|
60
|
+
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
61
|
+
</xtce:Parameter>
|
|
62
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="UINT2">
|
|
63
|
+
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
64
|
+
</xtce:Parameter>
|
|
65
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="UINT14">
|
|
66
|
+
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
67
|
+
</xtce:Parameter>
|
|
68
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="UINT16">
|
|
69
|
+
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
70
|
+
</xtce:Parameter>
|
|
71
|
+
<xtce:Parameter name="SHCOARSE" parameterTypeRef="UINT32">
|
|
72
|
+
<xtce:ShortDescription>S/C Time - Seconds</xtce:ShortDescription>
|
|
73
|
+
<xtce:LongDescription>Europa Clipper Secondary Header - Whole-seconds part of SCLK</xtce:LongDescription>
|
|
74
|
+
</xtce:Parameter>
|
|
75
|
+
<xtce:Parameter name="PACKET_VERSION" parameterTypeRef="UINT16">
|
|
76
|
+
<xtce:ShortDescription>Packet Version</xtce:ShortDescription>
|
|
77
|
+
<xtce:LongDescription>Packet version - this will be incremented each time the format of the packet changes.</xtce:LongDescription>
|
|
78
|
+
</xtce:Parameter>
|
|
79
|
+
<xtce:Parameter name="CMDEXE" parameterTypeRef="UINT8">
|
|
80
|
+
<xtce:ShortDescription>Number of commands executed</xtce:ShortDescription>
|
|
81
|
+
<xtce:LongDescription>Number of commands that have been executed. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdjrct, cmdacc, itf_error counts)</xtce:LongDescription>
|
|
82
|
+
</xtce:Parameter>
|
|
83
|
+
<xtce:Parameter name="CMDRJCT" parameterTypeRef="UINT8">
|
|
84
|
+
<xtce:ShortDescription>Number of commands rejected</xtce:ShortDescription>
|
|
85
|
+
<xtce:LongDescription>Number of commands that have been rejected. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdacc, itf_error counts)</xtce:LongDescription>
|
|
86
|
+
</xtce:Parameter>
|
|
87
|
+
<xtce:Parameter name="LAST_OPCODE" parameterTypeRef="UINT16">
|
|
88
|
+
<xtce:ShortDescription>Last executed opcode</xtce:ShortDescription>
|
|
89
|
+
<xtce:LongDescription>Opcode of the last executed command</xtce:LongDescription>
|
|
90
|
+
</xtce:Parameter>
|
|
91
|
+
<xtce:Parameter name="MODE" parameterTypeRef="UINT4">
|
|
92
|
+
<xtce:ShortDescription>Instrument Mode</xtce:ShortDescription>
|
|
93
|
+
<xtce:LongDescription>Current operating mode</xtce:LongDescription>
|
|
94
|
+
</xtce:Parameter>
|
|
95
|
+
<xtce:Parameter name="MEMOP_STATE" parameterTypeRef="UINT4">
|
|
96
|
+
<xtce:ShortDescription>Memory Operation State</xtce:ShortDescription>
|
|
97
|
+
<xtce:LongDescription>State of the memory-operations handler</xtce:LongDescription>
|
|
98
|
+
</xtce:Parameter>
|
|
99
|
+
<xtce:Parameter name="MEMDUMP_STATE" parameterTypeRef="UINT4">
|
|
100
|
+
<xtce:ShortDescription>Memory Dump State</xtce:ShortDescription>
|
|
101
|
+
<xtce:LongDescription>State of the memory-dump handler (busy/idle)</xtce:LongDescription>
|
|
102
|
+
</xtce:Parameter>
|
|
103
|
+
<xtce:Parameter name="ITF_ERR_CNT" parameterTypeRef="UINT2">
|
|
104
|
+
<xtce:ShortDescription>Number of ITF errors encountered</xtce:ShortDescription>
|
|
105
|
+
<xtce:LongDescription>Number of ITF Errors that have been detected; counts 0-3, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdjrct, cmdacc counts)</xtce:LongDescription>
|
|
106
|
+
</xtce:Parameter>
|
|
107
|
+
<xtce:Parameter name="SPIN_CNT" parameterTypeRef="UINT2">
|
|
108
|
+
<xtce:ShortDescription>Number of spin pulses received</xtce:ShortDescription>
|
|
109
|
+
<xtce:LongDescription>Number of spin pulses received</xtce:LongDescription>
|
|
110
|
+
</xtce:Parameter>
|
|
111
|
+
<xtce:Parameter name="MISSED_PPS_CNT" parameterTypeRef="UINT2">
|
|
112
|
+
<xtce:ShortDescription>Number of missed PPS pulses</xtce:ShortDescription>
|
|
113
|
+
<xtce:LongDescription>Number of missed PPS pulses. Counts 0-3, then freezes at 3. Reset via CLR_LATCHED_SINGLE(PPS_STATS)</xtce:LongDescription>
|
|
114
|
+
</xtce:Parameter>
|
|
115
|
+
<xtce:Parameter name="WDOG_TIMEOUT_CNT" parameterTypeRef="UINT4">
|
|
116
|
+
<xtce:ShortDescription>Number of watchdog timeouts since last reset</xtce:ShortDescription>
|
|
117
|
+
<xtce:LongDescription>Number of times the watchdog has timed out.</xtce:LongDescription>
|
|
118
|
+
</xtce:Parameter>
|
|
119
|
+
<xtce:Parameter name="HV_PLUG" parameterTypeRef="UINT2">
|
|
120
|
+
<xtce:ShortDescription>Status of the HV Disable Plug</xtce:ShortDescription>
|
|
121
|
+
<xtce:LongDescription>Current status of the HV SAFE/DISABLE plugs:
|
|
122
|
+
- SAFE: all HVPS outputs provide 1/10 the commanded voltage
|
|
123
|
+
- DIS: all HVPS outputs provide 0V, regardless of commanded voltage
|
|
124
|
+
- FULL: HVPS outputs provide the full commanded voltage</xtce:LongDescription>
|
|
125
|
+
</xtce:Parameter>
|
|
126
|
+
<xtce:Parameter name="CMD_FIFO_OVERRUN_CNT" parameterTypeRef="UINT2">
|
|
127
|
+
<xtce:ShortDescription>Number of Command FIFO Overruns</xtce:ShortDescription>
|
|
128
|
+
</xtce:Parameter>
|
|
129
|
+
<xtce:Parameter name="CMD_FIFO_UNDERRUN_CNT" parameterTypeRef="UINT2">
|
|
130
|
+
<xtce:ShortDescription>Number of Command FIFO Underruns</xtce:ShortDescription>
|
|
131
|
+
</xtce:Parameter>
|
|
132
|
+
<xtce:Parameter name="CMD_FIFO_PARITY_ERR_CNT" parameterTypeRef="UINT2">
|
|
133
|
+
<xtce:ShortDescription>Number of Command FIFO Parity Errors</xtce:ShortDescription>
|
|
134
|
+
</xtce:Parameter>
|
|
135
|
+
<xtce:Parameter name="CMD_FIFO_FRAME_ERR_CNT" parameterTypeRef="UINT2">
|
|
136
|
+
<xtce:ShortDescription>Number of Command FIFO Frame Errors</xtce:ShortDescription>
|
|
137
|
+
</xtce:Parameter>
|
|
138
|
+
<xtce:Parameter name="TLM_FIFO_OVERRUN_CNT" parameterTypeRef="UINT2">
|
|
139
|
+
<xtce:ShortDescription>Number of Telemetry FIFO Overruns</xtce:ShortDescription>
|
|
140
|
+
</xtce:Parameter>
|
|
141
|
+
<xtce:Parameter name="SPIN_BIN_PERIOD" parameterTypeRef="UINT14">
|
|
142
|
+
<xtce:ShortDescription>Spin Bin Period</xtce:ShortDescription>
|
|
143
|
+
</xtce:Parameter>
|
|
144
|
+
<xtce:Parameter name="SPIN_PERIOD" parameterTypeRef="UINT16">
|
|
145
|
+
<xtce:ShortDescription>Current Spin Period</xtce:ShortDescription>
|
|
146
|
+
</xtce:Parameter>
|
|
147
|
+
<xtce:Parameter name="SPIN_PERIOD_TIMER" parameterTypeRef="UINT16">
|
|
148
|
+
<xtce:ShortDescription>Spin Period Timer</xtce:ShortDescription>
|
|
149
|
+
</xtce:Parameter>
|
|
150
|
+
<xtce:Parameter name="SPIN_TIMESTAMP_SECONDS" parameterTypeRef="UINT32">
|
|
151
|
+
<xtce:ShortDescription>Full-seconds timestamp of the most recent spin pulse</xtce:ShortDescription>
|
|
152
|
+
</xtce:Parameter>
|
|
153
|
+
<xtce:Parameter name="SPIN_TIMESTAMP_SUBSECONDS" parameterTypeRef="UINT20">
|
|
154
|
+
<xtce:ShortDescription>Sub-seconds timestamp of the most recent spin pulse</xtce:ShortDescription>
|
|
155
|
+
</xtce:Parameter>
|
|
156
|
+
<xtce:Parameter name="SPIN_BIN_INDEX" parameterTypeRef="UINT9">
|
|
157
|
+
<xtce:ShortDescription>Spin Bin Index</xtce:ShortDescription>
|
|
158
|
+
</xtce:Parameter>
|
|
159
|
+
<xtce:Parameter name="OPTICS_HV_CMD_ERR_CNT" parameterTypeRef="UINT2">
|
|
160
|
+
<xtce:ShortDescription>Optics HV - Number of command errors</xtce:ShortDescription>
|
|
161
|
+
</xtce:Parameter>
|
|
162
|
+
<xtce:Parameter name="SPARE_1" parameterTypeRef="UINT1">
|
|
163
|
+
<xtce:ShortDescription>Spare for alignment</xtce:ShortDescription>
|
|
164
|
+
</xtce:Parameter>
|
|
165
|
+
<xtce:Parameter name="OPTICS_HV_ARM_ERR_CNT" parameterTypeRef="UINT2">
|
|
166
|
+
<xtce:ShortDescription>Optics HV - Number of arm errors</xtce:ShortDescription>
|
|
167
|
+
</xtce:Parameter>
|
|
168
|
+
<xtce:Parameter name="OPTICS_HV_MASTER_ENABLE" parameterTypeRef="UINT1">
|
|
169
|
+
<xtce:ShortDescription>Optics HV - Master Enable</xtce:ShortDescription>
|
|
170
|
+
</xtce:Parameter>
|
|
171
|
+
<xtce:Parameter name="OPTICS_HV_N15KV_ENABLE" parameterTypeRef="UINT1">
|
|
172
|
+
<xtce:ShortDescription>Optics HV - p15KV Enable</xtce:ShortDescription>
|
|
173
|
+
</xtce:Parameter>
|
|
174
|
+
<xtce:Parameter name="OPTICS_HV_ESA_B_ENABLE" parameterTypeRef="UINT1">
|
|
175
|
+
<xtce:ShortDescription>Optics HV - ESA B Enable</xtce:ShortDescription>
|
|
176
|
+
</xtce:Parameter>
|
|
177
|
+
<xtce:Parameter name="SPARE_2" parameterTypeRef="UINT1">
|
|
178
|
+
<xtce:ShortDescription>Spare (was Optics HV - ESA B Range)</xtce:ShortDescription>
|
|
179
|
+
</xtce:Parameter>
|
|
180
|
+
<xtce:Parameter name="OPTICS_HV_ESA_A_ENABLE" parameterTypeRef="UINT1">
|
|
181
|
+
<xtce:ShortDescription>Optics HV - ESA A Enable</xtce:ShortDescription>
|
|
182
|
+
</xtce:Parameter>
|
|
183
|
+
<xtce:Parameter name="SPARE_3" parameterTypeRef="UINT1">
|
|
184
|
+
<xtce:ShortDescription>Spare (was Optics HV - ESA A Range)</xtce:ShortDescription>
|
|
185
|
+
</xtce:Parameter>
|
|
186
|
+
<xtce:Parameter name="SENSOR_HV_CMD_ERR_CNT" parameterTypeRef="UINT2">
|
|
187
|
+
<xtce:ShortDescription>Sensor HV - Number of command errors</xtce:ShortDescription>
|
|
188
|
+
</xtce:Parameter>
|
|
189
|
+
<xtce:Parameter name="SENSOR_HV_ARM_ERR_CNT" parameterTypeRef="UINT2">
|
|
190
|
+
<xtce:ShortDescription>Sensor HV - Number of Arm errors</xtce:ShortDescription>
|
|
191
|
+
</xtce:Parameter>
|
|
192
|
+
<xtce:Parameter name="SENSOR_HV_MASTER_ENABLE" parameterTypeRef="UINT1">
|
|
193
|
+
<xtce:ShortDescription>Sensor HV - Master Enable</xtce:ShortDescription>
|
|
194
|
+
</xtce:Parameter>
|
|
195
|
+
<xtce:Parameter name="SENSOR_HV_APD_BIAS_ENABLE" parameterTypeRef="UINT1">
|
|
196
|
+
<xtce:ShortDescription>Sensor HV - APD Bias Enable</xtce:ShortDescription>
|
|
197
|
+
</xtce:Parameter>
|
|
198
|
+
<xtce:Parameter name="SENSOR_HV_P6KV_ENABLE" parameterTypeRef="UINT1">
|
|
199
|
+
<xtce:ShortDescription>Sensor HV - p6KV Enable</xtce:ShortDescription>
|
|
200
|
+
</xtce:Parameter>
|
|
201
|
+
<xtce:Parameter name="SENSOR_HV_STOP_MCP_ENABLE" parameterTypeRef="UINT1">
|
|
202
|
+
<xtce:ShortDescription>Sensor HV - Stop MCP Enable</xtce:ShortDescription>
|
|
203
|
+
</xtce:Parameter>
|
|
204
|
+
<xtce:Parameter name="SENSOR_HV_START_MCP_ENABLE" parameterTypeRef="UINT1">
|
|
205
|
+
<xtce:ShortDescription>Sensor HV - Start MCP Enable</xtce:ShortDescription>
|
|
206
|
+
</xtce:Parameter>
|
|
207
|
+
<xtce:Parameter name="SPARE_4" parameterTypeRef="UINT3">
|
|
208
|
+
<xtce:ShortDescription>Spare for alignment</xtce:ShortDescription>
|
|
209
|
+
</xtce:Parameter>
|
|
210
|
+
<xtce:Parameter name="OPTICS_HV_DAC_ESA_A" parameterTypeRef="UINT12">
|
|
211
|
+
<xtce:ShortDescription>Optics HV - ESA A DAC</xtce:ShortDescription>
|
|
212
|
+
</xtce:Parameter>
|
|
213
|
+
<xtce:Parameter name="OPTICS_HV_DAC_ESA_B" parameterTypeRef="UINT12">
|
|
214
|
+
<xtce:ShortDescription>Optics HV - ESA B DAC</xtce:ShortDescription>
|
|
215
|
+
</xtce:Parameter>
|
|
216
|
+
<xtce:Parameter name="OPTICS_HV_DAC_IONBULK" parameterTypeRef="UINT12">
|
|
217
|
+
<xtce:ShortDescription>Optics HV - Ion Bulk DAC</xtce:ShortDescription>
|
|
218
|
+
</xtce:Parameter>
|
|
219
|
+
<xtce:Parameter name="SENSOR_HV_DAC_SSDO" parameterTypeRef="UINT12">
|
|
220
|
+
<xtce:ShortDescription>Sensor HV - SSDO Enable</xtce:ShortDescription>
|
|
221
|
+
</xtce:Parameter>
|
|
222
|
+
<xtce:Parameter name="SENSOR_HV_DAC_SSDB" parameterTypeRef="UINT12">
|
|
223
|
+
<xtce:ShortDescription>Sensor HV - SSD Bias Enable</xtce:ShortDescription>
|
|
224
|
+
</xtce:Parameter>
|
|
225
|
+
<xtce:Parameter name="SENSOR_HV_DAC_APDB" parameterTypeRef="UINT12">
|
|
226
|
+
<xtce:ShortDescription>Sensor HV - ADP Bias Enable</xtce:ShortDescription>
|
|
227
|
+
</xtce:Parameter>
|
|
228
|
+
<xtce:Parameter name="SENSOR_HV_DAC_APDB2" parameterTypeRef="UINT12">
|
|
229
|
+
<xtce:ShortDescription>Sensor HV - ADP Bias 2 Enable</xtce:ShortDescription>
|
|
230
|
+
</xtce:Parameter>
|
|
231
|
+
<xtce:Parameter name="SENSOR_HV_DAC_START_MCP" parameterTypeRef="UINT12">
|
|
232
|
+
<xtce:ShortDescription>Sensor HV - Start MCP DAC</xtce:ShortDescription>
|
|
233
|
+
</xtce:Parameter>
|
|
234
|
+
<xtce:Parameter name="SENSOR_HV_DAC_STOP_MCP" parameterTypeRef="UINT12">
|
|
235
|
+
<xtce:ShortDescription>Sensor HV - Stop MCP DAC</xtce:ShortDescription>
|
|
236
|
+
</xtce:Parameter>
|
|
237
|
+
<xtce:Parameter name="SENSOR_HV_DAC_STOP_OPTICS_GRID" parameterTypeRef="UINT12">
|
|
238
|
+
<xtce:ShortDescription>Sensor HV - Stop Optics Grid DAC</xtce:ShortDescription>
|
|
239
|
+
</xtce:Parameter>
|
|
240
|
+
<xtce:Parameter name="SBULK_VMON" parameterTypeRef="UINT12">
|
|
241
|
+
<xtce:ShortDescription>HVPS – V1: Sensor Bulk Voltage Monitor</xtce:ShortDescription>
|
|
242
|
+
</xtce:Parameter>
|
|
243
|
+
<xtce:Parameter name="SSDO_VMON" parameterTypeRef="UINT12">
|
|
244
|
+
<xtce:ShortDescription>HVPS – V2: SSD Optics Voltage Monitor</xtce:ShortDescription>
|
|
245
|
+
</xtce:Parameter>
|
|
246
|
+
<xtce:Parameter name="SSDB_VMON" parameterTypeRef="UINT12">
|
|
247
|
+
<xtce:ShortDescription>HVPS – V3: SSD Bias Voltage Monitor</xtce:ShortDescription>
|
|
248
|
+
</xtce:Parameter>
|
|
249
|
+
<xtce:Parameter name="APDB1_VMON" parameterTypeRef="UINT12">
|
|
250
|
+
<xtce:ShortDescription>HVPS – V4: APD1 Bias Voltage Monitor</xtce:ShortDescription>
|
|
251
|
+
</xtce:Parameter>
|
|
252
|
+
<xtce:Parameter name="APDB2_VMON" parameterTypeRef="UINT12">
|
|
253
|
+
<xtce:ShortDescription>HVPS – V5: APD1 Bias Voltage Monitor</xtce:ShortDescription>
|
|
254
|
+
</xtce:Parameter>
|
|
255
|
+
<xtce:Parameter name="IOBULK_VMON" parameterTypeRef="UINT12">
|
|
256
|
+
<xtce:ShortDescription>HVPS – V6: IO Bulk Voltage Monitor</xtce:ShortDescription>
|
|
257
|
+
</xtce:Parameter>
|
|
258
|
+
<xtce:Parameter name="ESAA_HI_VMON" parameterTypeRef="UINT12">
|
|
259
|
+
<xtce:ShortDescription>HVPS – V7: ESA A High Range Voltage Monitor</xtce:ShortDescription>
|
|
260
|
+
</xtce:Parameter>
|
|
261
|
+
<xtce:Parameter name="SPARE_62" parameterTypeRef="UINT12">
|
|
262
|
+
<xtce:ShortDescription>Spare (was ESAA_LO_VMON)</xtce:ShortDescription>
|
|
263
|
+
</xtce:Parameter>
|
|
264
|
+
<xtce:Parameter name="STRMCP_VMON" parameterTypeRef="UINT12">
|
|
265
|
+
<xtce:ShortDescription>HVPS – V9: Start MCP Voltage Monitor</xtce:ShortDescription>
|
|
266
|
+
</xtce:Parameter>
|
|
267
|
+
<xtce:Parameter name="STPMCP_VMON" parameterTypeRef="UINT12">
|
|
268
|
+
<xtce:ShortDescription>HVPS – V10: Stop MCP Voltage Monitor</xtce:ShortDescription>
|
|
269
|
+
</xtce:Parameter>
|
|
270
|
+
<xtce:Parameter name="STPOG_VMON" parameterTypeRef="UINT12">
|
|
271
|
+
<xtce:ShortDescription>HVPS – V11: Stop Optics Grid Voltage Monitor</xtce:ShortDescription>
|
|
272
|
+
</xtce:Parameter>
|
|
273
|
+
<xtce:Parameter name="APDB1_IMON" parameterTypeRef="UINT12">
|
|
274
|
+
<xtce:ShortDescription>HVPS – V12: APD1 Bias Current Monitor</xtce:ShortDescription>
|
|
275
|
+
</xtce:Parameter>
|
|
276
|
+
<xtce:Parameter name="ESAB_HI_VMON" parameterTypeRef="UINT12">
|
|
277
|
+
<xtce:ShortDescription>HVPS – V13: ESA A High Range Voltage Monitor</xtce:ShortDescription>
|
|
278
|
+
</xtce:Parameter>
|
|
279
|
+
<xtce:Parameter name="SPARE_68" parameterTypeRef="UINT12">
|
|
280
|
+
<xtce:ShortDescription>Spare (was ESAB_LO_VMON)</xtce:ShortDescription>
|
|
281
|
+
</xtce:Parameter>
|
|
282
|
+
<xtce:Parameter name="APDB2_IMON" parameterTypeRef="UINT12">
|
|
283
|
+
<xtce:ShortDescription>HVPS – V15: APD2 Bias Current Monitor</xtce:ShortDescription>
|
|
284
|
+
</xtce:Parameter>
|
|
285
|
+
<xtce:Parameter name="SSDB_IMON" parameterTypeRef="UINT12">
|
|
286
|
+
<xtce:ShortDescription>HVPS – V16: SSD Bias Current Moniotr</xtce:ShortDescription>
|
|
287
|
+
</xtce:Parameter>
|
|
288
|
+
<xtce:Parameter name="STPMCP_IMON" parameterTypeRef="UINT12">
|
|
289
|
+
<xtce:ShortDescription>HVPS – I1: Stop MCP Current Monitor</xtce:ShortDescription>
|
|
290
|
+
</xtce:Parameter>
|
|
291
|
+
<xtce:Parameter name="IOBULK_IMON" parameterTypeRef="UINT12">
|
|
292
|
+
<xtce:ShortDescription>HVPS – I2: IO Bulk CurrentMonitor</xtce:ShortDescription>
|
|
293
|
+
</xtce:Parameter>
|
|
294
|
+
<xtce:Parameter name="STRMCP_IMON" parameterTypeRef="UINT12">
|
|
295
|
+
<xtce:ShortDescription>HVPS – I3: Start MCP Current Monitor</xtce:ShortDescription>
|
|
296
|
+
</xtce:Parameter>
|
|
297
|
+
<xtce:Parameter name="MDM25P_14_T" parameterTypeRef="UINT12">
|
|
298
|
+
<xtce:ShortDescription>System Temperature 1: MDM25P – 14 Temperature</xtce:ShortDescription>
|
|
299
|
+
</xtce:Parameter>
|
|
300
|
+
<xtce:Parameter name="MDM25P_15_T" parameterTypeRef="UINT12">
|
|
301
|
+
<xtce:ShortDescription>System Temperature 2: MDM25P – 15 Temperature</xtce:ShortDescription>
|
|
302
|
+
</xtce:Parameter>
|
|
303
|
+
<xtce:Parameter name="MDM25P_16_T" parameterTypeRef="UINT12">
|
|
304
|
+
<xtce:ShortDescription>System Temperature 3: MDM25P – 16 Temperature</xtce:ShortDescription>
|
|
305
|
+
</xtce:Parameter>
|
|
306
|
+
<xtce:Parameter name="MDM51P_27_T" parameterTypeRef="UINT12">
|
|
307
|
+
<xtce:ShortDescription>LO Temperature: MDM51P – 27 Temperature</xtce:ShortDescription>
|
|
308
|
+
</xtce:Parameter>
|
|
309
|
+
<xtce:Parameter name="IO_HVPS_T" parameterTypeRef="UINT12">
|
|
310
|
+
<xtce:ShortDescription>HVPS Temperature: IO-HVPS Temperature</xtce:ShortDescription>
|
|
311
|
+
</xtce:Parameter>
|
|
312
|
+
<xtce:Parameter name="LVPS_12V_T" parameterTypeRef="UINT12">
|
|
313
|
+
<xtce:ShortDescription>LVPS Temperature 1: LVPS – 12V Temperature</xtce:ShortDescription>
|
|
314
|
+
</xtce:Parameter>
|
|
315
|
+
<xtce:Parameter name="LVPS_5V_T" parameterTypeRef="UINT12">
|
|
316
|
+
<xtce:ShortDescription>LVPS Temperature 2: LVPS – 5V Temperature</xtce:ShortDescription>
|
|
317
|
+
</xtce:Parameter>
|
|
318
|
+
<xtce:Parameter name="LVPS_3P3V_T" parameterTypeRef="UINT12">
|
|
319
|
+
<xtce:ShortDescription>LVPS Temperature 3: LVPS – +3.3V Temperature</xtce:ShortDescription>
|
|
320
|
+
</xtce:Parameter>
|
|
321
|
+
<xtce:Parameter name="LVPS_3P3V" parameterTypeRef="UINT12">
|
|
322
|
+
<xtce:ShortDescription>LVPS – Digital V1: LVPS – +3.3V</xtce:ShortDescription>
|
|
323
|
+
</xtce:Parameter>
|
|
324
|
+
<xtce:Parameter name="LVPS_5V" parameterTypeRef="UINT12">
|
|
325
|
+
<xtce:ShortDescription>LVPS – Digital V2: LVPS – +5V</xtce:ShortDescription>
|
|
326
|
+
</xtce:Parameter>
|
|
327
|
+
<xtce:Parameter name="LVPS_N5V" parameterTypeRef="UINT12">
|
|
328
|
+
<xtce:ShortDescription>LVPS – Digital V3: LVPS – -5V</xtce:ShortDescription>
|
|
329
|
+
</xtce:Parameter>
|
|
330
|
+
<xtce:Parameter name="LVPS_12V" parameterTypeRef="UINT12">
|
|
331
|
+
<xtce:ShortDescription>LVPS – Digital V4: LVPS – +12V</xtce:ShortDescription>
|
|
332
|
+
</xtce:Parameter>
|
|
333
|
+
<xtce:Parameter name="LVPS_N12V" parameterTypeRef="UINT12">
|
|
334
|
+
<xtce:ShortDescription>LVPS – Digital V5: LVPS – -12V</xtce:ShortDescription>
|
|
335
|
+
</xtce:Parameter>
|
|
336
|
+
<xtce:Parameter name="LVPS_3P3V_I" parameterTypeRef="UINT12">
|
|
337
|
+
<xtce:ShortDescription>LVPS – Digital I1: LVPS – +3.3V Current</xtce:ShortDescription>
|
|
338
|
+
</xtce:Parameter>
|
|
339
|
+
<xtce:Parameter name="LVPS_5V_I" parameterTypeRef="UINT12">
|
|
340
|
+
<xtce:ShortDescription>LVPS – Digital I2: LVPS – +5V Current</xtce:ShortDescription>
|
|
341
|
+
</xtce:Parameter>
|
|
342
|
+
<xtce:Parameter name="LVPS_N5V_I" parameterTypeRef="UINT12">
|
|
343
|
+
<xtce:ShortDescription>LVPS – Digital I3: LVPS – -5V Current</xtce:ShortDescription>
|
|
344
|
+
</xtce:Parameter>
|
|
345
|
+
<xtce:Parameter name="LVPS_12V_I" parameterTypeRef="UINT12">
|
|
346
|
+
<xtce:ShortDescription>LVPS – Digital I4: LVPS – +12V Current</xtce:ShortDescription>
|
|
347
|
+
</xtce:Parameter>
|
|
348
|
+
<xtce:Parameter name="LVPS_N12V_I" parameterTypeRef="UINT12">
|
|
349
|
+
<xtce:ShortDescription>LVPS – Digital I5: LVPS – -12V Current</xtce:ShortDescription>
|
|
350
|
+
</xtce:Parameter>
|
|
351
|
+
<xtce:Parameter name="CDH_1P5V" parameterTypeRef="UINT12">
|
|
352
|
+
<xtce:ShortDescription>CDH – + 1.5V</xtce:ShortDescription>
|
|
353
|
+
</xtce:Parameter>
|
|
354
|
+
<xtce:Parameter name="CDH_1P8V" parameterTypeRef="UINT12">
|
|
355
|
+
<xtce:ShortDescription>CDH – +1.8V</xtce:ShortDescription>
|
|
356
|
+
</xtce:Parameter>
|
|
357
|
+
<xtce:Parameter name="CDH_3P3V" parameterTypeRef="UINT12">
|
|
358
|
+
<xtce:ShortDescription>CDH – +3.3V</xtce:ShortDescription>
|
|
359
|
+
</xtce:Parameter>
|
|
360
|
+
<xtce:Parameter name="CDH_12V" parameterTypeRef="UINT12">
|
|
361
|
+
<xtce:ShortDescription>CDH – +12V</xtce:ShortDescription>
|
|
362
|
+
</xtce:Parameter>
|
|
363
|
+
<xtce:Parameter name="CDH_N12V" parameterTypeRef="UINT12">
|
|
364
|
+
<xtce:ShortDescription>CDH – -12V</xtce:ShortDescription>
|
|
365
|
+
</xtce:Parameter>
|
|
366
|
+
<xtce:Parameter name="CDH_5V" parameterTypeRef="UINT12">
|
|
367
|
+
<xtce:ShortDescription>CDH – +5V</xtce:ShortDescription>
|
|
368
|
+
</xtce:Parameter>
|
|
369
|
+
<xtce:Parameter name="CDH_5V_ADC" parameterTypeRef="UINT12">
|
|
370
|
+
<xtce:ShortDescription>CDH – Analog Ref: CDH – +5V ADC</xtce:ShortDescription>
|
|
371
|
+
</xtce:Parameter>
|
|
372
|
+
<xtce:Parameter name="TBD_HVPS_1_IF_ERR_CNT" parameterTypeRef="UINT2">
|
|
373
|
+
<xtce:ShortDescription>TBD - Placeholder for HVPS 1 Interface error counts</xtce:ShortDescription>
|
|
374
|
+
</xtce:Parameter>
|
|
375
|
+
<xtce:Parameter name="TBD_HVPS_2_IF_ERR_CNT" parameterTypeRef="UINT2">
|
|
376
|
+
<xtce:ShortDescription>TBD - Placeholder for HVPS 2 Interface error counts</xtce:ShortDescription>
|
|
377
|
+
</xtce:Parameter>
|
|
378
|
+
<xtce:Parameter name="TBD_FEE_1_IF_ERR_CNT" parameterTypeRef="UINT2">
|
|
379
|
+
<xtce:ShortDescription>TBD - Placeholder for FEE 1 Interface error counts</xtce:ShortDescription>
|
|
380
|
+
</xtce:Parameter>
|
|
381
|
+
<xtce:Parameter name="TBD_FEE_2_IF_ERR_CNT" parameterTypeRef="UINT2">
|
|
382
|
+
<xtce:ShortDescription>TBD - Placeholder for FEE 2 Interface error counts</xtce:ShortDescription>
|
|
383
|
+
</xtce:Parameter>
|
|
384
|
+
<xtce:Parameter name="TBD_MACRO_STATUS" parameterTypeRef="UINT28">
|
|
385
|
+
<xtce:ShortDescription>TBD - Placeholder for Macro status</xtce:ShortDescription>
|
|
386
|
+
</xtce:Parameter>
|
|
387
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_FSW" parameterTypeRef="UINT2">
|
|
388
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 1 limits have triggered</xtce:ShortDescription>
|
|
389
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 1 limits have triggered.
|
|
390
|
+
|
|
391
|
+
2 bits: 0: No triggers; 1: One trigger, 2: Two triggers, 3: More than two triggers</xtce:LongDescription>
|
|
392
|
+
</xtce:Parameter>
|
|
393
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_HVPS" parameterTypeRef="UINT2">
|
|
394
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 2 limits have triggered</xtce:ShortDescription>
|
|
395
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 2 limits have triggered</xtce:LongDescription>
|
|
396
|
+
</xtce:Parameter>
|
|
397
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_CDH" parameterTypeRef="UINT2">
|
|
398
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 3 limits have triggered</xtce:ShortDescription>
|
|
399
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 3 limits have triggered</xtce:LongDescription>
|
|
400
|
+
</xtce:Parameter>
|
|
401
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_FEE" parameterTypeRef="UINT2">
|
|
402
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 4 limits have triggered</xtce:ShortDescription>
|
|
403
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 4 limits have triggered</xtce:LongDescription>
|
|
404
|
+
</xtce:Parameter>
|
|
405
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_SPARE1" parameterTypeRef="UINT2">
|
|
406
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 5 limits have triggered</xtce:ShortDescription>
|
|
407
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 5 limits have triggered</xtce:LongDescription>
|
|
408
|
+
</xtce:Parameter>
|
|
409
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_SPARE2" parameterTypeRef="UINT2">
|
|
410
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 6 limits have triggered</xtce:ShortDescription>
|
|
411
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 6 limits have triggered</xtce:LongDescription>
|
|
412
|
+
</xtce:Parameter>
|
|
413
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_SPARE3" parameterTypeRef="UINT2">
|
|
414
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 7 limits have triggered</xtce:ShortDescription>
|
|
415
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 7 limits have triggered</xtce:LongDescription>
|
|
416
|
+
</xtce:Parameter>
|
|
417
|
+
<xtce:Parameter name="FDC_TRIGGER_CNT_SPARE4" parameterTypeRef="UINT2">
|
|
418
|
+
<xtce:ShortDescription>Indicates whether any CATEGORY 8 limits have triggered</xtce:ShortDescription>
|
|
419
|
+
<xtce:LongDescription>Indicates whether any CATEGORY 8 limits have triggered</xtce:LongDescription>
|
|
420
|
+
</xtce:Parameter>
|
|
421
|
+
<xtce:Parameter name="FDC_LAST_TRIGGER_MINMAX" parameterTypeRef="UINT1">
|
|
422
|
+
<xtce:ShortDescription>Indicates whether the most recent trigger was a minimum or maximum limit</xtce:ShortDescription>
|
|
423
|
+
<xtce:LongDescription>Indicates whether the most recent trigger was a minimum or maximum limit</xtce:LongDescription>
|
|
424
|
+
</xtce:Parameter>
|
|
425
|
+
<xtce:Parameter name="FDC_LAST_TRIGGER_ID" parameterTypeRef="UINT15">
|
|
426
|
+
<xtce:ShortDescription>Indicates the ID of the most recent FDC trigger</xtce:ShortDescription>
|
|
427
|
+
<xtce:LongDescription>Indicates the ID of the most recent FDC trigger</xtce:LongDescription>
|
|
428
|
+
</xtce:Parameter>
|
|
429
|
+
<xtce:Parameter name="FDC_LAST_TRIGGER_ACTION" parameterTypeRef="UINT8">
|
|
430
|
+
<xtce:ShortDescription>Indicates the action that was taken for the most recent FDC trigger</xtce:ShortDescription>
|
|
431
|
+
<xtce:LongDescription>Indicates the action that was taken for the most recent FDC trigger</xtce:LongDescription>
|
|
432
|
+
</xtce:Parameter>
|
|
433
|
+
<xtce:Parameter name="ROUND_ROBIN_INDEX" parameterTypeRef="UINT8">
|
|
434
|
+
<xtce:ShortDescription>Round Robin Parameter Report Index</xtce:ShortDescription>
|
|
435
|
+
<xtce:LongDescription>Current index for the Round Robin parameter reporting. The Round Robin mechanism reports one value from the Parameter Table each time this packet is generated.</xtce:LongDescription>
|
|
436
|
+
</xtce:Parameter>
|
|
437
|
+
<xtce:Parameter name="ROUND_ROBIN_VALUE" parameterTypeRef="UINT32">
|
|
438
|
+
<xtce:ShortDescription>Round Robin Parameter Report Value</xtce:ShortDescription>
|
|
439
|
+
<xtce:LongDescription>Parameter value corresponding to the current Round_Robin_Index value.</xtce:LongDescription>
|
|
440
|
+
</xtce:Parameter>
|
|
441
|
+
<xtce:Parameter name="HEATER_CONTROL_STATE" parameterTypeRef="UINT1">
|
|
442
|
+
<xtce:ShortDescription>State of the heater controller</xtce:ShortDescription>
|
|
443
|
+
<xtce:LongDescription>Indicates whether FSW control of the operational heater is enabled</xtce:LongDescription>
|
|
444
|
+
</xtce:Parameter>
|
|
445
|
+
<xtce:Parameter name="HEATER_OUTPUT_STATE" parameterTypeRef="UINT1">
|
|
446
|
+
<xtce:ShortDescription>State of the heater output</xtce:ShortDescription>
|
|
447
|
+
<xtce:LongDescription>Indicates the current state of the physical heater output</xtce:LongDescription>
|
|
448
|
+
</xtce:Parameter>
|
|
449
|
+
<xtce:Parameter name="SPARE_5" parameterTypeRef="UINT14">
|
|
450
|
+
<xtce:ShortDescription>Spare for alignment</xtce:ShortDescription>
|
|
451
|
+
<xtce:LongDescription>Spare for alignment</xtce:LongDescription>
|
|
452
|
+
</xtce:Parameter>
|
|
453
|
+
<xtce:Parameter name="CDH_PROCESSOR_T" parameterTypeRef="UINT12">
|
|
454
|
+
<xtce:ShortDescription>CDH – Processor Temp monitor</xtce:ShortDescription>
|
|
455
|
+
</xtce:Parameter>
|
|
456
|
+
<xtce:Parameter name="CDH_1P8V_LDO_T" parameterTypeRef="UINT12">
|
|
457
|
+
<xtce:ShortDescription>CDH – +1.8V LDO Temp monitor</xtce:ShortDescription>
|
|
458
|
+
</xtce:Parameter>
|
|
459
|
+
<xtce:Parameter name="CDH_1P5V_LDO_T" parameterTypeRef="UINT12">
|
|
460
|
+
<xtce:ShortDescription>CDH – +1.5V LDO Temp monitor</xtce:ShortDescription>
|
|
461
|
+
</xtce:Parameter>
|
|
462
|
+
<xtce:Parameter name="CDH_SDRAM_T" parameterTypeRef="UINT12">
|
|
463
|
+
<xtce:ShortDescription>CDH – SDRAM Temp monitor</xtce:ShortDescription>
|
|
464
|
+
</xtce:Parameter>
|
|
465
|
+
<xtce:Parameter name="SNSR_HVPS_T" parameterTypeRef="UINT12">
|
|
466
|
+
<xtce:ShortDescription>CoDICE – Sensor HVPS Temp monitor</xtce:ShortDescription>
|
|
467
|
+
</xtce:Parameter>
|
|
468
|
+
<xtce:Parameter name="SPARE_6" parameterTypeRef="UINT4">
|
|
469
|
+
<xtce:ShortDescription>Spare for alignment</xtce:ShortDescription>
|
|
470
|
+
<xtce:LongDescription>Spare for alignment</xtce:LongDescription>
|
|
471
|
+
</xtce:Parameter>
|
|
472
|
+
</xtce:ParameterSet>
|
|
473
|
+
<xtce:ContainerSet>
|
|
474
|
+
<xtce:SequenceContainer name="CCSDSPacket">
|
|
475
|
+
<xtce:EntryList>
|
|
476
|
+
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
477
|
+
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
478
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
|
|
479
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID" />
|
|
480
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
|
|
481
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
|
|
482
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
483
|
+
</xtce:EntryList>
|
|
484
|
+
</xtce:SequenceContainer>
|
|
485
|
+
<xtce:SequenceContainer name="P_COD_NHK">
|
|
486
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
487
|
+
<xtce:RestrictionCriteria>
|
|
488
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1136" useCalibratedValue="false" />
|
|
489
|
+
</xtce:RestrictionCriteria>
|
|
490
|
+
</xtce:BaseContainer>
|
|
491
|
+
<xtce:EntryList>
|
|
492
|
+
<xtce:ParameterRefEntry parameterRef="SHCOARSE" />
|
|
493
|
+
<xtce:ParameterRefEntry parameterRef="PACKET_VERSION" />
|
|
494
|
+
<xtce:ParameterRefEntry parameterRef="CMDEXE" />
|
|
495
|
+
<xtce:ParameterRefEntry parameterRef="CMDRJCT" />
|
|
496
|
+
<xtce:ParameterRefEntry parameterRef="LAST_OPCODE" />
|
|
497
|
+
<xtce:ParameterRefEntry parameterRef="MODE" />
|
|
498
|
+
<xtce:ParameterRefEntry parameterRef="MEMOP_STATE" />
|
|
499
|
+
<xtce:ParameterRefEntry parameterRef="MEMDUMP_STATE" />
|
|
500
|
+
<xtce:ParameterRefEntry parameterRef="ITF_ERR_CNT" />
|
|
501
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_CNT" />
|
|
502
|
+
<xtce:ParameterRefEntry parameterRef="MISSED_PPS_CNT" />
|
|
503
|
+
<xtce:ParameterRefEntry parameterRef="WDOG_TIMEOUT_CNT" />
|
|
504
|
+
<xtce:ParameterRefEntry parameterRef="HV_PLUG" />
|
|
505
|
+
<xtce:ParameterRefEntry parameterRef="CMD_FIFO_OVERRUN_CNT" />
|
|
506
|
+
<xtce:ParameterRefEntry parameterRef="CMD_FIFO_UNDERRUN_CNT" />
|
|
507
|
+
<xtce:ParameterRefEntry parameterRef="CMD_FIFO_PARITY_ERR_CNT" />
|
|
508
|
+
<xtce:ParameterRefEntry parameterRef="CMD_FIFO_FRAME_ERR_CNT" />
|
|
509
|
+
<xtce:ParameterRefEntry parameterRef="TLM_FIFO_OVERRUN_CNT" />
|
|
510
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_BIN_PERIOD" />
|
|
511
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_PERIOD" />
|
|
512
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_PERIOD_TIMER" />
|
|
513
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_TIMESTAMP_SECONDS" />
|
|
514
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_TIMESTAMP_SUBSECONDS" />
|
|
515
|
+
<xtce:ParameterRefEntry parameterRef="SPIN_BIN_INDEX" />
|
|
516
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_CMD_ERR_CNT" />
|
|
517
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_1" />
|
|
518
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_ARM_ERR_CNT" />
|
|
519
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_MASTER_ENABLE" />
|
|
520
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_N15KV_ENABLE" />
|
|
521
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_ESA_B_ENABLE" />
|
|
522
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_2" />
|
|
523
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_ESA_A_ENABLE" />
|
|
524
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_3" />
|
|
525
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_CMD_ERR_CNT" />
|
|
526
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_ARM_ERR_CNT" />
|
|
527
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_MASTER_ENABLE" />
|
|
528
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_APD_BIAS_ENABLE" />
|
|
529
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_P6KV_ENABLE" />
|
|
530
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_STOP_MCP_ENABLE" />
|
|
531
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_START_MCP_ENABLE" />
|
|
532
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_4" />
|
|
533
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_DAC_ESA_A" />
|
|
534
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_DAC_ESA_B" />
|
|
535
|
+
<xtce:ParameterRefEntry parameterRef="OPTICS_HV_DAC_IONBULK" />
|
|
536
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_SSDO" />
|
|
537
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_SSDB" />
|
|
538
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_APDB" />
|
|
539
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_APDB2" />
|
|
540
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_START_MCP" />
|
|
541
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_STOP_MCP" />
|
|
542
|
+
<xtce:ParameterRefEntry parameterRef="SENSOR_HV_DAC_STOP_OPTICS_GRID" />
|
|
543
|
+
<xtce:ParameterRefEntry parameterRef="SBULK_VMON" />
|
|
544
|
+
<xtce:ParameterRefEntry parameterRef="SSDO_VMON" />
|
|
545
|
+
<xtce:ParameterRefEntry parameterRef="SSDB_VMON" />
|
|
546
|
+
<xtce:ParameterRefEntry parameterRef="APDB1_VMON" />
|
|
547
|
+
<xtce:ParameterRefEntry parameterRef="APDB2_VMON" />
|
|
548
|
+
<xtce:ParameterRefEntry parameterRef="IOBULK_VMON" />
|
|
549
|
+
<xtce:ParameterRefEntry parameterRef="ESAA_HI_VMON" />
|
|
550
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_62" />
|
|
551
|
+
<xtce:ParameterRefEntry parameterRef="STRMCP_VMON" />
|
|
552
|
+
<xtce:ParameterRefEntry parameterRef="STPMCP_VMON" />
|
|
553
|
+
<xtce:ParameterRefEntry parameterRef="STPOG_VMON" />
|
|
554
|
+
<xtce:ParameterRefEntry parameterRef="APDB1_IMON" />
|
|
555
|
+
<xtce:ParameterRefEntry parameterRef="ESAB_HI_VMON" />
|
|
556
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_68" />
|
|
557
|
+
<xtce:ParameterRefEntry parameterRef="APDB2_IMON" />
|
|
558
|
+
<xtce:ParameterRefEntry parameterRef="SSDB_IMON" />
|
|
559
|
+
<xtce:ParameterRefEntry parameterRef="STPMCP_IMON" />
|
|
560
|
+
<xtce:ParameterRefEntry parameterRef="IOBULK_IMON" />
|
|
561
|
+
<xtce:ParameterRefEntry parameterRef="STRMCP_IMON" />
|
|
562
|
+
<xtce:ParameterRefEntry parameterRef="MDM25P_14_T" />
|
|
563
|
+
<xtce:ParameterRefEntry parameterRef="MDM25P_15_T" />
|
|
564
|
+
<xtce:ParameterRefEntry parameterRef="MDM25P_16_T" />
|
|
565
|
+
<xtce:ParameterRefEntry parameterRef="MDM51P_27_T" />
|
|
566
|
+
<xtce:ParameterRefEntry parameterRef="IO_HVPS_T" />
|
|
567
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_12V_T" />
|
|
568
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_5V_T" />
|
|
569
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_3P3V_T" />
|
|
570
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_3P3V" />
|
|
571
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_5V" />
|
|
572
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_N5V" />
|
|
573
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_12V" />
|
|
574
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_N12V" />
|
|
575
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_3P3V_I" />
|
|
576
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_5V_I" />
|
|
577
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_N5V_I" />
|
|
578
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_12V_I" />
|
|
579
|
+
<xtce:ParameterRefEntry parameterRef="LVPS_N12V_I" />
|
|
580
|
+
<xtce:ParameterRefEntry parameterRef="CDH_1P5V" />
|
|
581
|
+
<xtce:ParameterRefEntry parameterRef="CDH_1P8V" />
|
|
582
|
+
<xtce:ParameterRefEntry parameterRef="CDH_3P3V" />
|
|
583
|
+
<xtce:ParameterRefEntry parameterRef="CDH_12V" />
|
|
584
|
+
<xtce:ParameterRefEntry parameterRef="CDH_N12V" />
|
|
585
|
+
<xtce:ParameterRefEntry parameterRef="CDH_5V" />
|
|
586
|
+
<xtce:ParameterRefEntry parameterRef="CDH_5V_ADC" />
|
|
587
|
+
<xtce:ParameterRefEntry parameterRef="TBD_HVPS_1_IF_ERR_CNT" />
|
|
588
|
+
<xtce:ParameterRefEntry parameterRef="TBD_HVPS_2_IF_ERR_CNT" />
|
|
589
|
+
<xtce:ParameterRefEntry parameterRef="TBD_FEE_1_IF_ERR_CNT" />
|
|
590
|
+
<xtce:ParameterRefEntry parameterRef="TBD_FEE_2_IF_ERR_CNT" />
|
|
591
|
+
<xtce:ParameterRefEntry parameterRef="TBD_MACRO_STATUS" />
|
|
592
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_FSW" />
|
|
593
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_HVPS" />
|
|
594
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_CDH" />
|
|
595
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_FEE" />
|
|
596
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_SPARE1" />
|
|
597
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_SPARE2" />
|
|
598
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_SPARE3" />
|
|
599
|
+
<xtce:ParameterRefEntry parameterRef="FDC_TRIGGER_CNT_SPARE4" />
|
|
600
|
+
<xtce:ParameterRefEntry parameterRef="FDC_LAST_TRIGGER_MINMAX" />
|
|
601
|
+
<xtce:ParameterRefEntry parameterRef="FDC_LAST_TRIGGER_ID" />
|
|
602
|
+
<xtce:ParameterRefEntry parameterRef="FDC_LAST_TRIGGER_ACTION" />
|
|
603
|
+
<xtce:ParameterRefEntry parameterRef="ROUND_ROBIN_INDEX" />
|
|
604
|
+
<xtce:ParameterRefEntry parameterRef="ROUND_ROBIN_VALUE" />
|
|
605
|
+
<xtce:ParameterRefEntry parameterRef="HEATER_CONTROL_STATE" />
|
|
606
|
+
<xtce:ParameterRefEntry parameterRef="HEATER_OUTPUT_STATE" />
|
|
607
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_5" />
|
|
608
|
+
<xtce:ParameterRefEntry parameterRef="CDH_PROCESSOR_T" />
|
|
609
|
+
<xtce:ParameterRefEntry parameterRef="CDH_1P8V_LDO_T" />
|
|
610
|
+
<xtce:ParameterRefEntry parameterRef="CDH_1P5V_LDO_T" />
|
|
611
|
+
<xtce:ParameterRefEntry parameterRef="CDH_SDRAM_T" />
|
|
612
|
+
<xtce:ParameterRefEntry parameterRef="SNSR_HVPS_T" />
|
|
613
|
+
<xtce:ParameterRefEntry parameterRef="SPARE_6" />
|
|
614
|
+
</xtce:EntryList>
|
|
615
|
+
</xtce:SequenceContainer>
|
|
616
|
+
</xtce:ContainerSet>
|
|
617
|
+
</xtce:TelemetryMetaData>
|
|
618
|
+
</xtce:SpaceSystem>
|