The first steps in restoring and updating the old G2DAF linear amplifier commenced with the removal of the 2 x 6U4GT rectifier valves and the associated voltage doubler components / 300 ohm input circuit. This will be replaced with a solid state voltage doubler (probably a 1N4148 diode stack) and a 1:4 unun broadband transformer to give as close a match to 50 ohms as possible. Next step was to solder a 5000 ohm resistor from the 813 anodes to ground. Two 10k resistors in parallel were used (see photo) to represent the load that the valves should see under normal operation. An MFJ antenna analyser was then connected to the pi - tank output and the variable capacitors in the tank circuit altered until a 1:1 50 ohm match was obtained on 80m and on 10m. This checked the output matching circuit.
The following GNU radio application adds a waterfall spectrogram to the previous CW filter program. The plot show 4 CW signals in the audio band (lower sideband) at 7023 kHz. The 700Hz signal is filtered and output to the laptop headphones by the CW bandpass filter. The frequency display is shown after the script which is as follows: #!/usr/bin/env python from gnuradio import gr from gnuradio import audio from lpf_bpf_class import Bandpass from gnuradio.qtgui import qtgui from PyQt4 import QtGui import sys, sip class cw_filter(gr.top_block): def __init__(self): gr.top_block.__init__(self) sample_rate = 44100 out_rate = 8000 kaiser = Bandpass() cw_flr = gr.fir_filter_fff(1, kaiser.bpftaps) decimate = int...
Comments