All posts by Martin Blustine

I studied physics and went on to work in infrared optics, millimeter wave and microwave engineering until retirement. My interests lie in teaching, music, radio astronomy, infrared systems and microwave and antenna engineering. I enjoy writing technical papers about ham radio topics. When I am not operating CW, I enjoy homebrewing ham gear and restoring vintage HP and Agilent test and measurement equipment.

Fun with the Clear Sky Institute HamClock

I haven’t had the occasion to use any programming languages since retirement. That’s why the addition of a Raspberry Pi 4 Model B to the shack was a welcome change. I like to think of the Raspberry Pi as just another computer – one that uses a different operating system. With the Raspberry Pi, I can browse the Internet, access email, and write and run programs.

When I began to assemble a shack, I reserved a space on the wall for a 32″ TV, Figure 1, which was purchased during a temporary rental stay. That TV has been unused for 3 years, but it was earmarked for a HamClock.

Figure 1. Unused 32″ TV Earmarked for HamClock. The TV was wall-mounted above the shack monitors. Please click on image to expand.

I searched the N1FD site to see if anyone had written about HamClock, but no articles were found. The first article for HamClock, written by Elwood Downey, WB0OEW, appeared in October 2017 QST[1]. In his article, he calls for the use of an Adafruit HUZZAH ESP8266 Wi-Fi system-on-chip. That device was fastened to the back of a 7″ TFT display.

The version of HamClock that I built for use with the 32″ HDTV employs the Raspberry Pi 4 Model B, Figure 2, with 2 GB memory[2]. The kit that I found on Amazon includes a 64 GB microSD card (with USB adapter) onto which the Raspberry Pi operating system had been preloaded. The kit also includes a plastic case with fan, little rubber feet, tiny screws to attach a camera, device heatsinks, a wall-wart power supply, a micro HDMI to HDMI cable, an instruction manual and various assembly instruction cards. The user has to provide their own USB mouse and keyboard. I already owned a wireless mouse and keyboard so I was able to use a single USB 2.0 port on the Pi for the wireless adapter.

If you already have a microSD memory card with USB adapter, power supply, mouse, keyboard and HDMI cable, you could get by with a Raspberry Pi Zero[3] at one-fourth the price.

Figure 2. Raspberry Pi 4 With Wireless Mouse and Keyboard. A single USB 2.0 port on the Pi is used for the wireless adapter leaving 1 x USB 2.0 and 2 x USB 3.0 ports unused. Power and HDMI cables are visible. Please click on image to expand.

If your Raspberry Pi does not come equipped with the operating system installed, you can download it from the official Raspberry Pi website and store it on a microSD card for installation provided that you have a USB to microSD card adapter. The Raspberry Pi site allows you to select an operating system and it allows you to specify where the operating system will be stored upon download:

https://www.raspberrypi.com/software/

Please, follow the directions to install the operating system on your device.

I noticed an ambiguity in the kit documentation regarding connection of the cooling fan to the Pi bus header. A tiny drawing, Figure 3, shows where the red and black leads should be connected, namely pins 1 and 14, respectively. The documentation should make it clear that the long header row that contains pin 1 contains all of the odd-numbered pins while the long header row that contains pin 14 contains all of the even-numbered pins. This makes it a bit easier to locate pin 14.Figure 3. Location of the Fan Voltage Pins. The long header row that contains pin 1 contains all of the odd-numbered pins while the long header row that contains pin 14 contains all of the even-numbered pins. Please click on image to expand.

The instructions advise that the HDMI port closest to the DC power supply input be employed if only one monitor will be used. I was confused about the power supply connector. It may be plugged into the Pi upside down. However, I found that a bright flashlight can be used to look inside the power supply connector and inside the Pi power supply input jack to ensure that the conductive contacts face one another. If the connector has been plugged in correctly, some LED status lights on the Pi circuit card should illuminate once the inline DC power cord switch, Figure 4, has been turned on.

This switch has to be used with caution. The operating system, if running, must be shut down prior to turning the DC power switch to the off position. Failure to do so could corrupt data stored in memory and on the microSD card. This is a minor weakness in the design.

Figure 4. The Inline DC Power Switch. The operating system must be shut down from the Raspberry Pi menu icon on the taskbar before turning the DC power switch to the off position. Please click on image to expand.

