DECLARE SUB imagramp (rr!, ifin!) DECLARE SUB gpibinit () DECLARE SUB hp3457init () DECLARE SUB dac488hrinit () DECLARE SUB dac488hrsetupv () '**************************************************************************** 'Program RAMPDOWN 'This program ramps the power supply down in emergencies. ' 'Zachary Wolf '7/11/94 '**************************************************************************** 'Include the constants used in the program REM $INCLUDE: 'param.inc' 'Initialize the GPIB CALL gpibinit 'Initialize the DAC CALL dac488hrinit CALL dac488hrsetupv 'Initialize the HP3457 CALL hp3457init 'Message PRINT PRINT "Ramping to 0 Amps." 'Ramp to 0 amps CALL imagramp(imagramprateP!, 0!) 'Message PRINT "The ramp is complete." END