Changes between Initial Version and Version 1 of PMT_HV_Test_Software


Ignore:
Timestamp:
Nov 8, 2013, 10:17:53 AM (10 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PMT_HV_Test_Software

    v1 v1  
     1This page documents an automated test setup for evaluation of prototypes.
     2
     3=== Long-Term Stability Test ===
     4
     5This is a simple test to verify the long-term stability of the HV generator and feedback circuit.  The plan is to connect the HV monitor output to a high-precision volt meter to measure the DC stability, and to a digital oscilloscope to check for AC transients.
     6
     7''''Code Outline'''
     8
     9* Initialize GPIB interface and instruments
     10 * Volt meter:  disable internal trigger, set to maximum resolution
     11 * Oscilloscope:  Set to AC coupling, maximum input gain, segmented readout of 1k sample waveforms, AC trigger with low threshold
     12* Every 1 second:
     13 * Take AC and DC voltage readings with meter
     14 * Poll oscilloscope for number of triggers and readout if necessary
     15* Every minute
     16 * Trigger oscilloscope by software and readout
     17
     18''''Equipment'''
     19
     20* [http://ohm.bu.edu/~hazen/DataSheets/HP/HP3748A.pdf HP 3748A]
     21* LeCroy WaveRunner LT584 Oscilloscope ([http://ohm.bu.edu/~hazen/DataSheets/LeCroy/WR2_RCM_RevB.pdf Programming Manual]
     22 * [[LT584_Programming_Notes]]
     23* [http://prologix.biz/ GPIB Ethernet Interface]
     24
     25''''GPIB Interface'''
     26
     27This device provides access to the GPIB (aka IEEE-488) bus used by many instruments for remote control.  See
     28[http://prologix.biz/getfile?attachment_id=1 users manual]
     29128.197.43.84 (freud.bu.edu).  See sample program
     30[http://ohm.bu.edu/~hazen/LBNE/software/volt_meter.c volt_meter.c]
     31download to a linux machine (i.e. ohm):
     32
     33{{{
     34  $ wget http://ohm.bu.edu/~hazen/LBNE/software/volt_meter.c
     35  $ make volt_meter
     36  cc     volt_meter.c   -o volt_meter
     37  $ ./volt_meter 128.197.43.84
     38  Voltage: +05.1110E+0
     39  Voltage: +05.1110E+0
     40    ...
     41  $
     42
     43}}}