Two methods may be used to shut down the Raspberry Pi. There is a Raspberry icon that appears on the taskbar. One of the drop-down selections is to log out. Once selected, another dropdown appears that offers the choice to shutdown or reboot. There is a second method that permits shutdown from a terminal window, Figure 5, which may be opened from the taskbar. One need only enter the command:

sudo shutdown -h now

to close the operating system. A third option is to add a momentary switch to the Pi bus header. That may be used to assert a shutdown command for the operating system. I have not implemented that feature.

Figure 5. Terminal Window. A terminal window may be opened from the Pi taskbar. Please click on image to expand.

Once an unused HDMI input to the monitor or TV is selected, and the mouse, keyboard and HDMI cable are plugged in, the power switch in the supply power cord may be switched on. Within seconds the Raspberry Pi logo appears followed by a series of questions that include language and time zone. The operating system will also ask for access to WiFi. I found that WiFi was easier than connecting another Ethernet cable to the access point.

Once WiFi is connected, the operating system will update. Finally, a desktop appears. The taskbar was docked to the top of the screen, but I moved it to the bottom because that is where I am used to seeing it, Figure 6. That may be accomplished by selecting that feature from the Raspberry Pi icon on the taskbar. The operating system provides access to the Internet via a browser icon that appears on the taskbar. There are also icons for a terminal window and Bluetooth.

Figure 6. Taskbar Moved and Docked to the Bottom of the Screen. This may be selected from screen appearance under the Raspberry Pi icon on the taskbar. Wallpaper like this may be selected from a list. Please click on image to expand.

The Raspberry Pi icon, Figure 7, provides several selections for screen appearance, resolution and the usual accessories. It also provides a means for shutting down the operating system.

Figure 7. Menu Provided Under Raspberry Pi Accessible from Taskbar. Access to many options is provided here including Raspberry Pi screen resolution. This is not the same as the HamClock screen resolution setting, which will be selected separately. Please click on image to expand.

It was learned that the means for capturing screenshots within the Pi operating system is Print Screen (PrtSc) just as it is in Windows, so this method has been used to illustrate this article. The images are stored as PNG files in the home Raspberry Pi folder, not under Screenshots in the Photo folder where one would expect them to be.

After opening a terminal window, I followed the directions provided at the Clear Sky Institute[4] web page under the Desktop tab with some notable exceptions. First, I took the advice of KM4ACK[5] to circumvent error messages by executing two scripts before attempting anything else. These scripts may be found listed under the Desktop tab under the subsection titled “To install HamClock on other UNIX-like systems follow these steps”, paragraph 2, “If you get errors”[6]. These steps at Clear Sky are correct except for a syntax error pointed out by KM4ACK[7] in the script:

sudo apt-get -y curl install make g++ libx11-dev xserver-xorg raspberrypi-ui-mods libraspberrypi-dev linux-libc-dev lightdm lxsession openssl

This script must be corrected so that the word ‘install’ precedes the word “curl”. The corrected script should read:

sudo apt-get -y install curl make g++ libx11-dev xserver-xorg raspberrypi-ui-mods libraspberrypi-dev linux-libc-dev lightdm lxsession openssl

I don’t know why this has not been corrected on the Clear Sky Institute web page, but I am happy that KM4ACK pointed it out.

We may now follow the steps listed under “To install HamClock on a Raspberry Pi follow these steps”. It is suggested that the lines of code be executed line-by-line.

cd
curl -O http://www.clearskyinstitute.com/ham/HamClock/install-hc-rpi
chmod u+x install-hc-rpi
./install-hc-rpi

If you choose not to install a desktop icon, you may run this script from a terminal window to start HamClock:

hamclock &

The first time that HamClock is run, some entries are requested. HamClock will also ask if you would like to connect to WiFi, Figure 8. Since you may have entered these for the Raspberry Pi operating system, you may answer yes if you would like to connect. HamClock will enter your username and password for you.

Figure 8. Connect to WiFi Screen. You will enter your call sign on setup page 1. You may provide your network username and password after saying yes to WiFi. If you provided these to the Raspberry Pi operating system, they will auto-fill if you select, yes. You can enter your latitude, longitude and grid square here, or you can Geolocate on your IP address (not recommended). Please click on image to expand.

