Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	WIPCS_PARMS.SDDL
!
! Purpose:      This SDDL file defines the wipcs_parms relation.
!
! Modification History:
!
!   Date       PR      Who                       Reason
! --------   -------   ---   -------------------------------------------------
! 11/15/94   27329     SSS   Original implementation
! 05/08/98   36870     MRB   Add C output
! 10/01/01   44572     sss   Added index
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!

LANGUAGE  C, FORTRAN, SQL

INCLUDE  ZSPSS_USER_TYPES.SDDL

RECORD  WIPCSP_TYPE

    DESCRIPTION       "This table contains the default Pointing Control 
                       System (PCS) South Atlantic Anomaly (SAA) instrument 
                       recovery times for each type of PCS mode.   
                      
                       The PMDB/UPDATE program uses the values in this table
                       to initialize the 'recovery_tm' field in relation 
                       qbs_obset. The value in qbs_obset can be changed by
                       the user.  See relation qbs_obset for more information."


    FIELD  pcs_mode
        TYPE            C4
        DESCRIPTION     "This is the PCS mode and must be 'GYRO', 'FGS ',
                         'FHST', or 'BOTH'. 'FGS ' indicates that one or two 
                         Fine Guidance Sensors are to be used.  'FHST' 
                         indicates that the Fixed Head Star Trackers are
                         to be used.  'BOTH' indicates that both FGSs and FHSTs
                         are to be used. 'GYRO' indicates that neither the 
                         FGSs nor FHSTs are to be used."
        DISCRETE        "FHST", "BOTH", "FGS ", "GYRO"
    END_FIELD


    FIELD  saa_model_id
        TYPE SAA_MODEL_TYPE
        DESCRIPTION     "This is the ID of the SAA model which defines the 
                         region in which the FGS/FHST must not be operated."
    END_FIELD


    FIELD  saa_recover
        TYPE            I4
        UNITS           "SECONDS"
        DESCRIPTION     "This is the SAA exit recovery time.  Upon exit from 
                         the SAA region, the FGS/FHST must be allowed time to 
                         recover before it can be used."
    END_FIELD


    FIELD  slew_fhst
        TYPE            C1
        DESCRIPTION     "Unused."
    END_FIELD


    FIELD  fhst_bef_sla 
        TYPE            I2
        DESCRIPTION     "Unused."
    END_FIELD


    FIELD  fhst_bef_slb 
        TYPE            I2
        DESCRIPTION     "Unused."
    END_FIELD


    FIELD  fhst_aft_sla 
        TYPE            I2
        DESCRIPTION     "Unused."
    END_FIELD


    FIELD  fhst_aft_slb 
        TYPE            I2
        DESCRIPTION     "Unused."
    END_FIELD

END_RECORD

RELATION  wipcs_parms
    TYPE             WIPCSP_TYPE
    DESCRIPTION      "Default PCS Mode Dependent SAA Recovery Parameters Relation"
    SUBSYSTEM_USING  "SPSS"
    RELATED_FIELDS  "qbs_obset.recovery_tm"

    INDEX  wipcs_parms_1
        TYPE         clustered
        FIELDS       pcs_mode
    END_INDEX

END_RELATION


INSTANCE  wipcs_parms
    GLOBAL
    TYPE        WIPCSP_TYPE
END_INSTANCE

Go to the top.