Skip to main content

Doublet Multi band dipole

This antenna is a dipole, each leg approximately 60 ft long (overall length ~ 120ft), fed with open wire feeder (ladder line).  Photo 1 shows the ladder line (constructed from plastic garden plant staples garden centre stuff is usually good at withstanding the outdoor conditions!), and the feed point insulator. A short length of 12 guage wire is used to take the wire tension and support the ladderline on each side of the insulator. The ladder line spacing, around 3 inches in this case, and its characteristic impedance, approximately 500 ohms here, is not important. (Spacing determines the maximum power handling capability (volts) and wire thickness (current)).
The ladder line enters the house and is connected directly to the transmatch by two lengths of URM 67 coax stripped of its outer sheath and braid (photo 2).  These two 2 ft lengths take the feedline through two 15mm speed fit Polyethylene pipes through the wall and into the living room.  The impedance at the point of connection to the Transmatch was measured with an MFJ 269 antenna analyser on all amateur bands (inc the three 1979 WARC bands) from 160m to 6m.  The impedance R +/- jX ohms varied considerably, as expected, and ranged from 15 -j202 at 7.03 MHz to 500 + j888 ohms on 10.114 MHz.



Note the MFJ antenna analyser only gives the magnitude of the reactance, the sign must be determined by varying the frequency about the measurement frequency and noting whether the reacance increases or decreases. If by increasing the frequency the reactance decreases, the sign of the reactance will be -ve (i.e. capacitive).
The Transmatch, a Palstar AT-2K, is a 'T' match (C-L-C) which transforms the presented impedance to 50 + j0 ohms on all bands inc 6m. Note that because of the wide impedance transformations some very high intermediate impedances - and consequent high voltages - are generated in the transmatch.  Even at a 100w transmit power many kV is possible and wide spaced high voltage capacitors are required. The Palstar variable capacitors are rated to 4.5kV and the switch wafers to 3kV.
The maximum power handling capacity of the transmatch will be achieved when the maximum values of capacitance (highest number on the INPUT and OUTPUT Palstar controls) is used, resulting in minimum voltage across each C,  to achieve a 1:1 match.
With the system as described above, the maximum CW power on 80m (capacitor settings around mid value ~ 50) before arcing (flash over) in the Palstar ATU, was measured at around 900 watts, using a Tentec Titan 425 driver.

Comments

Popular posts from this blog

Digital Bandpass Filter FIR design - Python

The python code generates the Finite Impulse Response (FIR) filter coefficients for a lowpass filter (LPF) at 10 (Hz) cut off using firwin from scipy.  A highpass filter is then created by subtracting the lowpass filter output(s) from the output of an allpass filter. To do this the coefficients of the LPF are multiplied by -1 and 1 added to the centre tap (to create the allpass filter with subtraction). A second LPF is then created with a cutoff at 15 (Hz) and the bandpass filter formed by addition of the LPF and HPF coefficients. The program also generates a test sine wave of a given amplitude and power and to this noise from a Normal distribution is added.  The graph below shows the signal and nois, and the signal (green) after filtering. The input snr is approximately 3dB. The frequency response below shows the passband centered on 12.5 (Hz), the Nyquist frequency is 50 (Hz). from numpy import cos, sin, pi, absolute, arange from numpy.random import normal fr...

FT 817 Power Amplifier

This very simple 2 Fet power amplifier easily achieves 250W output with an FT817 5W drive. The key design details as follows: 3:1 broadband input transformer matches the 5.5 ohm gate load resistor (4 x 22 ohms in parallel) to the 50 ohms required by the FT817 . The 4:1 output broadband transformer presents 3 ohms (16:1 impedance ratio) to the balanced HEXFET pair each mounted on a 3mm copper heat spreader which is insulated from the 2 1w/degC heatsinks. These are blown cool by a fan underneath. The power supply required is 28v at 30 amps. The amp is around 50% efficient with a standing 750mAmp temperature compensated bias. An IC 703, with 10watts output will drive the output to around 400 watts. The output filter shown is a 5 pole topband filter with T130-2 torroids and 400v silver mica caps. Peak output voltage on 160 metres with 5 watts drive is 160v or 320v p-p in 50 ohms equating to 250watts. This is slightly higher than the reading on the 3kw MFJ power meter. The inline F...

Splunk Cheat Sheet (Linux)

1. set root's password:  sudo su passwd root Enter new UNIX password: < new_root_password > Retype new UNIX password: < new_root_password > passwd: password updated successfully # su - 2. Remove any existing Splunk directories & create user etc: # rm -rf /opt/splunkforwarder # userdel -r splunk # this will remove as above if user splunk's home directory # groupadd siem # useradd -g siem -s /bin/bash -d /home/siem -m siem # vi ~/.profile # chage -I -1 -m -0 -M -99999 -E -1 siem If above fails because of multiple passwd fails: # pam_tally --reset check with #chage -l siem # uname -a # check OS version # dpkg -i splunk-4.3.1...........intel.deb # chown -R siem:siem /opt/splunk # su - siem : $SPLUNK_HOME/bin/splunk start --accept-license : $SPLUNK_HOME/bin/splunk edit user admin -password newpassword -role admin -auth admin:changeme 3. vi ~/.profile (as follows) (OR .bash_profile) # ~/.profile: executed by the command interpreter for log...