Once the HamClock screen appears, if the correct resolution has been chosen, the screen should be mostly filled from top to bottom, but there may be some black bars on either side of the window. There are numerous instructions online about how to deal with this. I didn’t bother. Once I had chosen the closest resolution to my screen, 1366 x 768, I left well enough alone. HamClock also asks if you would like full-screen view, Figure 9, which eliminates the HamClock title bar as well as the taskbar. I selected that view.

Figure 9. Where to Select Full-Screen View. Full-screen view selection is on setup page 5. Please click on image to expand.

To close HamClock, please note that there is a small padlock symbol, Figure 10, beneath UTC in the upper left-hand corner. If one left clicks and holds the lock for a few seconds, then releases, a script will appear that will ask if you would like to exit the program. If you also intend to shut down the Pi, please don’t forget the logout procedure that is found under the Pi logo in the taskbar.

Figure 10. Padlock Symbol Beneath the UTC Box. If you were to left click and hold on the lock for a few seconds and release, a script will appear that will ask if you would like to exit HamClock. Please click on image to expand.

If you would like HamClock to start automatically upon reboot, a script that will do it may be run anytime from a terminal window. The scripts are found under, ” To install HamClock on other UNIX-like systems follow these steps”, in paragraph 10:

cd ~/ESPHamClock
mkdir -p ~/.config/autostart
cp hamclock.desktop ~/.config/autostart

You may want to place a HamClock icon on your Raspberry Pi desktop. That may be accomplished by copying, pasting and executing the following script in a terminal window:

cd ~/ESPHamClock
mkdir -p ~/.hamclock
cp hamclock.png ~/.hamclock
cp -p hamclock.desktop ~/Desktop

After running the scripts, close the terminal window and reboot the machine from the Pi icon. HamClock should restart immediately. The size of the HamClock window may appear reduced after reboot but may be expanded just as one might expand any other window.

As soon as HamClock is up and running you may want to explore all of the options and items that are found under “Terrain” that is found in the upper left-hand corner of the map, Figure 11. An extensive dropdown menu will appear. Go ahead and press the radio buttons followed by “okay” to see what happens. Every new screen is a surprise. It’s not that hard to get back to the screen where you started, so please experiment a little bit.

Figure 11. Dropdown Menu for the Main Graphic View. You will want to explore all of the options available from this dropdown menu visible to the left of the Mercator projection. Other menus may be accessed by clicking on the titles that appear within the smaller graphics. For a complete description, please consult the User Guide. Please click on image to expand.

Additional views for the smaller graphics may be requested by clicking on the graphics titles, themselves. For example, you may want to display propagation paths from your locale as supplied by WSJT, Figure 12. There are also satellite and space station orbits.

To change the color of your call sign background, click to the right of your call sign. To change the color of your call sign, click on the letters.

Figure 12. Display of Propagation Paths From Our Locale. If WSJT-X was selected on Page 2 of the setup menu, this graphic will be displayed. My call sign color and background color has been changed for this view. Please click on image to expand.

A particularly interesting view of the aurora is shown in Figure 13. This is one more example of how much data is available for presentation in Hamclock.

Figure 13.  Display of the Aurora. This is another example of how much data is available for display within the HamClock application. Please click on image to expand.

A complete HamClock User Guide is available at the Clear Sky Institute website under the User Guide tab[8].

Please let me know if you build a HamClock of your own. It is nice to receive feedback.

References:

[1] Elwood Downey, WB0OEW, HamClock, QST, October 2017, pp. 42-44.

[2] Raspberry Pi 4, Model B, 2 GB.

https://www.amazon.com/dp/B07TMGBPFQ/ref=sspa_dk_detail_6?ie=UTF8&pd_rd_i=B07TKFKKMPp13NParams&s=electronics&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&th=1

[3] Raspberry Pi Zero (2017).

https://www.amazon.com/Raspberry-Pi-Zero-Wireless-model/dp/B06XFZC3BX/ref=sr_1_8?crid=2P2OQ2SF3LHR5&keywords=raspberry+pi&qid=1692662504&sprefix=Raspberry+pi%2Caps%2C151&sr=8-8

[4] Elwood Downey, WB0OEW, Clear Sky Institute. https://www.clearskyinstitute.com/ham/HamClock/

