Thesis
[matches/honours.git] / thesis / appendices / data_aquisition.tex~
1 \section{Data Aquisition Hardware}
2
3 {\bf NOTE:} This is slightly out of date, since when the 610B ammeter mysteriously broke, I just used ADC5 for everything. So I can probably leave out all the stuff about the differences between ADC5 and the other ADC's.
4
5 \subsection{Overview}
6
7 In order to automate TCS experiments, both Digital to Analogue and Analogue to Digital Convertors were required (DAC and ADC). To provide these, a custom DAC/ADC Box was designed and constructed. The box can be controlled by any conventional computer with available RS-232 serial communication (COM) ports. Most modern computers no longer feature COM ports; a commercially available convertor can be used to interface between the box's RS-232 output and a standard Universal Serial Bus (USB) port.
8
9
10 The key components of the DAC/ADC box hardware include:
11
12 \begin{itemize}
13         \item Microprocessor (AVR Butterfly ATMega169)
14         \item Four Analogue to Digital Converter (ADC) inputs
15         \item Single Digital to Analogue Converter (DAC) output (Microchip MCP4922)
16         \item Analogue electronics for amplification at ADC inputs and DAC outputs
17         \item Seperate power supply circuitry for Digital and Analogue electronics
18         \item RS-232 communications for control by a conventional PC or laptop
19 \end{itemize}
20
21 \subsection{Microprocessor}
22 The DAC/ADC box has been based upon Atmel's AVR Butterfly; an inexpensive and simple demonstration board for the ATMega169 16 Bit microprocessor. The features of the AVR Butterfly include easily accessible ports for Analogue to Digital Convertor (ADC) inputs and digital input/output, an onboard Universal Asynchronous Reciever/Transmitter (USART) for RS-232 serial communications, and a 6 character Liquid Crystal Display (LCD). The AVR Butterfly can be programmed using a conventional computer over the USART using a RS-232 COM port. For modern computers (which do not usually posess COM ports), a RS-232 to USB converter may be used.
23
24 Figure \ref{avr_butterfly.pdf} is a labelled photograph of the AVR Butterfly showing the use of the available ports for this project.
25
26
27 %Figure of Butterfly
28 \begin{center}
29   \includegraphics[scale=0.70]{figures/dac_adc_box/avr_butterfly.pdf}
30         \captionof{figure}{AVR Butterfly} \label{avr_butterfly.pdf}
31 \end{center}
32
33 Unless otherwise stated, all voltage differences are specified relative to the power supply ground of the AVR Butterfly.
34
35 \subsection{ADC Inputs}
36
37 The AVR Butterfly offers easy access to four of the ATMega169's ADCs through PORTF. Each ADC is capable of measuring voltages of $0 < V_{\text{adc}} < V_{cc}$ with 10 Bit resolution. For measuring voltages outside this range, some circuitry is required between the input voltage and the ADC input. In addition, it is desirable to provide the ADC with some form of input protection against accidental overloading.  Figure \ref{adc_normal.pdf} shows the input circuit which was used for three of the four available ADCs. 
38
39 \begin{center}
40         \includegraphics[scale=0.50]{figures/dac_adc_box/adc_normal.pdf}
41         \captionof{figure}{ADC4,6,7 Input} \label{adc_normal.pdf}
42 \end{center}
43
44
45 For making voltage measurements above $V_{cc}$, a voltage divider allows reduction of the voltage at the ADC. By constructing the voltage divider using a variable resistor, the range of measurable inputs could be manually adjusted. 
46
47 The diodes shown in Figure \ref{adc_normal.pdf} ensure that the ADC is protected from accidental exposure to voltages outside the acceptable range. In normal operation both diodes are off. If $V_{\text{adc}}$ were to become greater than the reference point $V_{cc}$, current would flow between the ADC input and the reference point, acting to reduce $V_{\text{adc}}$ until it reached $V_{cc}$. Similarly, if $V_{\text{adc}}$ fell below ground, current would flow from ground to the ADC input, acting to increase $V_{\text{adc}}$ until it reached ground.
48
49 The voltage at the ADC input can be related to the input of the voltage divider using Kirchoff's Voltage Law and Ohm's Law:
50 \begin{align*}
51  V_{\text{adc}} &= \frac{R_1}{R_1 + R_2} V_{\text{in}}
52 \end{align*}
53 Where $V_{\text{in}}$ is the voltage at the input of the circuit, $R_1$ is a fixed resistor, and $R_2$ is variable resistor.
54
55 $V_{\text{in}}$ can be therefore be determined from the registered ADC counts by:
56 \begin{align*}
57         V_{\text{in}} &= \left(\frac{\text{ADC counts}}{2^{10}}\right) \times \frac{R_1 + R_2}{R_1} V_{cc}
58 \end{align*}
59
60 \subsubsection{Differential ADC Input}
61
62 During the testing of the TCS experimental apparatus, it became desirable to measure the emission current of the electron gun. The electrometer used for this current measurement was capable of producing an analogue output in the range of $0-1V$. However, the negative terminal of this output was not at ground potential, but rather at the same terminal as the negative input terminal. Directly connecting the electrometer output to one of the ADC inputs discussed above would create a short circuit between the initial energy power supply, and ground (refer to Figures \ref{} and \ref{}). Therefore, it was decided to add a differential stage before the input of one of the ADCs.
63
64 Figure \ref{adc5.pdf} shows the modification made to the input for ADC5 on the AVR Butterfly. The original voltage divider and input protection discussed above are still present. The modifications include the addition of an instrumentation amplifier, and low pass filters.
65
66 \begin{center}
67         \includegraphics[scale=0.70]{figures/dac_adc_box/adc5}
68         \captionof{figure}{Differential Input stage for ADC5}
69         \label{adc5.pdf}
70 \end{center}
71
72 asdfa
73 The instrumentation amplifier consists of two stages of operational amplifiers (op-amps); input buffers, and a difference amplifier.
74 The difference amplifier can be shown using the ideal op-amp model to produce an output voltage proportional to the difference between its inputs:
75
76 \begin{align*}
77         V_{out} &= \frac{R_2}{R_1} \left(V_{2} - V_{1}\right)
78 \end{align*}
79
80 The two op-amps at the inputs to the differential amplifier are unity gain buffers. Although the outputs of the op amps are equal to their inputs, current is prevented from flowing from the circuit under measurement, and is instead drawn from the op amp power supply. 
81
82 In principle, two ADC channels could be used to record the positive and negative outputs of the electrometer seperately, with differencing done in software. However this would require modification to the output cable of the electrometer, which may prove inconvenient for future uses.It was decided that the modification of the cable and added complexity of the software required would be more time consuming than differencing the two inputs using the hardware methods described above.
83
84 The low pass filters were added to the inputs of ADC5 after it was found that an unacceptable level of AC noise was being output by the electrometer. The level of noise was too high to be filtered in software, for reasons that will be discussed in Appendix D.
85
86 \subsection{Temperature Measurement}
87
88 The AVR Butterfly features an onboard thermistor connected to ADC0. Reading ADC0 and applying the formula given in the AVR Butterfly User's Guide \cite{} results in a temperature measurement. This was useful in establishing a link between the changing chamber pressure and the temperature of the laboratory (see Appendix C).
89
90 \subsection{Power Supplies}
91 Due to the presence of both analogue and digital electronics in the DAC/ADC box, three seperate supply voltages were required:
92 \begin{enumerate}
93         \item Digital logic in the range $3 \to 4.5$V
94         \item Positive op-amp supply in the range $10 \to 15$V
95         \item Negative op-amp supply in the range $-10 \to -15$V
96 \end{enumerate}
97
98 Circuitry was designed which allowed two seperate single pole power supplies to be used for Digital logic and the op-amps. A dual 0-30V DC power supply has been used for both digital and analogue circuitry.
99
100 \subsubsection{Logic Power Supply}
101 The AVR Butterfly runs off $3V < V_{cc} < 4.5V$ DC. Since $V_{cc}$ was also used as the reference voltage for the ADCs and DAC output, it was desirable that $V_{cc}$ be kept constant, despite the absolute level of the power supply. A $3.3V$ voltage regulator has been used for this purpose. The capacitor further smooths the output by shorting high frequency fluctuations to ground.
102
103 When the DAC/ADC box was first constructed $V_{cc}$ was supplied by three $1.5V$ batteries. However, due to higher than expected power usage, and the unreliability of the voltage regulator as the input voltage fell below $4V$, inputs for an external power supply were later added.
104
105 \begin{center}
106         \includegraphics[scale=0.70]{figures/dac_adc_box/logic_ps}
107         \captionof{figure}{Logic Power Supply}
108         \label{logic_ps.pdf}
109 \end{center}
110
111 \subsubsection*{Op-amp Power Supply}
112 The DAC/ADC box circuitry involves several operational amplifiers (LF356), which require dual $\pm 10-15V$ supplies. As there were no dual $\pm$ power supplies available, a single $30V$ power supply was used, with the circuit shown in figure \ref{} used to produce $\pm 15V$ relative to ground.
113
114 The buffer amplifier ensures that negligable current can flow from the power supply into the logic and ADC circuits, whilst the capacitor removes high frequency fluctuations of the power supply relative to ground.
115
116 \subsection{DAC Output}
117 A commercial DAC board was used to produce the DAC output. The Microchip MCP4922 ET-Mini DAC is controlled by the AVR Butterfly using Motorola's Serial Peripheral Interface (SPI) Bus. The software used to implement SPI between the MCP4922 and the AVR Butterfly is discussed in Appendix D.
118
119 The ET-Mini DAC can only be powered off $3V$ to $5V$. Using $V_{cc} = 3.3V$ means that the DAC output cannot exceed $V_{cc} = 3.3V$. For TCS, energies of up to $15eV$ are required, so amplification of the DAC output was clearly necessary. A simple non-inverting amplifier with a manually adjustable gain was used to amplify the DAC output by a factor of three. This output was then used to control a laboratory power supply to produce the full range of initial energies.
120
121 \subsection{RS-232 Communications}
122
123 The AVR Butterfly features an onboard USART, which can be used both for programming and communication with the ATMega169 processor. The RS-232 communications requires only three wires; Recieve (RX), Transmit (TX) and a common ground. 
124
125 The requirement that the AVR Butterfly share a common ground with the controlling computer lead to increased noise through ground loops. This is discussed in more detail in Appendix D.
126
127 Although the RS-232 is relatively simple to implement, which makes it ideal for non-proprietry microprocessor applications, most modern computers no longer feature RS-232 COM ports. Although a computer with COM ports was available at CAMSP, due to the extreme unreliability of this computer, it was quickly replaced with a laptop that did not possess COM ports, and a commercial RS-232 to USB converter was used to interface with the laptop.
128

UCC git Repository :: git.ucc.asn.au