PROC m_fl_ovenon ;Version 6 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: M_FL_OVENON ;# MMS-F Name: ;# SUM Issue: ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 9/27/94 ;# Revision: 1. 11-29-94 RR ;# 2. 2-21-95 RR ;# 3. 4-24-95 RR ;# 4. 5-26-95 RR ;# 5. 11/18/95 GJ ;# 6. 12/03/95 GJ ;# ;# 1.3 Change Description: ;# ;# 1. Changed TM check to end proc if in LR ;# 2. Correct current checksw. Add P@ where appropriate. ;# 3. changed comments ;# 4. Corrected syntax errors ;# 5. Changed name convention from m_ts_* to m_fl_*. ;# 6. Deleted GOTO END and added WAIT; GO TO CONTINUE. ;# ;# 1.4 Point of Contact: ;# FOT Author: RRowe ATSC/SOHO 805-3642 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure powers up and inititalizes the Prime ;# Oven heater controller. ;# ;# 2.2 Intended Use: ;# ;# Controlled initial power on of MDI primary optics ;# oven heater controller following initial power up to ;# SLEEP mode. ;# ;# 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 SLEEP mode. Medium rate telemetry support ;# required for duration of power on sequence. MDI ;# Operator on station to support verification of procedure. ;# MDI operator verification required for each step before ;# continuing. This procedure should be completed as soon ;# as possible following MDI power on. ;#************************************************************************** ;# 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." WAIT; GO TO CONTINUE. ENDIF WAIT; 'GO' to switch on prime oven controller ; /mbpwhpon; switch on prime oven controller /SEND ; WAIT UNTIL(P@MKPWHPO="ON"); Telemetry verification of oven controller ON ; WAIT; 'GO' to set HPO set point to 2 (35 degC) ; /mbhpospt,0002; HPO set point to 2 /SEND ; WAIT UNTIL(MKHPOSPT=2); Telemetry verification of HPO set point ; sv P@MIPWA sv P@MIPWA WAIT; Record the MDI current. Should increase ~0.4 SNAP M_PWR_1,,OVENON.RPT,OVERWRITE ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# TBD ;# ;#************************************************************************** END: ENDPROC