[5] Jason Oleham, KM4ACK, YouTube, 2:30. https://www.youtube.com/watch?v=2Cy5Swmk3gU

[6] Elwood Downey, WB0OEW, Clear Sky Institute, Op. Cit., Desktop tab.

[7] Jason Oleham, KM4ACK, YouTube, Op. Cit.

[8] Elwood Downey, WB0OEW, Clear Sky Institute, Op. Cit., User Guide tab.

 

 

 

Restoration of an Agilent 53131A Frequency Counter

An enjoyable hobby is the restoration of vintage HP, Agilent, Tektronix and GenRad test equipment. In their day, these brands represented some of the finest U.S. engineering and manufacturing in the world, and two of them still do. What is common to all of them is the attention paid to ergonomics, product design and documentation.

Each time I restore one of these instruments, I gain insight into what the design engineers and the product designers had in mind.

Recently, I acquired an Agilent 53131A Frequency Counter found on eBay, one of my favorite sources for old test equipment. It is always a calculated risk because I never know for sure if whatever I have bought will arrive dead on arrival. Fortunately, eBay is very good about standing behind anything sold on their site that has been represented to be in good working order. They are unlike auction consolidators such as Allsurplus where everything is sold as is.

Naturally, when the counter arrived, I subjected it to the obligatory smoke test. The result is shown if Figure 1. The counter completed its self-test routine and rewarded me with a series of dashed lines in the display. That was a good sign, and it was off to a good start. When I purchased the unit, I made a best offer, and it was accepted. The reason that I did that is because I noticed some minor irregularities in the unit.

First of all, the display appeared to be dim in the photo, the likely result of running the counter for long durations for many years, maybe 30. The second thing that I noticed was the absence of the front and rear bumpers as well as a carrying handle. These, I am quite sure, were scavenged for resale on eBay. I have become quite used to that. Most of the instruments that I have restored were received minus their bottom and rear feet and in some cases their rack handles – a minor annoyance. I simply buy some and put them back on.

Most often these counters are purchased for HF use and do not feature prescaler options to extend the frequency range. This counter was no different. It was also shipped with the standard low-stability clock oscillator.

Figure 1. Agilent 53131A Frequency Counter, As Received. The display is dim but the unit passes self-test and enters ready mode. The unit was advertised and shipped without its front and rear bumpers as well as its carrying handle. The time base is a standard low-stability one, and there is no frequency extender option installed.

Upon seeing the condition of the display, I looked at the power supply schematic and found the test points for VFD display bias. The voltages checked okay. That test having been completed; I ordered a new display on eBay from a seller in China. The old display was marked Japan, but I could not find any other suitable displays for sale other than one in a non-working counter being sold for parts only.

I also looked for an inexpensive prescaler to install as an option. The one chosen works up to 3 GHz but others with higher division ratios were also available. This one provides accurate results for signals as low as -15 dBm, which is good enough for my purposes.

There were many sources for the front and rear bumpers and the carrying handle on eBay. I likely bought my own back.

All parts arrived in less than two weeks, which is about average for items ordered overseas that must pass through U.S. Customs.

An initial test was run on the counter to make sure that it would arm and run. I used whatever signal source was closest for this test, in this case, an HP 3314A Function Generator. The setup is shown in Figure 2. Both units are out of calibration so, it can’t be determined which is worse, the counter or the function generator.

Figure 2. Counter, As Received, Measuring 18 MHz. The most convenient signal source for initial testing was a bench-top HP 3314A Function Generator. Both the counter and the function generator are out of calibration. It’s difficult to know which is worse.

The first part to arrive was the frequency prescaler. The only disassembly required for installation was the instrument top cover.

I fastened the prescaler to the wall of the chassis on a pair of standoffs. The prescaler board was supplied with a coaxial cable for connection to a front panel SMA to BNC adapter and a ribbon cable for connection to the motherboard. The whole installation process was completed in an hour. The result is shown in Figure 3. The sensitivity of the prescaler was tested with a test signal of 2.55 GHz, as this particular synthesizer won’t tune much higher than that. The signal level was set to -10 dBm but the prescaler will provide stable counts for signals as low as -15 dBm.

Figure 3. Prescaler Test. The prescaler was tested with an HP 8663A Synthesized Signal Generator set to 2.55 GHz because it is the only microwave source available. A stable count is observed for power levels as low as -15 dBm. The front and rear bumpers as well as a carrying handle have been installed.

