PROC V_FL_LOI_TST ;Version 5 GOTO BEGIN ; ;#************************************************************************** ;# ****PROCEDURE HEADER**** ;# ;# 1.0 Introduction ;# ;# 1.1 FOT Name: V_FL_LOI_TST ;# VIRGO Name: LOI Test/Commissioning, 1st part (PROC 10) ;# Issue/Rev.: 2.5 ;# Simulator Validation Status: ;# ;# 1.2 Date Created: 17 JAN 95 ;# Revision: 1. 30-MAR-95 CG ;# 2. 21-APR-95 HB ;# 3. 25-APR-95 CG ;# 4. 08-AUG-95 HB ;# 5. 30-AUG-95 HB ;# ;# 1.3 Change Description: ;# ;# 1. Updated header information in 1.1, 1.2, 1.3, 2.1, & 2.2. ;# Changed commands to VZML with new words. Added WAIT ;# UNTIL. Deleted lines at end of proc including 14 ;# commands & associated WAITs & SENDs, and 18 WAIT UNTILs. ;# The lines deleted were tests of HV functions. ;# 2. Added WAIT 240 statements prior to the second, third, and ;# fourth commands. ;# 3. Deleted WAIT 240 statements prior to the second, third, and ;# fourth commands. ;# 4. Added version number. Added page references. Removed TBDs. ;# Added comments. Deleted VZML,9080 and associated TM ;# verifications. ;# 5. Made flight ready. Changed name from v_ts_loi_tst. No ;# TSTOL changes. ;# ;# 1.4 Point of Contact: Carline Cazeau ;# FOT Author: HBenefield ATSC/SOHO 286-4799 ;# ;#************************************************************************** ;# 2.0 Description ;# ;# 2.1 Narrative Description ;# ;# This procedure switches ON and tests the LOI. ;# HV is not touched. ;# ;# 2.2 Intended Use: ;# ;# This procedure is part of a sequence of procedures to run all ;# the different subunits & instruments. ;# ;# 2.3 Duration: 18 minutes ;# ;# 2.4 References: ;# PAGES: V_STATUS, V_TEMP_STAT, V_VOLT_HKCAL, I_EXP_STAT ;# ;#************************************************************************** ;# 3.0 Instructions for Use: ;# ;# 3.1 Parameters Required ;# ;# None. ;# ;# 3.2 Critical Activities ;# ;# None. ;# ;# 3.3 Special Constraints or Activities ;# ;# The VIRGO commands execute on a 3 minute cycle. Only one ;# command can be sent between command executions. ;# ;#************************************************************************** ;# 4.0 STEPS: BEGIN: IF (P@CMD_STATE#TELECOMMAND = "AVAILABLE") THEN ELSE /CLEAR ;Clearing the Command Buffer. ENDIF /VZML,703D ;Switch ON LOI. WAIT ;Verify contents of command buffer. /SEND WAIT UNTIL (VSTCRETN=H'703D') ;Verify TC return SV VSPDU B WAIT ;UNTIL (VSPDU=B'XX11 1101') ;Check PDU status. WAIT ;Check current consumption VIPWA (.08 A increase expected) /VZML,6000 ;LOI: No Cal, LU low. WAIT ;Verify contents of command buffer. /SEND WAIT UNTIL (VSTCRETN=H'6000') ;Check TC return /VZML,6044 ;LOI: Calibration ON, LU high. WAIT ;Verify contents of command buffer. /SEND WAIT UNTIL (VSTCRETN=H'6044') ;Check TC return ;#************************************************************************** ;# 5.0 Final Constraints ;# ;# None. ;# ;#************************************************************************** ENDPROC