Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	QGAFMPARM.SDDL
!
! Purpose:      This SDDL file defines the qgafmparm relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 12/ 1/94    27329     EGB   Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!

LANGUAGE	SQL

RECORD  QGAFM_TYPE

!------------------------------------------------------------------------------
!
!   RECORD INFORMATION
!
!------------------------------------------------------------------------------

    DESCRIPTION       "This SCIOPSDB relation contains WFII Actuator
		       Fold Mirror (AFM) data used by Instruction 
		       Management during SMS generation.

                       Refer to OPR 24055.
                       We need more information from IM on this. Please
                       help out."

!------------------------------------------------------------------------------
!
!   FIELD INFORMATION
!
!------------------------------------------------------------------------------


    FIELD  afm
        TYPE            C3
        DESCRIPTION     "This field contains the Actuator Fold Mirror 
			 identifier."
	DISCRETE	"PC1", "WF3", "WF4"
    END_FIELD


    FIELD  axis
        TYPE            C2
        DESCRIPTION     "This field contains the axis identifier."
	DISCRETE	"A1", "A2", "A3"
    END_FIELD


    FIELD  ax
        TYPE            R8
        DESCRIPTION     "This field is the x component of AFM axis."
    END_FIELD


    FIELD  ay
        TYPE            R8
        DESCRIPTION     "This field is the y component of AFM axis."    
    END_FIELD


    FIELD  alpha
        TYPE            R8
        DESCRIPTION     "This field is the top segment tilt fraction."
    END_FIELD


    FIELD  tscltop
        TYPE            R8
	UNITS		"MICRORADIANS"
        DESCRIPTION     "This field is top segment tilt scale factor."
    END_FIELD


    FIELD  tsclbot
        TYPE            R8
	UNITS		"MICRORADIANS"
        DESCRIPTION     "This field is the bottom segment scale factor."
    END_FIELD


    FIELD  vmaxtop
        TYPE            R8
	UNITS		"VOLTS"
        DESCRIPTION     "This field is the top segment maximum voltage."
    END_FIELD


    FIELD  vmaxbot
        TYPE            R8
	UNITS		"VOLTS"
        DESCRIPTION     "This field is the bottom segment maximum voltage."
    END_FIELD

END_RECORD


!------------------------------------------------------------------------------
!
!   RELATION DECLARATION
!
!------------------------------------------------------------------------------


RELATION  qgafmparm

    TYPE             QGAFM_TYPE

    DESCRIPTION      "WFII Actuator Fold Mirror Data Relation"

    SUBSYSTEM_USING  "SPSS", "IM", "SCIOPSDB"

    INDEX  qgafmparm_1
        TYPE         unique, clustered
        FIELDS       afm, axis
    END_INDEX

END_RELATION

!------------------------------------------------------------------------------
!
!   INSTANCE DECLARATION
!
!------------------------------------------------------------------------------


INSTANCE  qgafmparm

    GLOBAL

    TYPE        QGAFM_TYPE

END_INSTANCE

Go to the top.