imap-processing 0.11.0__py3-none-any.whl → 0.13.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.
Potentially problematic release.
This version of imap-processing might be problematic. Click here for more details.
- imap_processing/__init__.py +11 -11
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +66 -18
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +24 -40
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +934 -42
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -14
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
- imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +25 -9
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +0 -12
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +23 -20
- imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
- imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
- imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +64 -52
- imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +180 -19
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +80 -17
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +32 -57
- imap_processing/cdf/utils.py +52 -38
- imap_processing/cli.py +477 -233
- imap_processing/codice/codice_l1a.py +466 -131
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +1360 -569
- imap_processing/codice/decompress.py +2 -6
- imap_processing/ena_maps/ena_maps.py +1103 -146
- imap_processing/ena_maps/utils/coordinates.py +19 -0
- imap_processing/ena_maps/utils/map_utils.py +14 -17
- imap_processing/ena_maps/utils/spatial_utils.py +55 -52
- imap_processing/glows/l1a/glows_l1a.py +28 -99
- imap_processing/glows/l1a/glows_l1a_data.py +2 -2
- imap_processing/glows/l1b/glows_l1b.py +1 -4
- imap_processing/glows/l1b/glows_l1b_data.py +1 -3
- imap_processing/glows/l2/glows_l2.py +2 -5
- imap_processing/hi/l1a/hi_l1a.py +54 -29
- imap_processing/hi/l1a/histogram.py +0 -1
- imap_processing/hi/l1a/science_direct_event.py +6 -8
- imap_processing/hi/l1b/hi_l1b.py +111 -82
- imap_processing/hi/l1c/hi_l1c.py +416 -32
- imap_processing/hi/utils.py +58 -12
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
- imap_processing/hit/hit_utils.py +235 -5
- imap_processing/hit/l0/constants.py +20 -11
- imap_processing/hit/l0/decom_hit.py +21 -5
- imap_processing/hit/l1a/hit_l1a.py +71 -75
- imap_processing/hit/l1b/constants.py +321 -0
- imap_processing/hit/l1b/hit_l1b.py +377 -67
- imap_processing/hit/l2/constants.py +318 -0
- imap_processing/hit/l2/hit_l2.py +723 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
- imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
- imap_processing/ialirt/l0/parse_mag.py +374 -0
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +548 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -208
- imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +114 -0
- imap_processing/ialirt/utils/time.py +29 -0
- imap_processing/idex/atomic_masses.csv +22 -0
- imap_processing/idex/decode.py +2 -2
- imap_processing/idex/idex_constants.py +33 -0
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +81 -51
- imap_processing/idex/idex_l1b.py +13 -39
- imap_processing/idex/idex_l2a.py +823 -0
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +11 -11
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +7 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -5
- imap_processing/lo/l1b/lo_l1b.py +702 -29
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +51 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l0/decom_mag.py +10 -3
- imap_processing/mag/l1a/mag_l1a.py +23 -19
- imap_processing/mag/l1a/mag_l1a_data.py +35 -10
- imap_processing/mag/l1b/mag_l1b.py +259 -50
- imap_processing/mag/l1c/interpolation_methods.py +388 -0
- imap_processing/mag/l1c/mag_l1c.py +621 -17
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/quality_flags.py +1 -0
- imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
- imap_processing/spacecraft/quaternions.py +121 -0
- imap_processing/spice/geometry.py +19 -22
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +149 -0
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +20 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -5
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +44 -12
- imap_processing/swe/l1a/swe_science.py +13 -13
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +75 -136
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
- imap_processing/swe/utils/swe_constants.py +64 -0
- imap_processing/swe/utils/swe_utils.py +85 -28
- imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
- imap_processing/tests/ccsds/test_excel_to_xtce.py +24 -21
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
- imap_processing/tests/cdf/test_utils.py +14 -16
- imap_processing/tests/codice/conftest.py +44 -33
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +126 -53
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/codice/test_decompress.py +4 -4
- imap_processing/tests/conftest.py +239 -27
- imap_processing/tests/ena_maps/conftest.py +51 -0
- imap_processing/tests/ena_maps/test_ena_maps.py +1068 -110
- imap_processing/tests/ena_maps/test_map_utils.py +66 -43
- imap_processing/tests/ena_maps/test_spatial_utils.py +17 -21
- imap_processing/tests/glows/conftest.py +10 -14
- imap_processing/tests/glows/test_glows_decom.py +4 -4
- imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
- imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
- imap_processing/tests/glows/test_glows_l1b.py +11 -11
- imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
- imap_processing/tests/glows/test_glows_l2.py +2 -8
- imap_processing/tests/hi/conftest.py +1 -1
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208.bin +0 -0
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
- imap_processing/tests/hi/test_hi_l1b.py +22 -27
- imap_processing/tests/hi/test_hi_l1c.py +249 -18
- imap_processing/tests/hi/test_l1a.py +35 -7
- imap_processing/tests/hi/test_science_direct_event.py +3 -3
- imap_processing/tests/hi/test_utils.py +24 -2
- imap_processing/tests/hit/helpers/l1_validation.py +74 -73
- imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_decom_hit.py +5 -1
- imap_processing/tests/hit/test_hit_l1a.py +32 -36
- imap_processing/tests/hit/test_hit_l1b.py +300 -81
- imap_processing/tests/hit/test_hit_l2.py +716 -0
- imap_processing/tests/hit/test_hit_utils.py +184 -7
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/data/l0/461971383-404.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971384-405.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971385-406.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971386-407.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971387-408.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971388-409.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971389-410.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971390-411.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971391-412.bin +0 -0
- imap_processing/tests/ialirt/data/l0/sample_decoded_i-alirt_data.csv +383 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
- imap_processing/tests/ialirt/unit/test_parse_mag.py +223 -0
- imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
- imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
- imap_processing/tests/ialirt/unit/test_process_swe.py +319 -6
- imap_processing/tests/ialirt/unit/test_time.py +16 -0
- imap_processing/tests/idex/conftest.py +127 -6
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +92 -21
- imap_processing/tests/idex/test_idex_l1b.py +106 -27
- imap_processing/tests/idex/test_idex_l2a.py +399 -0
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +515 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +7 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +120 -2
- imap_processing/tests/mag/test_mag_decom.py +5 -4
- imap_processing/tests/mag/test_mag_l1a.py +51 -7
- imap_processing/tests/mag/test_mag_l1b.py +40 -59
- imap_processing/tests/mag/test_mag_l1c.py +354 -19
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +247 -26
- imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
- imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
- imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l1b-calibration_20240229_v001.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
- imap_processing/tests/spacecraft/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +71 -0
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +9 -12
- imap_processing/tests/spice/test_kernels.py +1 -200
- imap_processing/tests/spice/test_pointing_frame.py +185 -0
- imap_processing/tests/spice/test_repoint.py +121 -0
- imap_processing/tests/spice/test_spin.py +50 -9
- imap_processing/tests/spice/test_time.py +14 -0
- imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
- imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
- imap_processing/tests/swapi/test_swapi_l1.py +13 -11
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
- imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
- imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
- imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
- imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
- imap_processing/tests/swe/test_swe_l1a.py +20 -2
- imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
- imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
- imap_processing/tests/swe/test_swe_l1b.py +162 -24
- imap_processing/tests/swe/test_swe_l2.py +153 -91
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +140 -17
- imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
- imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
- imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3243 -3243
- imap_processing/tests/ultra/data/mock_data.py +369 -0
- imap_processing/tests/ultra/unit/conftest.py +115 -89
- imap_processing/tests/ultra/unit/test_badtimes.py +4 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +8 -6
- imap_processing/tests/ultra/unit/test_de.py +14 -13
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +54 -11
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
- imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +77 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +98 -305
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +60 -14
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +26 -27
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +239 -70
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +114 -83
- imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
- imap_processing/ultra/constants.py +1 -1
- imap_processing/ultra/l0/decom_tools.py +27 -39
- imap_processing/ultra/l0/decom_ultra.py +168 -204
- imap_processing/ultra/l0/ultra_utils.py +152 -136
- imap_processing/ultra/l1a/ultra_l1a.py +55 -271
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +116 -57
- imap_processing/ultra/l1b/extendedspin.py +20 -18
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +36 -16
- imap_processing/ultra/l1b/ultra_l1b_culling.py +66 -30
- imap_processing/ultra/l1b/ultra_l1b_extended.py +297 -94
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +84 -0
- imap_processing/ultra/l1c/ultra_l1c.py +8 -9
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +206 -108
- imap_processing/ultra/l2/ultra_l2.py +299 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
- imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/packet_definitions/README.md +38 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
- imap_processing/ultra/utils/ultra_l1_utils.py +31 -12
- imap_processing/utils.py +69 -29
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +10 -6
- imap_processing-0.13.0.dist-info/RECORD +578 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
- imap_processing/hi/l1a/housekeeping.py +0 -27
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -652
- 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/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -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/validation_data/hskp_sample_eu.csv +0 -89
- imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_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/swe/test_swe_l1b_science.py +0 -84
- imap_processing/tests/ultra/test_data/mock_data.py +0 -161
- imap_processing/ultra/l1c/pset.py +0 -40
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing-0.11.0.dist-info/RECORD +0 -488
- /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- /imap_processing/{mag/l1b → tests/spacecraft}/__init__.py +0 -0
- /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
2
|
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="SWE">
|
|
3
|
-
<xtce:Header date="nan" version="nan" author="IMAP SDC" />
|
|
3
|
+
<xtce:Header date="nan" version="nan" author="IMAP SDC" source_file="TML_SWE.xlsx" />
|
|
4
4
|
<xtce:TelemetryMetaData>
|
|
5
5
|
<xtce:ParameterTypeSet>
|
|
6
6
|
<xtce:IntegerParameterType name="VERSION" signed="false">
|
|
@@ -24,6 +24,715 @@
|
|
|
24
24
|
<xtce:IntegerParameterType name="PKT_LEN" signed="false">
|
|
25
25
|
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
26
26
|
</xtce:IntegerParameterType>
|
|
27
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.SHCOARSE" signed="false">
|
|
28
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.APP_MODE" signed="false">
|
|
31
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
32
|
+
<xtce:EnumerationList>
|
|
33
|
+
<xtce:Enumeration value="0" label="OFF" />
|
|
34
|
+
<xtce:Enumeration value="1" label="BOOT " />
|
|
35
|
+
<xtce:Enumeration value="2" label="MAINT" />
|
|
36
|
+
<xtce:Enumeration value="3" label="LVENG" />
|
|
37
|
+
<xtce:Enumeration value="4" label="LVSCI" />
|
|
38
|
+
<xtce:Enumeration value="5" label="HVENG" />
|
|
39
|
+
<xtce:Enumeration value="6" label="HVSCI" />
|
|
40
|
+
</xtce:EnumerationList>
|
|
41
|
+
</xtce:EnumeratedParameterType>
|
|
42
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.SAFED" signed="false">
|
|
43
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
44
|
+
<xtce:EnumerationList>
|
|
45
|
+
<xtce:Enumeration value="0" label="NOT_SAFED" />
|
|
46
|
+
<xtce:Enumeration value="1" label="SAFED" />
|
|
47
|
+
</xtce:EnumerationList>
|
|
48
|
+
</xtce:EnumeratedParameterType>
|
|
49
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.ITF_ERR_CNT" signed="false">
|
|
50
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
51
|
+
</xtce:IntegerParameterType>
|
|
52
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CMD_ACC_COUNT" signed="false">
|
|
53
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
54
|
+
</xtce:IntegerParameterType>
|
|
55
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CMD_REJ_COUNT" signed="false">
|
|
56
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
57
|
+
</xtce:IntegerParameterType>
|
|
58
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.LAST_ACC_OPCODE" signed="false">
|
|
59
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
60
|
+
<xtce:EnumerationList>
|
|
61
|
+
<xtce:Enumeration value="0" label="SWE_NONE" />
|
|
62
|
+
<xtce:Enumeration value="1538" label="SWE_MEM_LOAD" />
|
|
63
|
+
<xtce:Enumeration value="1541" label="SWE_MEM_DUMP" />
|
|
64
|
+
<xtce:Enumeration value="1543" label="SWE_STOP_MEM_DUMP" />
|
|
65
|
+
<xtce:Enumeration value="1545" label="SWE_MEM_CSUM" />
|
|
66
|
+
<xtce:Enumeration value="52352" label="SWE_MRAM_WR" />
|
|
67
|
+
<xtce:Enumeration value="52353" label="SWE_MEM_COPY" />
|
|
68
|
+
<xtce:Enumeration value="52358" label="SWE_MEM_POKE" />
|
|
69
|
+
<xtce:Enumeration value="52359" label="SWE_MEM_PEEK" />
|
|
70
|
+
<xtce:Enumeration value="52363" label="SWE_EDAC" />
|
|
71
|
+
<xtce:Enumeration value="52364" label="SWE_INJECT_ERROR" />
|
|
72
|
+
<xtce:Enumeration value="53903" label="SWE_SET_MARKER" />
|
|
73
|
+
<xtce:Enumeration value="52367" label="SWE_NOOP" />
|
|
74
|
+
<xtce:Enumeration value="52368" label="SWE_RESET" />
|
|
75
|
+
<xtce:Enumeration value="52369" label="SWE_MODE" />
|
|
76
|
+
<xtce:Enumeration value="52374" label="SWE_POWER_OFF_REQUEST" />
|
|
77
|
+
<xtce:Enumeration value="52370" label="SWE_CLEAR" />
|
|
78
|
+
<xtce:Enumeration value="53904" label="SWE_SET_PARAMETER" />
|
|
79
|
+
<xtce:Enumeration value="52400" label="SWE_TLM_INT" />
|
|
80
|
+
<xtce:Enumeration value="53881" label="SWE_SENSOR_POWER" />
|
|
81
|
+
<xtce:Enumeration value="53882" label="SWE_HVPS_CTRL" />
|
|
82
|
+
<xtce:Enumeration value="53880" label="SWE_HV_BULK_CTRL" />
|
|
83
|
+
<xtce:Enumeration value="53883" label="SWE_HV_CEM_CTRL" />
|
|
84
|
+
<xtce:Enumeration value="53884" label="SWE_HV_ESA_CTRL" />
|
|
85
|
+
<xtce:Enumeration value="53885" label="SWE_HV_CEM_LEVEL" />
|
|
86
|
+
<xtce:Enumeration value="53886" label="SWE_HV_CEM_OP_LEVEL" />
|
|
87
|
+
<xtce:Enumeration value="53887" label="SWE_HV_CEM_RELA_LEVEL" />
|
|
88
|
+
<xtce:Enumeration value="53878" label="SWE_HV_CEM_RAMP" />
|
|
89
|
+
<xtce:Enumeration value="53888" label="SWE_HV_ESA_LEVEL_RANGE" />
|
|
90
|
+
<xtce:Enumeration value="53889" label="SWE_THRESH_LEVEL" />
|
|
91
|
+
<xtce:Enumeration value="53890" label="SWE_STIM_CTRL" />
|
|
92
|
+
<xtce:Enumeration value="53891" label="SWE_STIM_CONFIG" />
|
|
93
|
+
<xtce:Enumeration value="53892" label="SWE_MACRO_EXEC" />
|
|
94
|
+
<xtce:Enumeration value="53893" label="SWE_MACRO_ABORT" />
|
|
95
|
+
<xtce:Enumeration value="53896" label="SWE_ESA_TABLE" />
|
|
96
|
+
<xtce:Enumeration value="53897" label="SWE_ACQ_ESA_SETTLE" />
|
|
97
|
+
<xtce:Enumeration value="53898" label="SWE_ACQ_DWELL" />
|
|
98
|
+
<xtce:Enumeration value="53912" label="SWE_FDC_CONFIG" />
|
|
99
|
+
<xtce:Enumeration value="53916" label="SWE_SAFE_ME" />
|
|
100
|
+
<xtce:Enumeration value="52394" label="SWE_EVR" />
|
|
101
|
+
<xtce:Enumeration value="53902" label="SWE_EVR_TRIGGER" />
|
|
102
|
+
<xtce:Enumeration value="65278" label="SWE_TIME_AND_STATUS" />
|
|
103
|
+
<xtce:Enumeration value="45056" label="SWE_BOOT_NOOP" />
|
|
104
|
+
<xtce:Enumeration value="45057" label="SWE_BOOT_MODE_SET" />
|
|
105
|
+
<xtce:Enumeration value="45058" label="SWE_BOOT_MEM_DUMP" />
|
|
106
|
+
<xtce:Enumeration value="45059" label="SWE_BOOT_MEM_LOAD" />
|
|
107
|
+
<xtce:Enumeration value="45060" label="SWE_BOOT_MEM_CHECKSUM" />
|
|
108
|
+
<xtce:Enumeration value="45061" label="SWE_BOOT_JUMP" />
|
|
109
|
+
<xtce:Enumeration value="45062" label="SWE_BOOT_BOOT_IMG" />
|
|
110
|
+
</xtce:EnumerationList>
|
|
111
|
+
</xtce:EnumeratedParameterType>
|
|
112
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HV_DISABLE_PLUG" signed="false">
|
|
113
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
114
|
+
<xtce:EnumerationList>
|
|
115
|
+
<xtce:Enumeration value="0" label="NOT_INSERTED" />
|
|
116
|
+
<xtce:Enumeration value="1" label="INSERTED" />
|
|
117
|
+
</xtce:EnumerationList>
|
|
118
|
+
</xtce:EnumeratedParameterType>
|
|
119
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HV_LIMIT_PLUG" signed="false">
|
|
120
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
121
|
+
<xtce:EnumerationList>
|
|
122
|
+
<xtce:Enumeration value="0" label="NOT_INSERTED" />
|
|
123
|
+
<xtce:Enumeration value="1" label="INSERTED" />
|
|
124
|
+
</xtce:EnumerationList>
|
|
125
|
+
</xtce:EnumeratedParameterType>
|
|
126
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HVPS_ENABLE" signed="false">
|
|
127
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
128
|
+
<xtce:EnumerationList>
|
|
129
|
+
<xtce:Enumeration value="0" label="DISABLED" />
|
|
130
|
+
<xtce:Enumeration value="1" label="ENABLED" />
|
|
131
|
+
</xtce:EnumerationList>
|
|
132
|
+
</xtce:EnumeratedParameterType>
|
|
133
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HVPS_CEM_ENABLE" signed="false">
|
|
134
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
135
|
+
<xtce:EnumerationList>
|
|
136
|
+
<xtce:Enumeration value="0" label="DISABLED" />
|
|
137
|
+
<xtce:Enumeration value="1" label="ENABLED" />
|
|
138
|
+
</xtce:EnumerationList>
|
|
139
|
+
</xtce:EnumeratedParameterType>
|
|
140
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HVPS_ESA_ENABLE" signed="false">
|
|
141
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
142
|
+
<xtce:EnumerationList>
|
|
143
|
+
<xtce:Enumeration value="0" label="DISABLED" />
|
|
144
|
+
<xtce:Enumeration value="1" label="ENABLED" />
|
|
145
|
+
</xtce:EnumerationList>
|
|
146
|
+
</xtce:EnumeratedParameterType>
|
|
147
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HVPS_LOW_RANGE_ENABLE" signed="false">
|
|
148
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
149
|
+
<xtce:EnumerationList>
|
|
150
|
+
<xtce:Enumeration value="0" label="HIGH_RANGE" />
|
|
151
|
+
<xtce:Enumeration value="1" label="LOW_RANGE" />
|
|
152
|
+
</xtce:EnumerationList>
|
|
153
|
+
</xtce:EnumeratedParameterType>
|
|
154
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.HVPS_BULK_ENABLE" signed="false">
|
|
155
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
156
|
+
<xtce:EnumerationList>
|
|
157
|
+
<xtce:Enumeration value="0" label="DISABLED" />
|
|
158
|
+
<xtce:Enumeration value="1" label="ENABLED" />
|
|
159
|
+
</xtce:EnumerationList>
|
|
160
|
+
</xtce:EnumeratedParameterType>
|
|
161
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.SENSOR_P12A_N12A_CTRL" signed="false">
|
|
162
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
163
|
+
<xtce:EnumerationList>
|
|
164
|
+
<xtce:Enumeration value="0" label="INACTIVE" />
|
|
165
|
+
<xtce:Enumeration value="1" label="ACTIVE" />
|
|
166
|
+
</xtce:EnumerationList>
|
|
167
|
+
</xtce:EnumeratedParameterType>
|
|
168
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.SENSOR_P5A_N5A_CTRL" signed="false">
|
|
169
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
170
|
+
<xtce:EnumerationList>
|
|
171
|
+
<xtce:Enumeration value="0" label="INACTIVE" />
|
|
172
|
+
<xtce:Enumeration value="1" label="ACTIVE" />
|
|
173
|
+
</xtce:EnumerationList>
|
|
174
|
+
</xtce:EnumeratedParameterType>
|
|
175
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.SENSOR_P3P3D_P5D_CTRL" signed="false">
|
|
176
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
177
|
+
<xtce:EnumerationList>
|
|
178
|
+
<xtce:Enumeration value="0" label="INACTIVE" />
|
|
179
|
+
<xtce:Enumeration value="1" label="ACTIVE" />
|
|
180
|
+
</xtce:EnumerationList>
|
|
181
|
+
</xtce:EnumeratedParameterType>
|
|
182
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_ERROR_COUNT" signed="false">
|
|
183
|
+
<xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
|
|
184
|
+
</xtce:IntegerParameterType>
|
|
185
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_CEM_DAC" signed="false">
|
|
186
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
187
|
+
<xtce:DefaultCalibrator>
|
|
188
|
+
<xtce:PolynomialCalibrator>
|
|
189
|
+
<xtce:Term coefficient="1.025641" exponent="1" />
|
|
190
|
+
</xtce:PolynomialCalibrator>
|
|
191
|
+
</xtce:DefaultCalibrator>
|
|
192
|
+
</xtce:IntegerDataEncoding>
|
|
193
|
+
</xtce:IntegerParameterType>
|
|
194
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_ESA_DAC" signed="false">
|
|
195
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned" />
|
|
196
|
+
</xtce:IntegerParameterType>
|
|
197
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.THRESHOLD" signed="false">
|
|
198
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
199
|
+
<xtce:DefaultCalibrator>
|
|
200
|
+
<xtce:PolynomialCalibrator>
|
|
201
|
+
<xtce:Term coefficient="0.001221" exponent="1" />
|
|
202
|
+
</xtce:PolynomialCalibrator>
|
|
203
|
+
</xtce:DefaultCalibrator>
|
|
204
|
+
</xtce:IntegerDataEncoding>
|
|
205
|
+
</xtce:IntegerParameterType>
|
|
206
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.STIM_ENABLE" signed="false">
|
|
207
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
208
|
+
<xtce:EnumerationList>
|
|
209
|
+
<xtce:Enumeration value="0" label="DISABLED" />
|
|
210
|
+
<xtce:Enumeration value="1" label="ENABLED" />
|
|
211
|
+
</xtce:EnumerationList>
|
|
212
|
+
</xtce:EnumeratedParameterType>
|
|
213
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.STIM_CONFIGURATION" signed="false">
|
|
214
|
+
<xtce:IntegerDataEncoding sizeInBits="15" encoding="unsigned" />
|
|
215
|
+
</xtce:IntegerParameterType>
|
|
216
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_VBULK" signed="false">
|
|
217
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
218
|
+
<xtce:DefaultCalibrator>
|
|
219
|
+
<xtce:PolynomialCalibrator>
|
|
220
|
+
<xtce:Term coefficient="0.51282" exponent="1" />
|
|
221
|
+
</xtce:PolynomialCalibrator>
|
|
222
|
+
</xtce:DefaultCalibrator>
|
|
223
|
+
</xtce:IntegerDataEncoding>
|
|
224
|
+
</xtce:IntegerParameterType>
|
|
225
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_VCEM" signed="false">
|
|
226
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
227
|
+
<xtce:DefaultCalibrator>
|
|
228
|
+
<xtce:PolynomialCalibrator>
|
|
229
|
+
<xtce:Term coefficient="-10.293289" exponent="0" />
|
|
230
|
+
<xtce:Term coefficient="1.337246" exponent="1" />
|
|
231
|
+
</xtce:PolynomialCalibrator>
|
|
232
|
+
</xtce:DefaultCalibrator>
|
|
233
|
+
</xtce:IntegerDataEncoding>
|
|
234
|
+
</xtce:IntegerParameterType>
|
|
235
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_VESA" signed="false">
|
|
236
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
237
|
+
<xtce:DefaultCalibrator>
|
|
238
|
+
<xtce:PolynomialCalibrator>
|
|
239
|
+
<xtce:Term coefficient="-0.34675825" exponent="0" />
|
|
240
|
+
<xtce:Term coefficient="0.36613489" exponent="1" />
|
|
241
|
+
</xtce:PolynomialCalibrator>
|
|
242
|
+
</xtce:DefaultCalibrator>
|
|
243
|
+
</xtce:IntegerDataEncoding>
|
|
244
|
+
</xtce:IntegerParameterType>
|
|
245
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_VESA_LOW_RANGE" signed="false">
|
|
246
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
247
|
+
<xtce:DefaultCalibrator>
|
|
248
|
+
<xtce:PolynomialCalibrator>
|
|
249
|
+
<xtce:Term coefficient="-0.00520837" exponent="0" />
|
|
250
|
+
<xtce:Term coefficient="0.0075118" exponent="1" />
|
|
251
|
+
</xtce:PolynomialCalibrator>
|
|
252
|
+
</xtce:DefaultCalibrator>
|
|
253
|
+
</xtce:IntegerDataEncoding>
|
|
254
|
+
</xtce:IntegerParameterType>
|
|
255
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_ICEM" signed="false">
|
|
256
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
257
|
+
<xtce:DefaultCalibrator>
|
|
258
|
+
<xtce:PolynomialCalibrator>
|
|
259
|
+
<xtce:Term coefficient="3.18221573e-07" exponent="0" />
|
|
260
|
+
<xtce:Term coefficient="8.9705625e-08" exponent="1" />
|
|
261
|
+
</xtce:PolynomialCalibrator>
|
|
262
|
+
</xtce:DefaultCalibrator>
|
|
263
|
+
</xtce:IntegerDataEncoding>
|
|
264
|
+
</xtce:IntegerParameterType>
|
|
265
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FEE_TEMP" signed="false">
|
|
266
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
267
|
+
<xtce:DefaultCalibrator>
|
|
268
|
+
<xtce:PolynomialCalibrator>
|
|
269
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
270
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
271
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
272
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
273
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
274
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
275
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
276
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
277
|
+
</xtce:PolynomialCalibrator>
|
|
278
|
+
</xtce:DefaultCalibrator>
|
|
279
|
+
</xtce:IntegerDataEncoding>
|
|
280
|
+
</xtce:IntegerParameterType>
|
|
281
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.SENSOR_TEMP" signed="false">
|
|
282
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
283
|
+
<xtce:DefaultCalibrator>
|
|
284
|
+
<xtce:PolynomialCalibrator>
|
|
285
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
286
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
287
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
288
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
289
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
290
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
291
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
292
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
293
|
+
</xtce:PolynomialCalibrator>
|
|
294
|
+
</xtce:DefaultCalibrator>
|
|
295
|
+
</xtce:IntegerDataEncoding>
|
|
296
|
+
</xtce:IntegerParameterType>
|
|
297
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.HVPS_TEMP" signed="false">
|
|
298
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
299
|
+
<xtce:DefaultCalibrator>
|
|
300
|
+
<xtce:PolynomialCalibrator>
|
|
301
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
302
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
303
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
304
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
305
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
306
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
307
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
308
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
309
|
+
</xtce:PolynomialCalibrator>
|
|
310
|
+
</xtce:DefaultCalibrator>
|
|
311
|
+
</xtce:IntegerDataEncoding>
|
|
312
|
+
</xtce:IntegerParameterType>
|
|
313
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_BACK_BOARD_TEMP" signed="false">
|
|
314
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
315
|
+
<xtce:DefaultCalibrator>
|
|
316
|
+
<xtce:PolynomialCalibrator>
|
|
317
|
+
<xtce:Term coefficient="-273.2" exponent="0" />
|
|
318
|
+
<xtce:Term coefficient="0.1444619083" exponent="1" />
|
|
319
|
+
</xtce:PolynomialCalibrator>
|
|
320
|
+
</xtce:DefaultCalibrator>
|
|
321
|
+
</xtce:IntegerDataEncoding>
|
|
322
|
+
</xtce:IntegerParameterType>
|
|
323
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_FRONT_BOARD_TEMP" signed="false">
|
|
324
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
325
|
+
<xtce:DefaultCalibrator>
|
|
326
|
+
<xtce:PolynomialCalibrator>
|
|
327
|
+
<xtce:Term coefficient="-273.2" exponent="0" />
|
|
328
|
+
<xtce:Term coefficient="0.1444619083" exponent="1" />
|
|
329
|
+
</xtce:PolynomialCalibrator>
|
|
330
|
+
</xtce:DefaultCalibrator>
|
|
331
|
+
</xtce:IntegerDataEncoding>
|
|
332
|
+
</xtce:IntegerParameterType>
|
|
333
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_MID_BOARD_TEMP" signed="false">
|
|
334
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
335
|
+
<xtce:DefaultCalibrator>
|
|
336
|
+
<xtce:PolynomialCalibrator>
|
|
337
|
+
<xtce:Term coefficient="-273.2" exponent="0" />
|
|
338
|
+
<xtce:Term coefficient="0.1444619083" exponent="1" />
|
|
339
|
+
</xtce:PolynomialCalibrator>
|
|
340
|
+
</xtce:DefaultCalibrator>
|
|
341
|
+
</xtce:IntegerDataEncoding>
|
|
342
|
+
</xtce:IntegerParameterType>
|
|
343
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_3_3V_VMON" signed="false">
|
|
344
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
345
|
+
<xtce:DefaultCalibrator>
|
|
346
|
+
<xtce:PolynomialCalibrator>
|
|
347
|
+
<xtce:Term coefficient="0.001611" exponent="1" />
|
|
348
|
+
</xtce:PolynomialCalibrator>
|
|
349
|
+
</xtce:DefaultCalibrator>
|
|
350
|
+
</xtce:IntegerDataEncoding>
|
|
351
|
+
</xtce:IntegerParameterType>
|
|
352
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_5V_P_VMON" signed="false">
|
|
353
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
354
|
+
<xtce:DefaultCalibrator>
|
|
355
|
+
<xtce:PolynomialCalibrator>
|
|
356
|
+
<xtce:Term coefficient="0.002441" exponent="1" />
|
|
357
|
+
</xtce:PolynomialCalibrator>
|
|
358
|
+
</xtce:DefaultCalibrator>
|
|
359
|
+
</xtce:IntegerDataEncoding>
|
|
360
|
+
</xtce:IntegerParameterType>
|
|
361
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_5V_N_VMON" signed="false">
|
|
362
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
363
|
+
<xtce:DefaultCalibrator>
|
|
364
|
+
<xtce:PolynomialCalibrator>
|
|
365
|
+
<xtce:Term coefficient="-0.002441" exponent="1" />
|
|
366
|
+
</xtce:PolynomialCalibrator>
|
|
367
|
+
</xtce:DefaultCalibrator>
|
|
368
|
+
</xtce:IntegerDataEncoding>
|
|
369
|
+
</xtce:IntegerParameterType>
|
|
370
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_12V_P_VMON" signed="false">
|
|
371
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
372
|
+
<xtce:DefaultCalibrator>
|
|
373
|
+
<xtce:PolynomialCalibrator>
|
|
374
|
+
<xtce:Term coefficient="0.005859" exponent="1" />
|
|
375
|
+
</xtce:PolynomialCalibrator>
|
|
376
|
+
</xtce:DefaultCalibrator>
|
|
377
|
+
</xtce:IntegerDataEncoding>
|
|
378
|
+
</xtce:IntegerParameterType>
|
|
379
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_12V_N_VMON" signed="false">
|
|
380
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
381
|
+
<xtce:DefaultCalibrator>
|
|
382
|
+
<xtce:PolynomialCalibrator>
|
|
383
|
+
<xtce:Term coefficient="-0.005859" exponent="1" />
|
|
384
|
+
</xtce:PolynomialCalibrator>
|
|
385
|
+
</xtce:DefaultCalibrator>
|
|
386
|
+
</xtce:IntegerDataEncoding>
|
|
387
|
+
</xtce:IntegerParameterType>
|
|
388
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_3_3V_IMON" signed="false">
|
|
389
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
390
|
+
<xtce:DefaultCalibrator>
|
|
391
|
+
<xtce:PolynomialCalibrator>
|
|
392
|
+
<xtce:Term coefficient="0.01344194" exponent="0" />
|
|
393
|
+
<xtce:Term coefficient="0.00092158" exponent="1" />
|
|
394
|
+
</xtce:PolynomialCalibrator>
|
|
395
|
+
</xtce:DefaultCalibrator>
|
|
396
|
+
</xtce:IntegerDataEncoding>
|
|
397
|
+
</xtce:IntegerParameterType>
|
|
398
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_5V_P_IMON" signed="false">
|
|
399
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
400
|
+
<xtce:DefaultCalibrator>
|
|
401
|
+
<xtce:PolynomialCalibrator>
|
|
402
|
+
<xtce:Term coefficient="-0.001708281" exponent="0" />
|
|
403
|
+
<xtce:Term coefficient="0.000488167" exponent="1" />
|
|
404
|
+
</xtce:PolynomialCalibrator>
|
|
405
|
+
</xtce:DefaultCalibrator>
|
|
406
|
+
</xtce:IntegerDataEncoding>
|
|
407
|
+
</xtce:IntegerParameterType>
|
|
408
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_5V_N_IMON" signed="false">
|
|
409
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
410
|
+
<xtce:DefaultCalibrator>
|
|
411
|
+
<xtce:PolynomialCalibrator>
|
|
412
|
+
<xtce:Term coefficient="0.000461" exponent="1" />
|
|
413
|
+
</xtce:PolynomialCalibrator>
|
|
414
|
+
</xtce:DefaultCalibrator>
|
|
415
|
+
</xtce:IntegerDataEncoding>
|
|
416
|
+
</xtce:IntegerParameterType>
|
|
417
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_12V_P_IMON" signed="false">
|
|
418
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
419
|
+
<xtce:DefaultCalibrator>
|
|
420
|
+
<xtce:PolynomialCalibrator>
|
|
421
|
+
<xtce:Term coefficient="-0.003005379" exponent="0" />
|
|
422
|
+
<xtce:Term coefficient="0.000701694" exponent="1" />
|
|
423
|
+
</xtce:PolynomialCalibrator>
|
|
424
|
+
</xtce:DefaultCalibrator>
|
|
425
|
+
</xtce:IntegerDataEncoding>
|
|
426
|
+
</xtce:IntegerParameterType>
|
|
427
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.LVPS_12V_N_IMON" signed="false">
|
|
428
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
429
|
+
<xtce:DefaultCalibrator>
|
|
430
|
+
<xtce:PolynomialCalibrator>
|
|
431
|
+
<xtce:Term coefficient="-0.047530631" exponent="0" />
|
|
432
|
+
<xtce:Term coefficient="0.00014083" exponent="1" />
|
|
433
|
+
</xtce:PolynomialCalibrator>
|
|
434
|
+
</xtce:DefaultCalibrator>
|
|
435
|
+
</xtce:IntegerDataEncoding>
|
|
436
|
+
</xtce:IntegerParameterType>
|
|
437
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_PROCESSOR_TEMP" signed="false">
|
|
438
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
439
|
+
<xtce:DefaultCalibrator>
|
|
440
|
+
<xtce:PolynomialCalibrator>
|
|
441
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
442
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
443
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
444
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
445
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
446
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
447
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
448
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
449
|
+
</xtce:PolynomialCalibrator>
|
|
450
|
+
</xtce:DefaultCalibrator>
|
|
451
|
+
</xtce:IntegerDataEncoding>
|
|
452
|
+
</xtce:IntegerParameterType>
|
|
453
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_1_8V_LDO_TEMP" signed="false">
|
|
454
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
455
|
+
<xtce:DefaultCalibrator>
|
|
456
|
+
<xtce:PolynomialCalibrator>
|
|
457
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
458
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
459
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
460
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
461
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
462
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
463
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
464
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
465
|
+
</xtce:PolynomialCalibrator>
|
|
466
|
+
</xtce:DefaultCalibrator>
|
|
467
|
+
</xtce:IntegerDataEncoding>
|
|
468
|
+
</xtce:IntegerParameterType>
|
|
469
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_1_5V_LDO_TEMP" signed="false">
|
|
470
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
471
|
+
<xtce:DefaultCalibrator>
|
|
472
|
+
<xtce:PolynomialCalibrator>
|
|
473
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
474
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
475
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
476
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
477
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
478
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
479
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
480
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
481
|
+
</xtce:PolynomialCalibrator>
|
|
482
|
+
</xtce:DefaultCalibrator>
|
|
483
|
+
</xtce:IntegerDataEncoding>
|
|
484
|
+
</xtce:IntegerParameterType>
|
|
485
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_SDRAM_TEMP" signed="false">
|
|
486
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
487
|
+
<xtce:DefaultCalibrator>
|
|
488
|
+
<xtce:PolynomialCalibrator>
|
|
489
|
+
<xtce:Term coefficient="-901.0162972" exponent="0" />
|
|
490
|
+
<xtce:Term coefficient="5.253611004" exponent="1" />
|
|
491
|
+
<xtce:Term coefficient="-0.012925327" exponent="2" />
|
|
492
|
+
<xtce:Term coefficient="1.72856e-05" exponent="3" />
|
|
493
|
+
<xtce:Term coefficient="-1.33961e-08" exponent="4" />
|
|
494
|
+
<xtce:Term coefficient="6.01207e-12" exponent="5" />
|
|
495
|
+
<xtce:Term coefficient="-1.44925e-15" exponent="6" />
|
|
496
|
+
<xtce:Term coefficient="1.45122e-19" exponent="7" />
|
|
497
|
+
</xtce:PolynomialCalibrator>
|
|
498
|
+
</xtce:DefaultCalibrator>
|
|
499
|
+
</xtce:IntegerDataEncoding>
|
|
500
|
+
</xtce:IntegerParameterType>
|
|
501
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_1_5V_VMON" signed="false">
|
|
502
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
503
|
+
<xtce:DefaultCalibrator>
|
|
504
|
+
<xtce:PolynomialCalibrator>
|
|
505
|
+
<xtce:Term coefficient="0.001221" exponent="1" />
|
|
506
|
+
</xtce:PolynomialCalibrator>
|
|
507
|
+
</xtce:DefaultCalibrator>
|
|
508
|
+
</xtce:IntegerDataEncoding>
|
|
509
|
+
</xtce:IntegerParameterType>
|
|
510
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_1_8V_VMON" signed="false">
|
|
511
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
512
|
+
<xtce:DefaultCalibrator>
|
|
513
|
+
<xtce:PolynomialCalibrator>
|
|
514
|
+
<xtce:Term coefficient="0.001221" exponent="1" />
|
|
515
|
+
</xtce:PolynomialCalibrator>
|
|
516
|
+
</xtce:DefaultCalibrator>
|
|
517
|
+
</xtce:IntegerDataEncoding>
|
|
518
|
+
</xtce:IntegerParameterType>
|
|
519
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_3_3V_VMON" signed="false">
|
|
520
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
521
|
+
<xtce:DefaultCalibrator>
|
|
522
|
+
<xtce:PolynomialCalibrator>
|
|
523
|
+
<xtce:Term coefficient="0.001221" exponent="1" />
|
|
524
|
+
</xtce:PolynomialCalibrator>
|
|
525
|
+
</xtce:DefaultCalibrator>
|
|
526
|
+
</xtce:IntegerDataEncoding>
|
|
527
|
+
</xtce:IntegerParameterType>
|
|
528
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_12V_P_VMON" signed="false">
|
|
529
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
530
|
+
<xtce:DefaultCalibrator>
|
|
531
|
+
<xtce:PolynomialCalibrator>
|
|
532
|
+
<xtce:Term coefficient="0.005897" exponent="1" />
|
|
533
|
+
</xtce:PolynomialCalibrator>
|
|
534
|
+
</xtce:DefaultCalibrator>
|
|
535
|
+
</xtce:IntegerDataEncoding>
|
|
536
|
+
</xtce:IntegerParameterType>
|
|
537
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_12V_N_VMON" signed="false">
|
|
538
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
539
|
+
<xtce:DefaultCalibrator>
|
|
540
|
+
<xtce:PolynomialCalibrator>
|
|
541
|
+
<xtce:Term coefficient="-0.005841" exponent="1" />
|
|
542
|
+
</xtce:PolynomialCalibrator>
|
|
543
|
+
</xtce:DefaultCalibrator>
|
|
544
|
+
</xtce:IntegerDataEncoding>
|
|
545
|
+
</xtce:IntegerParameterType>
|
|
546
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_5V_VMON" signed="false">
|
|
547
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
548
|
+
<xtce:DefaultCalibrator>
|
|
549
|
+
<xtce:PolynomialCalibrator>
|
|
550
|
+
<xtce:Term coefficient="0.002441" exponent="1" />
|
|
551
|
+
</xtce:PolynomialCalibrator>
|
|
552
|
+
</xtce:DefaultCalibrator>
|
|
553
|
+
</xtce:IntegerDataEncoding>
|
|
554
|
+
</xtce:IntegerParameterType>
|
|
555
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CDH_ANALOG_REF_VMON" signed="false">
|
|
556
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
557
|
+
<xtce:DefaultCalibrator>
|
|
558
|
+
<xtce:PolynomialCalibrator>
|
|
559
|
+
<xtce:Term coefficient="0.002441" exponent="1" />
|
|
560
|
+
</xtce:PolynomialCalibrator>
|
|
561
|
+
</xtce:DefaultCalibrator>
|
|
562
|
+
</xtce:IntegerDataEncoding>
|
|
563
|
+
</xtce:IntegerParameterType>
|
|
564
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_FSW" signed="false">
|
|
565
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
566
|
+
</xtce:IntegerParameterType>
|
|
567
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_HVPS" signed="false">
|
|
568
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
569
|
+
</xtce:IntegerParameterType>
|
|
570
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_LVPS" signed="false">
|
|
571
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
572
|
+
</xtce:IntegerParameterType>
|
|
573
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_CDH" signed="false">
|
|
574
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
575
|
+
</xtce:IntegerParameterType>
|
|
576
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_SYSTEM" signed="false">
|
|
577
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
578
|
+
</xtce:IntegerParameterType>
|
|
579
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_TRIGGER_CNT_SCIENCE" signed="false">
|
|
580
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
581
|
+
</xtce:IntegerParameterType>
|
|
582
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.FDC_LAST_TRIGGER_INDEX" signed="false">
|
|
583
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
584
|
+
</xtce:IntegerParameterType>
|
|
585
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.FDC_LAST_TRIGGER_ACTION" signed="false">
|
|
586
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
587
|
+
<xtce:EnumerationList>
|
|
588
|
+
<xtce:Enumeration value="0" label="REPORT_ONLY" />
|
|
589
|
+
<xtce:Enumeration value="1" label="SOFT_SAFE" />
|
|
590
|
+
<xtce:Enumeration value="2" label="HARD_SAFE" />
|
|
591
|
+
<xtce:Enumeration value="128" label="RESERVED" />
|
|
592
|
+
<xtce:Enumeration value="129" label="MACRO_1" />
|
|
593
|
+
<xtce:Enumeration value="130" label="MACRO_2" />
|
|
594
|
+
<xtce:Enumeration value="131" label="MACRO_3" />
|
|
595
|
+
<xtce:Enumeration value="132" label="MACRO_4" />
|
|
596
|
+
<xtce:Enumeration value="133" label="MACRO_5" />
|
|
597
|
+
<xtce:Enumeration value="134" label="MACRO_6" />
|
|
598
|
+
<xtce:Enumeration value="135" label="MACRO_7" />
|
|
599
|
+
<xtce:Enumeration value="136" label="MACRO_8" />
|
|
600
|
+
<xtce:Enumeration value="137" label="MACRO_9" />
|
|
601
|
+
<xtce:Enumeration value="138" label="MACRO_10" />
|
|
602
|
+
<xtce:Enumeration value="139" label="MACRO_11" />
|
|
603
|
+
<xtce:Enumeration value="140" label="MACRO_12" />
|
|
604
|
+
<xtce:Enumeration value="141" label="MACRO_13" />
|
|
605
|
+
<xtce:Enumeration value="142" label="MACRO_14" />
|
|
606
|
+
<xtce:Enumeration value="143" label="MACRO_15" />
|
|
607
|
+
<xtce:Enumeration value="144" label="MACRO_16" />
|
|
608
|
+
</xtce:EnumerationList>
|
|
609
|
+
</xtce:EnumeratedParameterType>
|
|
610
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.FDC_LAST_TRIGGER_MINMAX" signed="false">
|
|
611
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
612
|
+
<xtce:EnumerationList>
|
|
613
|
+
<xtce:Enumeration value="0" label="MIN" />
|
|
614
|
+
<xtce:Enumeration value="1" label="MAX" />
|
|
615
|
+
</xtce:EnumerationList>
|
|
616
|
+
</xtce:EnumeratedParameterType>
|
|
617
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.MISSED_PPS_CNT" signed="false">
|
|
618
|
+
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
|
|
619
|
+
</xtce:IntegerParameterType>
|
|
620
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.CMD_FIFO_OVERFLOW" signed="false">
|
|
621
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
622
|
+
<xtce:EnumerationList>
|
|
623
|
+
<xtce:Enumeration value="0" label="NOT_OVERFLOWN" />
|
|
624
|
+
<xtce:Enumeration value="1" label="OVERFLOWN" />
|
|
625
|
+
</xtce:EnumerationList>
|
|
626
|
+
</xtce:EnumeratedParameterType>
|
|
627
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.TLM_FIFO_OVERFLOW" signed="false">
|
|
628
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
629
|
+
<xtce:EnumerationList>
|
|
630
|
+
<xtce:Enumeration value="0" label="NOT_OVERFLOWN" />
|
|
631
|
+
<xtce:Enumeration value="1" label="OVERFLOWN" />
|
|
632
|
+
</xtce:EnumerationList>
|
|
633
|
+
</xtce:EnumeratedParameterType>
|
|
634
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CPU_IDLE" signed="false">
|
|
635
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
636
|
+
</xtce:IntegerParameterType>
|
|
637
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.MARKER" signed="false">
|
|
638
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
639
|
+
</xtce:IntegerParameterType>
|
|
640
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.ACTIVE_MACRO" signed="false">
|
|
641
|
+
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
|
|
642
|
+
<xtce:EnumerationList>
|
|
643
|
+
<xtce:Enumeration value="0" label="NONE" />
|
|
644
|
+
<xtce:Enumeration value="1" label="MACRO_1" />
|
|
645
|
+
<xtce:Enumeration value="2" label="MACRO_2" />
|
|
646
|
+
<xtce:Enumeration value="3" label="MACRO_3" />
|
|
647
|
+
<xtce:Enumeration value="4" label="MACRO_4" />
|
|
648
|
+
<xtce:Enumeration value="5" label="MACRO_5" />
|
|
649
|
+
<xtce:Enumeration value="6" label="MACRO_6" />
|
|
650
|
+
<xtce:Enumeration value="7" label="MACRO_7" />
|
|
651
|
+
<xtce:Enumeration value="8" label="MACRO_8" />
|
|
652
|
+
<xtce:Enumeration value="9" label="MACRO_9" />
|
|
653
|
+
<xtce:Enumeration value="10" label="MACRO_10" />
|
|
654
|
+
<xtce:Enumeration value="11" label="MACRO_11" />
|
|
655
|
+
<xtce:Enumeration value="12" label="MACRO_12" />
|
|
656
|
+
<xtce:Enumeration value="13" label="MACRO_13" />
|
|
657
|
+
<xtce:Enumeration value="14" label="MACRO_14" />
|
|
658
|
+
<xtce:Enumeration value="15" label="MACRO_15" />
|
|
659
|
+
<xtce:Enumeration value="16" label="MACRO_16" />
|
|
660
|
+
</xtce:EnumerationList>
|
|
661
|
+
</xtce:EnumeratedParameterType>
|
|
662
|
+
<xtce:EnumeratedParameterType name="SWE_APP_HK.ACTIVE_MACRO_TRIGGER" signed="false">
|
|
663
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
664
|
+
<xtce:EnumerationList>
|
|
665
|
+
<xtce:Enumeration value="0" label="NONE" />
|
|
666
|
+
<xtce:Enumeration value="1" label="FDC_ADC" />
|
|
667
|
+
<xtce:Enumeration value="2" label="FDC_CEM_COUNT" />
|
|
668
|
+
<xtce:Enumeration value="3" label="REPOINT_FLAG_ON" />
|
|
669
|
+
<xtce:Enumeration value="4" label="REPOINT_FLAG_OFF" />
|
|
670
|
+
<xtce:Enumeration value="5" label="USER" />
|
|
671
|
+
</xtce:EnumerationList>
|
|
672
|
+
</xtce:EnumeratedParameterType>
|
|
673
|
+
<xtce:IntegerParameterType name="SWE_APP_HK.CKSUM" signed="false">
|
|
674
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
675
|
+
</xtce:IntegerParameterType>
|
|
676
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.SHCOARSE" signed="false">
|
|
677
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
678
|
+
</xtce:IntegerParameterType>
|
|
679
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.THRESHOLD_DAC" signed="false">
|
|
680
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
681
|
+
<xtce:DefaultCalibrator>
|
|
682
|
+
<xtce:PolynomialCalibrator>
|
|
683
|
+
<xtce:Term coefficient="0.001221" exponent="1" />
|
|
684
|
+
</xtce:PolynomialCalibrator>
|
|
685
|
+
</xtce:DefaultCalibrator>
|
|
686
|
+
</xtce:IntegerDataEncoding>
|
|
687
|
+
</xtce:IntegerParameterType>
|
|
688
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.STIM_CFG_REG" signed="false">
|
|
689
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
690
|
+
</xtce:IntegerParameterType>
|
|
691
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM1_COUNTS_LATCHED" signed="false">
|
|
692
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
693
|
+
</xtce:IntegerParameterType>
|
|
694
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM2_COUNTS_LATCHED" signed="false">
|
|
695
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
696
|
+
</xtce:IntegerParameterType>
|
|
697
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM3_COUNTS_LATCHED" signed="false">
|
|
698
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
699
|
+
</xtce:IntegerParameterType>
|
|
700
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM4_COUNTS_LATCHED" signed="false">
|
|
701
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
702
|
+
</xtce:IntegerParameterType>
|
|
703
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM5_COUNTS_LATCHED" signed="false">
|
|
704
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
705
|
+
</xtce:IntegerParameterType>
|
|
706
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM6_COUNTS_LATCHED" signed="false">
|
|
707
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
708
|
+
</xtce:IntegerParameterType>
|
|
709
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM7_COUNTS_LATCHED" signed="false">
|
|
710
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
711
|
+
</xtce:IntegerParameterType>
|
|
712
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM1_COUNTS_LIVE" signed="false">
|
|
713
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
714
|
+
</xtce:IntegerParameterType>
|
|
715
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM2_COUNTS_LIVE" signed="false">
|
|
716
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
717
|
+
</xtce:IntegerParameterType>
|
|
718
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM3_COUNTS_LIVE" signed="false">
|
|
719
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
720
|
+
</xtce:IntegerParameterType>
|
|
721
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM4_COUNTS_LIVE" signed="false">
|
|
722
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
723
|
+
</xtce:IntegerParameterType>
|
|
724
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM5_COUNTS_LIVE" signed="false">
|
|
725
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
726
|
+
</xtce:IntegerParameterType>
|
|
727
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM6_COUNTS_LIVE" signed="false">
|
|
728
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
729
|
+
</xtce:IntegerParameterType>
|
|
730
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CEM7_COUNTS_LIVE" signed="false">
|
|
731
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
732
|
+
</xtce:IntegerParameterType>
|
|
733
|
+
<xtce:IntegerParameterType name="SWE_CEM_RAW.CKSUM" signed="false">
|
|
734
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
735
|
+
</xtce:IntegerParameterType>
|
|
27
736
|
<xtce:IntegerParameterType name="SWE_SCIENCE.SHCOARSE" signed="false">
|
|
28
737
|
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
29
738
|
</xtce:IntegerParameterType>
|
|
@@ -169,6 +878,309 @@
|
|
|
169
878
|
<xtce:Parameter name="PKT_LEN" parameterTypeRef="PKT_LEN">
|
|
170
879
|
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
171
880
|
</xtce:Parameter>
|
|
881
|
+
<xtce:Parameter name="SWE_APP_HK.SHCOARSE" parameterTypeRef="SWE_APP_HK.SHCOARSE">
|
|
882
|
+
<xtce:LongDescription>Mission elapsed time</xtce:LongDescription>
|
|
883
|
+
</xtce:Parameter>
|
|
884
|
+
<xtce:Parameter name="SWE_APP_HK.APP_MODE" parameterTypeRef="SWE_APP_HK.APP_MODE">
|
|
885
|
+
<xtce:LongDescription>Operation Mode</xtce:LongDescription>
|
|
886
|
+
</xtce:Parameter>
|
|
887
|
+
<xtce:Parameter name="SWE_APP_HK.SAFED" parameterTypeRef="SWE_APP_HK.SAFED">
|
|
888
|
+
<xtce:LongDescription>If instrument is safed
|
|
889
|
+
'1' - Safed
|
|
890
|
+
'0' - Not safed</xtce:LongDescription>
|
|
891
|
+
</xtce:Parameter>
|
|
892
|
+
<xtce:Parameter name="SWE_APP_HK.ITF_ERR_CNT" parameterTypeRef="SWE_APP_HK.ITF_ERR_CNT">
|
|
893
|
+
<xtce:LongDescription>Error count for incoming ITF messages</xtce:LongDescription>
|
|
894
|
+
</xtce:Parameter>
|
|
895
|
+
<xtce:Parameter name="SWE_APP_HK.CMD_ACC_COUNT" parameterTypeRef="SWE_APP_HK.CMD_ACC_COUNT">
|
|
896
|
+
<xtce:LongDescription>Commands which have successfully executed accumulation count</xtce:LongDescription>
|
|
897
|
+
</xtce:Parameter>
|
|
898
|
+
<xtce:Parameter name="SWE_APP_HK.CMD_REJ_COUNT" parameterTypeRef="SWE_APP_HK.CMD_REJ_COUNT">
|
|
899
|
+
<xtce:LongDescription>Command reject count</xtce:LongDescription>
|
|
900
|
+
</xtce:Parameter>
|
|
901
|
+
<xtce:Parameter name="SWE_APP_HK.LAST_ACC_OPCODE" parameterTypeRef="SWE_APP_HK.LAST_ACC_OPCODE">
|
|
902
|
+
<xtce:LongDescription>Last accepted opcode</xtce:LongDescription>
|
|
903
|
+
</xtce:Parameter>
|
|
904
|
+
<xtce:Parameter name="SWE_APP_HK.HV_DISABLE_PLUG" parameterTypeRef="SWE_APP_HK.HV_DISABLE_PLUG">
|
|
905
|
+
<xtce:LongDescription>State of the external HV Disable Plug.
|
|
906
|
+
‘1’ – Plug inserted
|
|
907
|
+
‘0’ – Plug not inserted</xtce:LongDescription>
|
|
908
|
+
</xtce:Parameter>
|
|
909
|
+
<xtce:Parameter name="SWE_APP_HK.HV_LIMIT_PLUG" parameterTypeRef="SWE_APP_HK.HV_LIMIT_PLUG">
|
|
910
|
+
<xtce:LongDescription>State of the external HV Disable Plug.
|
|
911
|
+
‘1’ – Plug inserted
|
|
912
|
+
‘0’ – Plug not inserted
|
|
913
|
+
</xtce:LongDescription>
|
|
914
|
+
</xtce:Parameter>
|
|
915
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_ENABLE" parameterTypeRef="SWE_APP_HK.HVPS_ENABLE">
|
|
916
|
+
<xtce:LongDescription>Master Enable.
|
|
917
|
+
'1' - enabled
|
|
918
|
+
'0' not enabled</xtce:LongDescription>
|
|
919
|
+
</xtce:Parameter>
|
|
920
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_CEM_ENABLE" parameterTypeRef="SWE_APP_HK.HVPS_CEM_ENABLE">
|
|
921
|
+
<xtce:LongDescription>CEM Enable.
|
|
922
|
+
'1' - enabled
|
|
923
|
+
'0' -- not enabled</xtce:LongDescription>
|
|
924
|
+
</xtce:Parameter>
|
|
925
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_ESA_ENABLE" parameterTypeRef="SWE_APP_HK.HVPS_ESA_ENABLE">
|
|
926
|
+
<xtce:LongDescription>ESA Disable
|
|
927
|
+
‘1’ – ESA enabled
|
|
928
|
+
‘0’ – ESA disabled
|
|
929
|
+
</xtce:LongDescription>
|
|
930
|
+
</xtce:Parameter>
|
|
931
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_LOW_RANGE_ENABLE" parameterTypeRef="SWE_APP_HK.HVPS_LOW_RANGE_ENABLE">
|
|
932
|
+
<xtce:LongDescription>ESA Low range select
|
|
933
|
+
‘1’ – ESA low range
|
|
934
|
+
‘0’ – ESA high range
|
|
935
|
+
</xtce:LongDescription>
|
|
936
|
+
</xtce:Parameter>
|
|
937
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_BULK_ENABLE" parameterTypeRef="SWE_APP_HK.HVPS_BULK_ENABLE">
|
|
938
|
+
<xtce:LongDescription>Enable 1.6kV bulk power supply.
|
|
939
|
+
1 - enabled
|
|
940
|
+
0 not enabled</xtce:LongDescription>
|
|
941
|
+
</xtce:Parameter>
|
|
942
|
+
<xtce:Parameter name="SWE_APP_HK.SENSOR_P12A_N12A_CTRL" parameterTypeRef="SWE_APP_HK.SENSOR_P12A_N12A_CTRL">
|
|
943
|
+
<xtce:LongDescription>12V power supply status.
|
|
944
|
+
1 -active
|
|
945
|
+
0 inactive</xtce:LongDescription>
|
|
946
|
+
</xtce:Parameter>
|
|
947
|
+
<xtce:Parameter name="SWE_APP_HK.SENSOR_P5A_N5A_CTRL" parameterTypeRef="SWE_APP_HK.SENSOR_P5A_N5A_CTRL">
|
|
948
|
+
<xtce:LongDescription>5V power supply status.
|
|
949
|
+
1 -active
|
|
950
|
+
0 inactive</xtce:LongDescription>
|
|
951
|
+
</xtce:Parameter>
|
|
952
|
+
<xtce:Parameter name="SWE_APP_HK.SENSOR_P3P3D_P5D_CTRL" parameterTypeRef="SWE_APP_HK.SENSOR_P3P3D_P5D_CTRL">
|
|
953
|
+
<xtce:LongDescription>3.3V power supply status.
|
|
954
|
+
1 -active
|
|
955
|
+
0 inactive</xtce:LongDescription>
|
|
956
|
+
</xtce:Parameter>
|
|
957
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_ERROR_COUNT" parameterTypeRef="SWE_APP_HK.HVPS_ERROR_COUNT">
|
|
958
|
+
<xtce:LongDescription>count of HVPS register read and write errors</xtce:LongDescription>
|
|
959
|
+
</xtce:Parameter>
|
|
960
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_CEM_DAC" parameterTypeRef="SWE_APP_HK.HVPS_CEM_DAC">
|
|
961
|
+
<xtce:LongDescription>CEM Bias Adjust</xtce:LongDescription>
|
|
962
|
+
</xtce:Parameter>
|
|
963
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_ESA_DAC" parameterTypeRef="SWE_APP_HK.HVPS_ESA_DAC">
|
|
964
|
+
<xtce:LongDescription>ESA Stepper Control. No conersation as high and low ranges use different values to convert</xtce:LongDescription>
|
|
965
|
+
</xtce:Parameter>
|
|
966
|
+
<xtce:Parameter name="SWE_APP_HK.THRESHOLD" parameterTypeRef="SWE_APP_HK.THRESHOLD">
|
|
967
|
+
<xtce:LongDescription>CEM Front End Electronics Threshold</xtce:LongDescription>
|
|
968
|
+
</xtce:Parameter>
|
|
969
|
+
<xtce:Parameter name="SWE_APP_HK.STIM_ENABLE" parameterTypeRef="SWE_APP_HK.STIM_ENABLE">
|
|
970
|
+
<xtce:LongDescription>STIM Enable
|
|
971
|
+
'1': enabled
|
|
972
|
+
'0': disabled</xtce:LongDescription>
|
|
973
|
+
</xtce:Parameter>
|
|
974
|
+
<xtce:Parameter name="SWE_APP_HK.STIM_CONFIGURATION" parameterTypeRef="SWE_APP_HK.STIM_CONFIGURATION">
|
|
975
|
+
<xtce:LongDescription>STIM Configuration</xtce:LongDescription>
|
|
976
|
+
</xtce:Parameter>
|
|
977
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_VBULK" parameterTypeRef="SWE_APP_HK.HVPS_VBULK">
|
|
978
|
+
<xtce:LongDescription>HVPS Bulk Voltage Monitor</xtce:LongDescription>
|
|
979
|
+
</xtce:Parameter>
|
|
980
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_VCEM" parameterTypeRef="SWE_APP_HK.HVPS_VCEM">
|
|
981
|
+
<xtce:LongDescription>HVPS CEM Voltage Monitor</xtce:LongDescription>
|
|
982
|
+
</xtce:Parameter>
|
|
983
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_VESA" parameterTypeRef="SWE_APP_HK.HVPS_VESA">
|
|
984
|
+
<xtce:LongDescription>HVPS ESA Voltage Monitor</xtce:LongDescription>
|
|
985
|
+
</xtce:Parameter>
|
|
986
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_VESA_LOW_RANGE" parameterTypeRef="SWE_APP_HK.HVPS_VESA_LOW_RANGE">
|
|
987
|
+
<xtce:LongDescription>HVPS ESA Lo range Voltage Monitor</xtce:LongDescription>
|
|
988
|
+
</xtce:Parameter>
|
|
989
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_ICEM" parameterTypeRef="SWE_APP_HK.HVPS_ICEM">
|
|
990
|
+
<xtce:LongDescription>HVPS CEM Current Monitor</xtce:LongDescription>
|
|
991
|
+
</xtce:Parameter>
|
|
992
|
+
<xtce:Parameter name="SWE_APP_HK.FEE_TEMP" parameterTypeRef="SWE_APP_HK.FEE_TEMP">
|
|
993
|
+
<xtce:LongDescription>FEE Temperature Monitor</xtce:LongDescription>
|
|
994
|
+
</xtce:Parameter>
|
|
995
|
+
<xtce:Parameter name="SWE_APP_HK.SENSOR_TEMP" parameterTypeRef="SWE_APP_HK.SENSOR_TEMP">
|
|
996
|
+
<xtce:LongDescription>Sensor Temperature Monitor</xtce:LongDescription>
|
|
997
|
+
</xtce:Parameter>
|
|
998
|
+
<xtce:Parameter name="SWE_APP_HK.HVPS_TEMP" parameterTypeRef="SWE_APP_HK.HVPS_TEMP">
|
|
999
|
+
<xtce:LongDescription>HVPS temperature Moniotor</xtce:LongDescription>
|
|
1000
|
+
</xtce:Parameter>
|
|
1001
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_BACK_BOARD_TEMP" parameterTypeRef="SWE_APP_HK.LVPS_BACK_BOARD_TEMP">
|
|
1002
|
+
<xtce:LongDescription>LVPS temperature 1</xtce:LongDescription>
|
|
1003
|
+
</xtce:Parameter>
|
|
1004
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_FRONT_BOARD_TEMP" parameterTypeRef="SWE_APP_HK.LVPS_FRONT_BOARD_TEMP">
|
|
1005
|
+
<xtce:LongDescription>LVPS temperature 2</xtce:LongDescription>
|
|
1006
|
+
</xtce:Parameter>
|
|
1007
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_MID_BOARD_TEMP" parameterTypeRef="SWE_APP_HK.LVPS_MID_BOARD_TEMP">
|
|
1008
|
+
<xtce:LongDescription>LVPS temperature 3</xtce:LongDescription>
|
|
1009
|
+
</xtce:Parameter>
|
|
1010
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_3_3V_VMON" parameterTypeRef="SWE_APP_HK.LVPS_3_3V_VMON">
|
|
1011
|
+
<xtce:LongDescription>3.3V voltage monitor</xtce:LongDescription>
|
|
1012
|
+
</xtce:Parameter>
|
|
1013
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_5V_P_VMON" parameterTypeRef="SWE_APP_HK.LVPS_5V_P_VMON">
|
|
1014
|
+
<xtce:LongDescription>positive 5V voltage monitor</xtce:LongDescription>
|
|
1015
|
+
</xtce:Parameter>
|
|
1016
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_5V_N_VMON" parameterTypeRef="SWE_APP_HK.LVPS_5V_N_VMON">
|
|
1017
|
+
<xtce:LongDescription>negative 5V voltage monitor</xtce:LongDescription>
|
|
1018
|
+
</xtce:Parameter>
|
|
1019
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_12V_P_VMON" parameterTypeRef="SWE_APP_HK.LVPS_12V_P_VMON">
|
|
1020
|
+
<xtce:LongDescription>positive 12V voltage monitor</xtce:LongDescription>
|
|
1021
|
+
</xtce:Parameter>
|
|
1022
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_12V_N_VMON" parameterTypeRef="SWE_APP_HK.LVPS_12V_N_VMON">
|
|
1023
|
+
<xtce:LongDescription>negative 12V voltage monitor</xtce:LongDescription>
|
|
1024
|
+
</xtce:Parameter>
|
|
1025
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_3_3V_IMON" parameterTypeRef="SWE_APP_HK.LVPS_3_3V_IMON">
|
|
1026
|
+
<xtce:LongDescription>3.3V current monitor</xtce:LongDescription>
|
|
1027
|
+
</xtce:Parameter>
|
|
1028
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_5V_P_IMON" parameterTypeRef="SWE_APP_HK.LVPS_5V_P_IMON">
|
|
1029
|
+
<xtce:LongDescription>positive 5V current monitor</xtce:LongDescription>
|
|
1030
|
+
</xtce:Parameter>
|
|
1031
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_5V_N_IMON" parameterTypeRef="SWE_APP_HK.LVPS_5V_N_IMON">
|
|
1032
|
+
<xtce:LongDescription>negative 5V current monitor</xtce:LongDescription>
|
|
1033
|
+
</xtce:Parameter>
|
|
1034
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_12V_P_IMON" parameterTypeRef="SWE_APP_HK.LVPS_12V_P_IMON">
|
|
1035
|
+
<xtce:LongDescription>positive 12V current monitor</xtce:LongDescription>
|
|
1036
|
+
</xtce:Parameter>
|
|
1037
|
+
<xtce:Parameter name="SWE_APP_HK.LVPS_12V_N_IMON" parameterTypeRef="SWE_APP_HK.LVPS_12V_N_IMON">
|
|
1038
|
+
<xtce:LongDescription>negative 12V current monitor</xtce:LongDescription>
|
|
1039
|
+
</xtce:Parameter>
|
|
1040
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_PROCESSOR_TEMP" parameterTypeRef="SWE_APP_HK.CDH_PROCESSOR_TEMP">
|
|
1041
|
+
<xtce:LongDescription>CDH temp 1 to be added to FM</xtce:LongDescription>
|
|
1042
|
+
</xtce:Parameter>
|
|
1043
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_1_8V_LDO_TEMP" parameterTypeRef="SWE_APP_HK.CDH_1_8V_LDO_TEMP">
|
|
1044
|
+
<xtce:LongDescription>CDH temp 1 to be added to FM</xtce:LongDescription>
|
|
1045
|
+
</xtce:Parameter>
|
|
1046
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_1_5V_LDO_TEMP" parameterTypeRef="SWE_APP_HK.CDH_1_5V_LDO_TEMP">
|
|
1047
|
+
<xtce:LongDescription>CDH temp 1 to be added to FM</xtce:LongDescription>
|
|
1048
|
+
</xtce:Parameter>
|
|
1049
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_SDRAM_TEMP" parameterTypeRef="SWE_APP_HK.CDH_SDRAM_TEMP">
|
|
1050
|
+
<xtce:LongDescription>CDH temp 1 to be added to FM</xtce:LongDescription>
|
|
1051
|
+
</xtce:Parameter>
|
|
1052
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_1_5V_VMON" parameterTypeRef="SWE_APP_HK.CDH_1_5V_VMON">
|
|
1053
|
+
<xtce:LongDescription>CDH 1.5V monitor</xtce:LongDescription>
|
|
1054
|
+
</xtce:Parameter>
|
|
1055
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_1_8V_VMON" parameterTypeRef="SWE_APP_HK.CDH_1_8V_VMON">
|
|
1056
|
+
<xtce:LongDescription>CDH 1.8V monitor</xtce:LongDescription>
|
|
1057
|
+
</xtce:Parameter>
|
|
1058
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_3_3V_VMON" parameterTypeRef="SWE_APP_HK.CDH_3_3V_VMON">
|
|
1059
|
+
<xtce:LongDescription>CDH 3.3V monitor</xtce:LongDescription>
|
|
1060
|
+
</xtce:Parameter>
|
|
1061
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_12V_P_VMON" parameterTypeRef="SWE_APP_HK.CDH_12V_P_VMON">
|
|
1062
|
+
<xtce:LongDescription>CDH positive 12V monitor</xtce:LongDescription>
|
|
1063
|
+
</xtce:Parameter>
|
|
1064
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_12V_N_VMON" parameterTypeRef="SWE_APP_HK.CDH_12V_N_VMON">
|
|
1065
|
+
<xtce:LongDescription>CDH negative 12V monitor</xtce:LongDescription>
|
|
1066
|
+
</xtce:Parameter>
|
|
1067
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_5V_VMON" parameterTypeRef="SWE_APP_HK.CDH_5V_VMON">
|
|
1068
|
+
<xtce:LongDescription>CDH 1.5V monitor</xtce:LongDescription>
|
|
1069
|
+
</xtce:Parameter>
|
|
1070
|
+
<xtce:Parameter name="SWE_APP_HK.CDH_ANALOG_REF_VMON" parameterTypeRef="SWE_APP_HK.CDH_ANALOG_REF_VMON">
|
|
1071
|
+
<xtce:LongDescription>CDH analog reference monitor</xtce:LongDescription>
|
|
1072
|
+
</xtce:Parameter>
|
|
1073
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_FSW" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_FSW">
|
|
1074
|
+
<xtce:LongDescription>Count of FDC violations of the FSW category</xtce:LongDescription>
|
|
1075
|
+
</xtce:Parameter>
|
|
1076
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_HVPS" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_HVPS">
|
|
1077
|
+
<xtce:LongDescription>Count of FDC violations of the HVPS category</xtce:LongDescription>
|
|
1078
|
+
</xtce:Parameter>
|
|
1079
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_LVPS" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_LVPS">
|
|
1080
|
+
<xtce:LongDescription>Count of FDC violations of the LVPS category</xtce:LongDescription>
|
|
1081
|
+
</xtce:Parameter>
|
|
1082
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_CDH" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_CDH">
|
|
1083
|
+
<xtce:LongDescription>Count of FDC violations of the CDH category</xtce:LongDescription>
|
|
1084
|
+
</xtce:Parameter>
|
|
1085
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_SYSTEM" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_SYSTEM">
|
|
1086
|
+
<xtce:LongDescription>Count of FDC violations of the System category</xtce:LongDescription>
|
|
1087
|
+
</xtce:Parameter>
|
|
1088
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_TRIGGER_CNT_SCIENCE" parameterTypeRef="SWE_APP_HK.FDC_TRIGGER_CNT_SCIENCE">
|
|
1089
|
+
<xtce:LongDescription>Count of FDC violations of the SCIENCE category</xtce:LongDescription>
|
|
1090
|
+
</xtce:Parameter>
|
|
1091
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_LAST_TRIGGER_INDEX" parameterTypeRef="SWE_APP_HK.FDC_LAST_TRIGGER_INDEX">
|
|
1092
|
+
<xtce:LongDescription>Index of FDC rule in ENG LUT that triggered last violation</xtce:LongDescription>
|
|
1093
|
+
</xtce:Parameter>
|
|
1094
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_LAST_TRIGGER_ACTION" parameterTypeRef="SWE_APP_HK.FDC_LAST_TRIGGER_ACTION">
|
|
1095
|
+
<xtce:LongDescription>Action taken to handle the last FDC violation</xtce:LongDescription>
|
|
1096
|
+
</xtce:Parameter>
|
|
1097
|
+
<xtce:Parameter name="SWE_APP_HK.FDC_LAST_TRIGGER_MINMAX" parameterTypeRef="SWE_APP_HK.FDC_LAST_TRIGGER_MINMAX">
|
|
1098
|
+
<xtce:LongDescription>Last FDC violation was breaching min or max limits
|
|
1099
|
+
'0' - min
|
|
1100
|
+
'1' - max</xtce:LongDescription>
|
|
1101
|
+
</xtce:Parameter>
|
|
1102
|
+
<xtce:Parameter name="SWE_APP_HK.MISSED_PPS_CNT" parameterTypeRef="SWE_APP_HK.MISSED_PPS_CNT">
|
|
1103
|
+
<xtce:LongDescription>Missed 1PPS count</xtce:LongDescription>
|
|
1104
|
+
</xtce:Parameter>
|
|
1105
|
+
<xtce:Parameter name="SWE_APP_HK.CMD_FIFO_OVERFLOW" parameterTypeRef="SWE_APP_HK.CMD_FIFO_OVERFLOW">
|
|
1106
|
+
<xtce:LongDescription>spacecraft command FIFO overflow
|
|
1107
|
+
'0' - not overflown
|
|
1108
|
+
'1' - overflown</xtce:LongDescription>
|
|
1109
|
+
</xtce:Parameter>
|
|
1110
|
+
<xtce:Parameter name="SWE_APP_HK.TLM_FIFO_OVERFLOW" parameterTypeRef="SWE_APP_HK.TLM_FIFO_OVERFLOW">
|
|
1111
|
+
<xtce:LongDescription>spacecraft telemetry FIFO overflow
|
|
1112
|
+
'0' - not overflown
|
|
1113
|
+
'1' - overflown</xtce:LongDescription>
|
|
1114
|
+
</xtce:Parameter>
|
|
1115
|
+
<xtce:Parameter name="SWE_APP_HK.CPU_IDLE" parameterTypeRef="SWE_APP_HK.CPU_IDLE">
|
|
1116
|
+
<xtce:LongDescription>Percentage of time FSW running idle/scrub time</xtce:LongDescription>
|
|
1117
|
+
</xtce:Parameter>
|
|
1118
|
+
<xtce:Parameter name="SWE_APP_HK.MARKER" parameterTypeRef="SWE_APP_HK.MARKER">
|
|
1119
|
+
<xtce:LongDescription>Marker value for user to write to for testing</xtce:LongDescription>
|
|
1120
|
+
</xtce:Parameter>
|
|
1121
|
+
<xtce:Parameter name="SWE_APP_HK.ACTIVE_MACRO" parameterTypeRef="SWE_APP_HK.ACTIVE_MACRO">
|
|
1122
|
+
<xtce:LongDescription>1 based macro ID of the macro currently being executed</xtce:LongDescription>
|
|
1123
|
+
</xtce:Parameter>
|
|
1124
|
+
<xtce:Parameter name="SWE_APP_HK.ACTIVE_MACRO_TRIGGER" parameterTypeRef="SWE_APP_HK.ACTIVE_MACRO_TRIGGER">
|
|
1125
|
+
<xtce:LongDescription>Trigger that started the macro (1 is FDC, 2 is spacecraft, 3 is user)</xtce:LongDescription>
|
|
1126
|
+
</xtce:Parameter>
|
|
1127
|
+
<xtce:Parameter name="SWE_APP_HK.CKSUM" parameterTypeRef="SWE_APP_HK.CKSUM">
|
|
1128
|
+
<xtce:LongDescription>checksum</xtce:LongDescription>
|
|
1129
|
+
</xtce:Parameter>
|
|
1130
|
+
<xtce:Parameter name="SWE_CEM_RAW.SHCOARSE" parameterTypeRef="SWE_CEM_RAW.SHCOARSE">
|
|
1131
|
+
<xtce:LongDescription>Mission elapsed time</xtce:LongDescription>
|
|
1132
|
+
</xtce:Parameter>
|
|
1133
|
+
<xtce:Parameter name="SWE_CEM_RAW.THRESHOLD_DAC" parameterTypeRef="SWE_CEM_RAW.THRESHOLD_DAC">
|
|
1134
|
+
<xtce:LongDescription>DAC Threshold</xtce:LongDescription>
|
|
1135
|
+
</xtce:Parameter>
|
|
1136
|
+
<xtce:Parameter name="SWE_CEM_RAW.STIM_CFG_REG" parameterTypeRef="SWE_CEM_RAW.STIM_CFG_REG">
|
|
1137
|
+
<xtce:LongDescription>Stim Configuration Register</xtce:LongDescription>
|
|
1138
|
+
</xtce:Parameter>
|
|
1139
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM1_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM1_COUNTS_LATCHED">
|
|
1140
|
+
<xtce:LongDescription>CEM 1 latched Counts</xtce:LongDescription>
|
|
1141
|
+
</xtce:Parameter>
|
|
1142
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM2_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM2_COUNTS_LATCHED">
|
|
1143
|
+
<xtce:LongDescription>CEM 2 latched Counts</xtce:LongDescription>
|
|
1144
|
+
</xtce:Parameter>
|
|
1145
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM3_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM3_COUNTS_LATCHED">
|
|
1146
|
+
<xtce:LongDescription>CEM 3 latched Counts</xtce:LongDescription>
|
|
1147
|
+
</xtce:Parameter>
|
|
1148
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM4_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM4_COUNTS_LATCHED">
|
|
1149
|
+
<xtce:LongDescription>CEM 4 latched Counts</xtce:LongDescription>
|
|
1150
|
+
</xtce:Parameter>
|
|
1151
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM5_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM5_COUNTS_LATCHED">
|
|
1152
|
+
<xtce:LongDescription>CEM 5 latched Counts</xtce:LongDescription>
|
|
1153
|
+
</xtce:Parameter>
|
|
1154
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM6_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM6_COUNTS_LATCHED">
|
|
1155
|
+
<xtce:LongDescription>CEM 6 latched Counts</xtce:LongDescription>
|
|
1156
|
+
</xtce:Parameter>
|
|
1157
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM7_COUNTS_LATCHED" parameterTypeRef="SWE_CEM_RAW.CEM7_COUNTS_LATCHED">
|
|
1158
|
+
<xtce:LongDescription>CEM 7 latched Counts</xtce:LongDescription>
|
|
1159
|
+
</xtce:Parameter>
|
|
1160
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM1_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM1_COUNTS_LIVE">
|
|
1161
|
+
<xtce:LongDescription>CEM 1 live Counts</xtce:LongDescription>
|
|
1162
|
+
</xtce:Parameter>
|
|
1163
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM2_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM2_COUNTS_LIVE">
|
|
1164
|
+
<xtce:LongDescription>CEM 2 live Counts</xtce:LongDescription>
|
|
1165
|
+
</xtce:Parameter>
|
|
1166
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM3_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM3_COUNTS_LIVE">
|
|
1167
|
+
<xtce:LongDescription>CEM 3 live Counts</xtce:LongDescription>
|
|
1168
|
+
</xtce:Parameter>
|
|
1169
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM4_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM4_COUNTS_LIVE">
|
|
1170
|
+
<xtce:LongDescription>CEM 4 live Counts</xtce:LongDescription>
|
|
1171
|
+
</xtce:Parameter>
|
|
1172
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM5_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM5_COUNTS_LIVE">
|
|
1173
|
+
<xtce:LongDescription>CEM 5 live Counts</xtce:LongDescription>
|
|
1174
|
+
</xtce:Parameter>
|
|
1175
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM6_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM6_COUNTS_LIVE">
|
|
1176
|
+
<xtce:LongDescription>CEM 6 live Counts</xtce:LongDescription>
|
|
1177
|
+
</xtce:Parameter>
|
|
1178
|
+
<xtce:Parameter name="SWE_CEM_RAW.CEM7_COUNTS_LIVE" parameterTypeRef="SWE_CEM_RAW.CEM7_COUNTS_LIVE">
|
|
1179
|
+
<xtce:LongDescription>CEM 7 live Counts</xtce:LongDescription>
|
|
1180
|
+
</xtce:Parameter>
|
|
1181
|
+
<xtce:Parameter name="SWE_CEM_RAW.CKSUM" parameterTypeRef="SWE_CEM_RAW.CKSUM">
|
|
1182
|
+
<xtce:LongDescription>Packet Checksum</xtce:LongDescription>
|
|
1183
|
+
</xtce:Parameter>
|
|
172
1184
|
<xtce:Parameter name="SWE_SCIENCE.SHCOARSE" parameterTypeRef="SWE_SCIENCE.SHCOARSE">
|
|
173
1185
|
<xtce:LongDescription>Mission elapsed time</xtce:LongDescription>
|
|
174
1186
|
</xtce:Parameter>
|
|
@@ -268,6 +1280,114 @@ CEM7 - 8 bit counter
|
|
|
268
1280
|
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
269
1281
|
</xtce:EntryList>
|
|
270
1282
|
</xtce:SequenceContainer>
|
|
1283
|
+
<xtce:SequenceContainer name="SWE_APP_HK">
|
|
1284
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
1285
|
+
<xtce:RestrictionCriteria>
|
|
1286
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1330" useCalibratedValue="false" />
|
|
1287
|
+
</xtce:RestrictionCriteria>
|
|
1288
|
+
</xtce:BaseContainer>
|
|
1289
|
+
<xtce:EntryList>
|
|
1290
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SHCOARSE" />
|
|
1291
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.APP_MODE" />
|
|
1292
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SAFED" />
|
|
1293
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.ITF_ERR_CNT" />
|
|
1294
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CMD_ACC_COUNT" />
|
|
1295
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CMD_REJ_COUNT" />
|
|
1296
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LAST_ACC_OPCODE" />
|
|
1297
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HV_DISABLE_PLUG" />
|
|
1298
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HV_LIMIT_PLUG" />
|
|
1299
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_ENABLE" />
|
|
1300
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_CEM_ENABLE" />
|
|
1301
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_ESA_ENABLE" />
|
|
1302
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_LOW_RANGE_ENABLE" />
|
|
1303
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_BULK_ENABLE" />
|
|
1304
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SENSOR_P12A_N12A_CTRL" />
|
|
1305
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SENSOR_P5A_N5A_CTRL" />
|
|
1306
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SENSOR_P3P3D_P5D_CTRL" />
|
|
1307
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_ERROR_COUNT" />
|
|
1308
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_CEM_DAC" />
|
|
1309
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_ESA_DAC" />
|
|
1310
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.THRESHOLD" />
|
|
1311
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.STIM_ENABLE" />
|
|
1312
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.STIM_CONFIGURATION" />
|
|
1313
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_VBULK" />
|
|
1314
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_VCEM" />
|
|
1315
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_VESA" />
|
|
1316
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_VESA_LOW_RANGE" />
|
|
1317
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_ICEM" />
|
|
1318
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FEE_TEMP" />
|
|
1319
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.SENSOR_TEMP" />
|
|
1320
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.HVPS_TEMP" />
|
|
1321
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_BACK_BOARD_TEMP" />
|
|
1322
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_FRONT_BOARD_TEMP" />
|
|
1323
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_MID_BOARD_TEMP" />
|
|
1324
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_3_3V_VMON" />
|
|
1325
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_5V_P_VMON" />
|
|
1326
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_5V_N_VMON" />
|
|
1327
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_12V_P_VMON" />
|
|
1328
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_12V_N_VMON" />
|
|
1329
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_3_3V_IMON" />
|
|
1330
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_5V_P_IMON" />
|
|
1331
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_5V_N_IMON" />
|
|
1332
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_12V_P_IMON" />
|
|
1333
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.LVPS_12V_N_IMON" />
|
|
1334
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_PROCESSOR_TEMP" />
|
|
1335
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_1_8V_LDO_TEMP" />
|
|
1336
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_1_5V_LDO_TEMP" />
|
|
1337
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_SDRAM_TEMP" />
|
|
1338
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_1_5V_VMON" />
|
|
1339
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_1_8V_VMON" />
|
|
1340
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_3_3V_VMON" />
|
|
1341
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_12V_P_VMON" />
|
|
1342
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_12V_N_VMON" />
|
|
1343
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_5V_VMON" />
|
|
1344
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CDH_ANALOG_REF_VMON" />
|
|
1345
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_FSW" />
|
|
1346
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_HVPS" />
|
|
1347
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_LVPS" />
|
|
1348
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_CDH" />
|
|
1349
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_SYSTEM" />
|
|
1350
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_TRIGGER_CNT_SCIENCE" />
|
|
1351
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_LAST_TRIGGER_INDEX" />
|
|
1352
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_LAST_TRIGGER_ACTION" />
|
|
1353
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.FDC_LAST_TRIGGER_MINMAX" />
|
|
1354
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.MISSED_PPS_CNT" />
|
|
1355
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CMD_FIFO_OVERFLOW" />
|
|
1356
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.TLM_FIFO_OVERFLOW" />
|
|
1357
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CPU_IDLE" />
|
|
1358
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.MARKER" />
|
|
1359
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.ACTIVE_MACRO" />
|
|
1360
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.ACTIVE_MACRO_TRIGGER" />
|
|
1361
|
+
<xtce:ParameterRefEntry parameterRef="SWE_APP_HK.CKSUM" />
|
|
1362
|
+
</xtce:EntryList>
|
|
1363
|
+
</xtce:SequenceContainer>
|
|
1364
|
+
<xtce:SequenceContainer name="SWE_CEM_RAW">
|
|
1365
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
1366
|
+
<xtce:RestrictionCriteria>
|
|
1367
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1334" useCalibratedValue="false" />
|
|
1368
|
+
</xtce:RestrictionCriteria>
|
|
1369
|
+
</xtce:BaseContainer>
|
|
1370
|
+
<xtce:EntryList>
|
|
1371
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.SHCOARSE" />
|
|
1372
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.THRESHOLD_DAC" />
|
|
1373
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.STIM_CFG_REG" />
|
|
1374
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM1_COUNTS_LATCHED" />
|
|
1375
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM2_COUNTS_LATCHED" />
|
|
1376
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM3_COUNTS_LATCHED" />
|
|
1377
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM4_COUNTS_LATCHED" />
|
|
1378
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM5_COUNTS_LATCHED" />
|
|
1379
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM6_COUNTS_LATCHED" />
|
|
1380
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM7_COUNTS_LATCHED" />
|
|
1381
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM1_COUNTS_LIVE" />
|
|
1382
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM2_COUNTS_LIVE" />
|
|
1383
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM3_COUNTS_LIVE" />
|
|
1384
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM4_COUNTS_LIVE" />
|
|
1385
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM5_COUNTS_LIVE" />
|
|
1386
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM6_COUNTS_LIVE" />
|
|
1387
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CEM7_COUNTS_LIVE" />
|
|
1388
|
+
<xtce:ParameterRefEntry parameterRef="SWE_CEM_RAW.CKSUM" />
|
|
1389
|
+
</xtce:EntryList>
|
|
1390
|
+
</xtce:SequenceContainer>
|
|
271
1391
|
<xtce:SequenceContainer name="SWE_SCIENCE">
|
|
272
1392
|
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
273
1393
|
<xtce:RestrictionCriteria>
|