PROC m_fl_fdoff ;Version 2 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: m_fl_fdoff ;# MMS-F Name: ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 5-3-95 ;# Revision: 1. 5-26-95 ;# 2. 11/18/95 GJ ;# ;# 1.3 Change Description: ;# ;# 1. fixed logic for ending procedure ;# 2. Changed naming convention from m_ts_* to m_fl_*. ;# ;# 1.4 Point of Contact: ;# FOT Author: RRowe ATSC/SOHO 286-4799 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure powers off the MDI front door ;# ;# 2.2 Intended Use: ;# ;# To power down the MDI front door motor controller ;# ;# 2.3 Duration: TBD ;# ;# 2.4 References: ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None ;# ;# 3.2 Critical Activities ;# ;# TBD ;# ;# 3.3 Special Constraints or Activities ;# ;# MDI in STADNBY mode with front door open. Front door should not ;# powered off while front door is closed during orbital operatoins. ;# At least medium rate telemetry support required for ;# duration of power on sequence. MDI Opertor on station to support ;# verification of procedure. MDI Operator verificaiton required for ;# each step before continuing. ;#************************************************************************** ;# 4.0 STEPS: BEGIN: IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF IF (P@KKTMMODE = "HK") THEN ;Check TM is not in LR WRITE "TM IS NOT IN MEDIUM/HIGH RATE." GOTO END ELSE ENDIF ; ; ;Check if the front door is NOT closed. ; IF((P@MSFDCLN != "CLOSED") or (P@MSFDCLR != "CLOSED") or ;; (P@MSFDOPN != "NOT OPEN") or (P@MSFDOPR != "NOT OPEN") or ;; (P@MKFDMTR1 != "CLOSED") or (P@MKFDMTR2 != "CLOSED") or ;; (P@MKFDOPN1 != "NOT OPEN") or (P@MKFDOPN2 != "NOT OPEN")) then goto open endif ; Inform the MDI operator that the front door may be wait; closed and 'GO' to terminate the procedure. goto end open: wait; 'GO' to turn off 15V power to front door /mbpwfdof; turn off power to front door /send wait until(p@mkpwfd="OFF"); check that front door power is off end: ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** ENDPROC