Once the vacuum fluorescent display arrived, I began to tear down the counter to the level required to remove the front panel. This also permitted cleaning 30 years of grime from the enclosure and circuit cards. Figure 4 shows the teardown.

Figure 4. Counter Teardown. The counter was disassembled using the assembly-level service guide. The power supply and motherboard remain in place. Only the front panel required removal.

Figure 5 provides a closer view of the front panel PCB and the old display. The new display is in the foreground. While the two displays are functionally the same, they have completely different layouts and are of different manufacture.

Figure 5. Close-up of the Front Panel and Vacuum Fluorescent Displays. While the displays look alike and possess the same pin-outs, they are entirely different designs.

The old display was removed from the front panel display printed circuit board that also contains the soft contacts for the front panel controls. Utmost care was taken in unsoldering and removing the old display. I wanted to preserve the old display if the new display was dead on arrival.

The unsoldering process was the one that I always use. The solder joints were painted with non-corrosive soldering flux. Next, each joint was resoldered with compatible solder. This is an important step because old solder joints tend to degrade with time. The newly resoldered joints are more easily heated and solder more easily removed with a solder puller like the one shown in Figure 6. This is an inexpensive tool that, when mastered, can remove all of the solder from the solder joints. Sometimes it takes three or even four passes with the solder puller on each joint to remove all of the solder from the holes. Once all of the solder has been removed, a needle nose pliers is used to wiggle each of the leads to ensure that it is free of solder and free from each hole. Another technique can be used provided that the replacement part is known to be good. Simply snip the leads of the old part and remove it. Then, there are still leads that have to be removed and holes that have to be cleaned. Some find this technique easier. Avoid the use of solder wick if at all possible. It really isn’t needed, and it usually ruins the circuit pads.

Figure 6. A Generic Solder Puller. This is a simple device that is just a spring-loaded plunger that, when released, can vacuum solder from solder joints. It pays to master the use of this device. Avoid the use of solder wick.

The old VFD was removed from the front circuit board. The old part and the new part are shown in Figure 7 for comparison. The two parts are of different provenance.

Figure 7. Old and New Vacuum Fluorescent Displays. The designs are very different: (top) the old part, (bottom) the new part. The pins on the old part are intact.

The display circuit card is shown in Figure 8. Non-corrosive soldering flux was painted on each solder joint and each joint was resoldered. This step is essential for old solder joints. Four passes were required to remove all of the solder with the solder puller. The board is undamaged as is the old display part.

Figure 8. Display Printed Circuit Board. The display was removed from the board with a solder puller. Four passes were required to remove all of the solder without damaging the pads. Flux residue was removed from the PCB with isopropanol.

The new display was soldered into the display circuit card and the PCB was cleaned with isopropanol to remove residual soldering flux and debris. The board was examined with a magnifier to ensure that the board was free of solder blobs and solder bridges. The counter disassembly procedure was reversed to reinstall the display circuit board into the front panel. Next, the front panel was fastened to the chassis, and the cover was replaced. The result is shown in Figure 9. The display brightness is just like new.

Figure 9. New Display Brightness. The new display works as advertised. A microwave signal of 2.55 GHz is displayed. The new prescaler BNC connector is marked Channel 3. The new front and rear bumpers and carrying handle are also visible. Please note that the difference in brightness across the display is an artifact that is due to the refresh rates of the counter and the camera.

One final modification will consist of the addition of a stable source to replace the standard one that drifts. Once complete, the instrument will be calibrated.

 

Matching to the Complex Load Impedance of a Shortened, Non-Resonant Antenna – Part I

Matching to the Complex Load Impedance of a Shortened, Non-Resonant Antenna – Part I

Introduction

A common impedance matching problem is that of matching a 50 ohm transmitter to a shortened non-resonant antenna. Examples of non-resonant antennas are the 23-foot (7.01m), and the 43-foot (13.1m) backyard vertical antennas. These antennas have something in common. They exhibit high capacitive reactance.

It is hoped that this multi-part article will provide the reader with the tools necessary to contend with this common antenna matching problem.

Part II of this article will discuss impedance matching to a 43-foot backyard vertical antenna using a 1:1 UNUN and an autotransformer[1].

