Waveform generator#
The AD9833 synthesises the reference sine waves for each emitter coil. The integrated circuit is programmed over the serial peripheral interface (SPI) using a microcontroller. The datasheet for this IC is available [1].
Programming the AD9833#
On powering up the IC needs to be configured to output the required frequency. The AD9833 contains a set of registers which can be written over the SPI interface.
The desired frequency register value (denoted ‘FREQREG’ in the datasheet) can be found using the following formula: \(\text{FREQREG} =\frac{f_{OUT}\times 2^{28}}{f_{MCLK}}\) where \(f_{OUT}\) is the desired output frequency of the AD9833 and \(f_{MCLK}\) is the frequency of the master clock signal input provided by a clock driver.
For example, to program an output frequency of 20.5kHz using a 6MHz master clock signal:
The full programming sequence is detailed in the datasheet and [application note] [2]. Typically a microcontroller platform (for example Arduino [3] or MSP430 [4] is used to program each waveform generator when the system powered-on.
Variable gain stage#
The variable gain stage amplifies the output of the waveform generator in preparation for further processing and amplification. This stage is necessary as the output amplitude of the AD9833 is low (0-0.6 Volts). The gain stage consists of a TL081 operational amplifier in a non-inverting amplifier configuration shown below
R1 and R2 form the feedback resistor network which controls the gain of the amplifier. The voltage gain is calculated using the following formula
R2 is potentiometer and can be varied to meet the gain requirements of the system. Detailed information regarding the circuit design and layout can be found in the schematics.
Passive bandpass filter#
The amplified signal from the variable gain stage contains noise and synthesis artifacts. A passive low-pass and high-pass filtering stage togther create a band-pass filter shown below:
The cutoff frequency for each filter is given by the following equations:
where bandwidth \(= f_{high} - f_{low}\).
Choosing the component values for each filter depends on the frequencies of interest. Anser EMT transmits frequencies between 20.5kHz and 27.5kHz. One can therefore approximate a filter bandwidth of 10kHz with 20kHz and 30kHz being the lower and upper cutoff frequencies respectively.
Further details of the filter implementation can be found in the schematic.