The high voltages developed in these matching networks will be the subject of Part III of this article[2].

Example 1: 23-Foot Backyard Non-Resonant Vertical Antenna

A 23-foot backyard vertical with numerous radials exhibits an impedance of 19.79 – j631.9 ohms at 3.6 MHz at its base.

For this exercise, we don’t care about the number of radials, conductor losses, ground losses, and reflected power that all figure into efficiency. All we care about is matching to this complex impedance.

Unmatched VSWR

Let’s calculate the unmatched VSWR at the base of our 23-foot backyard vertical before we apply matching techniques. The load impedance that must be matched is assumed to be

The source impedance of the transmitter is given by

To calculate VSWR, we need to relate these two complex quantities to the magnitude of the reflection coefficient,

Those of us who own nanoVNAs have become used to the term S11, which is the input voltage reflection coefficient. By definition

This is a complex number that has to be rationalized before its magnitude can be found.

We should begin by combining terms where possible.

VSWR: Method I – Rectangular Form

Rationalize the denominator.

Like terms are combined to find the reflection coefficient.

The magnitude of the reflection coefficient is obtained from

Finally, the VSWR is computed from

The VSWR is 406:1 due to the high value of capacitive reactance.

VSWR: Method II – Polar Form

As before, and after combining terms, we begin with

and let

By dividing Z1 by Z2, we obtain

Notice that when the angle is moved from the denominator to the numerator, the sign changes.

We may stop here since we already have what we need

or, for the exercise, we may convert back to rectangular form using the Euler identity and arrive back at the same place.

Rectangular and polar forms lead to the same result.

The high VSWR is due to the high value of capacitive reactance of the unmatched load impedance.

Matching Techniques

When faced with problems like these, it is often easier to break the problems down into more manageable steps.

How to match the real part of the load impedance was the subject of an earlier paper[3] but let’s review the procedure for this case.

We begin by inspecting the impedance to see what we can learn about it. The real part is 19.79 ohms. This resistance, RL, is smaller than the real 50 ohm transmitter impedance, RS. If we were to use a simple LC matching network, an L-network, we can see from Figure 1 that there are four possible topologies: two low-pass topologies and two high-pass topologies[4]. Notice that the low-pass topology is capable of conducting DC from input to output. This is not possible with the high-pass topology that blocks DC with a series capacitor. We begin by picking the low-pass topology in Figure 1(b) for which RS > RL.

Figure 1. L-Matching Network Topologies. Source and load impedances are real. Reproduced under CC BY-NC by permission from Michael Steer, North Carolina State University.

It is instructive to work through low-pass and high-pass topologies to illustrate how these problems are solved. It is important to note that all of these solutions result in an impedance match for a narrow band of frequencies. If multi-band operation is required, the use of multiple matching networks or the use of an antenna tuner (preferably a remote one) will be necessary.

Other matching techniques are possible, such as center loading and top loading but we will limit the discussions in Part I, Part II, and Part III to base loading.

Example 1: Low-Pass Topology

We begin by writing down what we know,

Step 1

We set the imaginary part of the load impedance, ZL, to zero for Step 1 of the solution. We will revisit the reactive part in Step 2 of the solution.

Thus,

 

We make use of Figure 1(b) to compute the unloaded Q for the L-matching network

and

where

Substituting, we have

Also,

At 3.6 MHz, the matching network inductance is

and the matching network capacitance is

Step 2

Our matching solution is incomplete until we cancel the remaining part of the load impedance that we ignored earlier, i.e., the imaginary part of the load impedance,
-j631.9 ohms, must be canceled to achieve a match. The secret to achieving a match is in finding a value of inductance that resonates with the capacitive reactance. Once completed, the series combination of load capacitance and added resonant inductance will result in zero reactance at the resonant frequency. We remember that for series resonance, ignoring any losses in the inductor and capacitor, the LC resonant pair looks like a short circuit at the design frequency. That’s exactly what we want – we want the load capacitance and the additional inductor to look like zero ohms at resonance. Of course, real inductors have series resistance due to the wire and capacitors have dielectric losses but for this exercise, we assume that they do not.

Thus, at resonance we have

where

C is the capacitance equivalent to the complex part of the load impedance, not the matching network, C, in units of Farads.

Thus,

The value, L, is added to L. This will result in a new value for the L-matching network inductor, L”’

We don’t have to add the two together, and it may be easier to think about what each of the inductances does if we leave them as separate components.

This matching circuit may be simulated using RFSim99[5]. The circuit model is shown in Figure 2. The inductors L and L are drawn separately for emphasis. (Two inductors in series may be added.)

Figure 2. Low-Pass L-Matching Circuit. The inductor, L=1.08 μH, and added resonating inductor, L=27.94 μH, are shown separately for clarity.

Return Loss and VSWR

In the VSWR section, above, we calculated the VSWR from

We may also calculate VSWR from the return loss, RL, directly from

where we have divided the return loss by 20 because the return loss is the voltage return loss.

Let’s calculate the VSWR for our simulation, where the return loss is 50 dB.

The resulting return loss for the low-pass matching circuit is shown in Figure 3. The 2:1 bandwidth of the matching network is ~78 kHz. The return loss is better than 50 dB at 3.601 MHz, or better than 1.01:1.

Figure 3. Return Loss for Low-Pass Matching Circuit. The 2:1 bandwidth of the matching network is ~78 kHz. The return loss is better than 50 dB at 3.6 MHz, or better than 1.01:1.

It may be concluded that this two-step matching technique for a low-pass matching network works quite well for our shortened antenna on the 80m band.

Example 2: High-Pass Topology with Series to Parallel Load Conversion

For the high-pass L-matching network Figure 1 shows that two topologies are possible. The one chosen would depend on how the capacitive reactance of the load is to be canceled.

There are two ways to accomplish this depending on where the inductance is in the matching network. The inductance in the high-pass configuration is always parallel at the input or parallel at the output. The position of the inductor depends on which is larger, RS or RL. The matching L-network inductor is always closest to the larger of the two as is seen in Figure 1.

The capacitance in the load is normally thought to be in series with the load resistance. This capacitive reactance could be canceled with a series inductor added to the L-matching network but there is a more interesting way to do it.

If the series RC load combination was converted to parallel form, as is often done for us on our VNAs, it would be observed that the new parallel resistance has a value that is much higher than the source impedance. By necessity, that would place the inductor in the high-pass L-matching network in parallel with the parallel capacitance of the load.

If we were to think about parallel resonance, and neglecting any losses in the load capacitor and resonating inductor, at resonance the pair looks like an open circuit. Then, the L-matching network just sees the real part of the load impedance.

The solution begins by converting the load from series form to parallel form.

Step 1

As it turns out, there is a transformation between series and parallel circuits that works at a single frequency. As was the case for the low-pass L-matching network, we ignore the reactive part of the load, initially. and incorporate it into the solution later. The series to parallel transformation works when

and

and

Then,

and

where

The Q-value is higher than we would like, but let’s proceed to see what happens.

There is enough information to derive the values

At 3.6 MHz the parallel load capacitance becomes

We observe that while the load resistance changes a great deal, the capacitance value hardly changes at all.

Step 2

Next, the real source impedance of the transmitter, 50 ohms, must be matched to the real part of the parallel load impedance. For this case we have determined by series to parallel transformation that

To keep our notation understandable, please note that for this section, RP is substituted for RL.

Since RP is greater than RS, we must use the correct high-pass equations for unloaded Q given in Figure 1(c).

Substituting, we find that

We have the values of capacitance and inductance that will match the pure 50 ohm source impedance to a 20158 ohm load resistance.

Step 3

Now it is time to resonate the parallel load capacitance that we calculated with a parallel inductor that will be added to our matching circuit. The value of this inductor will have a value that is similar to the one that we computed for the low-pass topology. We use the same equation for resonance as before

Figure 4 shows the model for the high-pass topology. A parallel inductor is introduced at the output of the L-matching network to resonate out the parallel capacitor in the load.

We don’t have to do it, but for practice, let’s go through the steps to combine the matching network inductor in parallel with the resonating inductor

Figure 4. High-Pass L-Matching Network Topology. (Top) L-matching network with a separate resonating inductor as marked. (Bottom) L-matching network, where the L-matching network and resonating inductor have been combined in parallel to produce a single 17.16 μH inductance.

Once the simulation is run, Figure 5 shows that the high circuit Q results in a narrow 2:1 bandwidth, ~ 48 kHz. The 20158 ohm resistor is responsible for this.

Figure 5. High-Pass L-Matching Network Topology Return Loss. The return loss at 3.6 MHz is better than 50 dB demonstrating a VSWR of better than 1.01:1 over a narrow 48 kHz 2:1 VSWR bandwidth.

We conclude that the conversion to the parallel load configuration has resulted in an unloaded circuit Q that is high. This results in a narrower 2:1 bandwidth. The calculation is now repeated for the original series load to which will be added a series resonating inductor. Let’s see if the bandwidth can be improved.

Example 3: High-Pass Topology with Series RC Load

We return to the original series RC load impedance and choose the high-pass topology for the L-network.

Step 1

The high-pass solution for the series RC load begins with the following assumptions

The solution will ignore the imaginary reactance of the load impedance, initially. It will be used later.

The defining equations from Figure 1(d) for a high-pass L-matching network where the load resistance, RL, is smaller than the source resistance, RS, and where Q is the unloaded Q are given by

and

where

Substituting, we have

Also,

At 3.6 MHz, the matching network inductance is

and the matching network capacitance is

The value of unloaded Q is low, and the matching capacitance is high.

Step 2

The capacitive reactance of the load impedance has not yet been canceled as it was ignored in Step 1. A way must be found to cancel this reactance, but we observe in Figure 6 that the high-pass topology separates the load capacitance from the L-matching network shunt inductance, which is at the input.

Let’s try adding a series resonating inductance at the output of the L-matching network. That should work even though this inductance may not be combined with the L-matching network inductor.

The series load capacitance is resonated with a series inductor that will be added to our matching circuit. The value of this inductor is given by

The check for this topology is provided by the circuit model of Figure 6. A resonating inductance has been added in series with the L-matching network. It is not convenient to combine this series inductance with the parallel inductance at the input.

Figure 6. High-Pass L-Matching Network with Series Resonating Inductance Circuit Model. A resonating inductance is added in series with the L-matching network. It may not be combined with the parallel inductor at the input.

The results of this topology are shown in Figure 7. The return loss for this circuit model at 3.6 MHz is better than 49 dB for a VSWR or 1.01:1. The 2:1 VSWR is 78 kHz just as it was for the low-pass solution.

Figure 7. High-Pass L-Matching Network with Series Resonating Inductance Return Loss. The proof of this topology is evident from the plot. The return loss is better than 49 dB for a VSWR of better than 1.01:1 at 3.6 MHz. The 2:1 bandwidth is ~ 78 kHz which is the same as it was for the low-pass configuration.

The series RC load configuration is preferable over the parallel RC load configuration.

It may be concluded that this two-step matching technique for a high-pass matching network works quite well for the 80m band.

Conclusions

In Part I of this article we have used simple L-matching networks with additional resonating elements to match complex loads that possess capacitive reactance. This technique works for antennas that are too short. For antennas that are too long, the antenna load will also be complex but the resonating element required is a capacitor that cancels the inductive reactance of the complex load.

In Part II we will explore a different technique for matching to the complex load presented by a 43-foot backyard vertical antenna. The matching network will consist of a 1:1 UNUN followed by an autotransformer.

In Part III we will discuss the high voltages encountered in highly reactive loads. This occurs when antennas are far too long, or far too short.

References

[1] Salas, Phil, 160 and 80 Meter Matching Network for Your 43 foot Vertical — Part 2, QST, January 2010, pp. 34-37. http://www.arrl.org/files/file/QST%2520Binaries/QS0110Salas.pdf

[2] Ibid.

[3] Blustine, Martin, Highly Efficient L-Matching Networks for End-Fed Half-Wave Antennas, June 11, 2022. https://www.n1fd.org Add Contact Form /2022/06/11/l-matching-networks/

[4] Reproduced under CC BY-NC by permission from Michael Steer, North Carolina State University, LibreTexts™, 6.4: The L-Matching Network, https://eng.libretexts.org/Bookshelves/Electrical_Engineering/Electronics/Microwave_and_RF_Design_III_-_Networks_(Steer)/06%3A_Chapter_6/6.4%3A_The_L_Matching_Network

[5] RFSim99, Stewart Hyde, author, 1999. https://www.ad5gg.com/2017/04/06/free-rf-simulation-software/

 

Radio Amateurs Developing Skills Worldwide