¿ªÔÆÌåÓý

Date

Re: Simple UBITX Test Set

 

The python code of my previous post works, but the first SWR computation is rather silly.
I started with a formula for SWR given forward and reverse power, computed?power from the voltages.?
Much easier to just use the voltages.

So replace this python code:
? # Compute SWR from forward and reverse voltage readings
? sqprat = sqrt(vref*vref/(vfwd*vfwd));??
? swra = (1+sqprat)/(1-sqprat);

with this:
? # Compute SWR from forward and reflected voltage readings
? swra =?(vfwd+vref)/(vfwd-vref)
?


Here's the webpage from which the formulas for SWR from voltage and power readings came:
? ??

Formulas for computing s11 (the reflection coefficient) from antenna impedance, and then SWR from s11, are found here:
? ??

Jerry, KE7ER?



On Sun, Nov 1, 2020 at 08:16 PM, Jerry Gaffke wrote:

# Compute SWR from forward and reverse voltage readings
sqprat = sqrt(vref*vref/(vfwd*vfwd));??
swra = (1+sqprat)/(1-sqprat);
print(swra)


Re: Simple UBITX Test Set

 

Attached is the schematic from? ??

Half of the transmitter's output voltage appears?between resistors R3 and R5.?
R1 and the antenna form the other half of the bridge.
D1 is a simple detector, it charges C1 with the peak voltage from that signal,
so the meter sees half of the peak voltage from the transmitter.

How D2 and C2 work is not so obvious, but they?detect the peak of the
instantaneous difference in voltages across the bridge.? Those AC voltages can
be up to 90 degrees out of phase if the antenna is purely inductive?or capacitive.
In that part of the AC cycle where the left side of the bridge is more positive
than the right side, current can flow through D2, charging cap C2.
So the node between D2 and C2 has an AC component equal to the RF antenna
voltage on the far side of C2, plus the DC component that C2 was charged with.
The LPF of R8 and C4 removes the AC component so the right side meter
can measure the peak of the difference voltage.

For you python fans, here's my python code.
Both print statements give exactly?the same value of?3.0170334337197553
This code uses python's complex number notation, the abs() function
returns the amplitude of a complex value.

##################################
from math import sqrt
?
# Test computations of SWR for an arbitrary complex antenna impedance
Zant = 33 + 44j? ? ? ? ? ? ? # An arbitrary antenna impedance for a test case
?
# Compute the SWR by doing a circuit analysis of the SWR bridge
Vin = 1? ? ? ? ? ? ? ? ? ? ? # The peak transmitter voltage (value is arbitrary, it cancels out)
Zin =? (100+(50+Zant))/(100*(50+Zant))
V1 = Vin/2? ? ? ? ? ? ? ? ? ?# peak voltage at middle node on left side of bridge
V2 = Zant * Vin/(50+Zant)? ? # peak voltage at middle node on right side of bridge
vfwd = abs(V1)? ? ? ? ? ? ? ?# left side meter reading sees half of transmitter voltage
vref = abs(V1-V2)? ? ? ? ? ? # right side meter reading sees difference across bridge
# Compute SWR from forward and reverse voltage readings
sqprat = sqrt(vref*vref/(vfwd*vfwd));??
swra = (1+sqprat)/(1-sqprat);
print(swra)
?
# Compute s11 parameter from complex antenna impedance,then compute SWR
s11 = (Zant-50)/(Zant+50)
swrb = (1+abs(s11))/(1-abs(s11))
print(swrb)
##########################################


Note that transmitter power can be calculated from the left meter reading Vm1:
? ? Vrms =? (2*Vm1)/sqrt(2);? ?Power = Vrms*Vrms/50?
This assumes that the antenna is replaced by a fourth 50 ohm resistor.
A single DVM can be used to check the voltage at each meter position,
making this an extremely cheap way to measure SWR.

Most resistive SWR bridges only light up an LED, and you tune the?
antenna for minimum brightness.? This can achieve a reasonably low SWR,
but doesn't actually measure anything.

Jerry, KE7ER



On Sun, Nov 1, 2020 at 06:29 PM, Jerry Gaffke wrote:
Would be good to include an SWR meter as part of a basic uBitx test set.
Here's a resistive bridge that I like:? ??
The two meters could be a single DVM that switches between the two positions.
They measure half of the voltage from the transmitter, also the voltage across the bridge.
I've written some python code given the two voltage readings, it can indeed compute
an SWR that agrees with an SWR calculated only from the assumed complex impedance
of the antenna.? A fourth 50 ohm resistor at the antenna port makes this a 8W dummy load.
From the forward voltage reading, we can get an accurate reading of transmitter power.


Re: Better choice quartz for 11.059 filter

 

Ah, sounds right.
He might try moving the 16mhz resonator on his Nano
instead of going to the bother of building a new filter.

Jerry, KE7ER


On Sun, Nov 1, 2020 at 06:58 PM, Evan Hand wrote:

on another thread Gerard had found a 16khz signal on the audio output of his rig with the 12MHz SSB filter. I went back and did the same test on my v4 board and found the same thing. I then checked my v5, it did not have the 16khz signal on it.?

That is one of the reasons that he is looking to swap out the 12MHz for 11.059MHz filter.?


Re: Better choice quartz for 11.059 filter

 

What complaint is Gerard trying to fix?
From this thread, I get the impression that he wants to move to an 11.059mhz IF so he can use
newer firmware that was written for V5 and V6.
? ??/g/BITX20/topic/77892249

Moving to different IF crystals could be fun and educational, you will want a way
to measure the passband of the completed filter and evaluate it for shape and attenuation.
Modifying the source code of the new firmware for 12mhz would likely be easier.

We had a few v3 and v4 uBitx users complaining of a strong audio hetrodyne anywhere they tuned, on all bands.
? ? /g/BITX20/message/40038
It was determined that the fourth harmonic of the 12mhz BFO was beating against the third harmonic
of the 16mhz processor clock.? The Nano on the Raduino has a 16mhz resonator, not a quartz crystal.
The resonator can vary by 100khz, so only a few users were unlucky enough to have it fall into
the 12mhz passband.
The solution for v3 and v4 owners was to swap out the Nano, or somehow
push the 16mhz resonator over a few khz.
The permanent solution on v5 and v6 was to move the IF from 12mhz to 11.058mhz.

The transmit spurs on the 15, 12, and 10 meter bands were due to
distortion in the 45mhz amp creating a 90mhz second harmonic?
that then mixed with CLK#2 to create a below 30mhz product.
For example, when transmitting on 21mhz, CLK#2 is at 45+21=66mhz.
And the 90mhz harmonic of 45mhz mixes with 66mhz to create a spur at 24mhz.
These spurs were suppressed on v5 and v6 by cleaning up the 90mhz harmonic.
? ??/g/BITX20/topic/28558651#62226

Yes the 15,12,10 meter bands are not working very well for us at?
this stage of the sunspot cycle.

Jerry, KE7ER



On Sun, Nov 1, 2020 at 06:21 PM, Curt wrote:
you won't notice much difference on receive if you move the xtal frequency.? this change is to reduce the transmit spurious on certain bands.? and these bands are higher in the spectrum, and not working very well now.? the designer noted the impact of this change when the v5 was released - I suggest reviewing his notes to see if it is worth the effort for your use.?

73 curt


Re: Better choice quartz for 11.059 filter

 

Curt,

on another thread Gerard had found a 16khz signal on the audio output of his rig with the 12MHz SSB filter. I went back and did the same test on my v4 board and found the same thing. I then checked my v5, it did not have the 16khz signal on it.?

That is one of the reasons that he is looking to swap out the 12MHz for 11.059MHz filter.?

73
Evan
AC9TU


Re: Dummy Load Resistors & Motor Oil

 

I caution against use of linseed oil. Once oxidized it can sponteously combust. With heat added this becomes even more dangerous. At one time I coated my cedar deck with linseed oil on a hot day. Later in the day I was surprised to find my deck smoking and one corner actually spontaneously began flaming in front of my eyes. Mineral oil is the only type of oil that is used in electric radiator type of heater and for a good reason...

--Ron
N7FTZ

On Sun, Nov 1, 2020, 16:11 MadRadioModder <madradiomodder@...> wrote:

Motor oil is slightly acidic.. .you don¡¯t want to use it.

?

From: [email protected] <[email protected]> On Behalf Of Bob Fischer, Fischer Technical Services
Sent: Sunday, November 1, 2020 5:18 PM
To: [email protected]
Subject: [BITX20] Dummy Load Resistors & Motor Oil

?

?

Motor oil might be good for high temperatures but what are its electrical properties?

I believe most motor oils have a corrosion inhibitor, a wear inhibitor and some kind of detergent.? There are probably several other ingredients.

I have never heard of anyone using motor oil for its dielectric strength.

73

Bob

WB8BEL

?


From: "Steve Sawicki via " <ab2et@...>
To: [email protected]
Sent: Sunday, November 1, 2020 5:15:21 PM
Subject: Re: [BITX20] Dummy Load Resistors

?

If you use the Linseed oil since it will with heat go "rancid" with use.
The better solution is to use the new ALL Synthetic motor oil, much better since it was designed for use in "High" Temperatures.
73's
Steve
AB2ET/4

?

?


Virus-free.

--

¡­_. _._


Re: Simple UBITX Test Set

 

The discussion on dummy loads got me thinking of resistive SWR bridges.

Would be good to include an SWR meter as part of a basic uBitx test set.
Here's a resistive bridge that I like:? ??
The two meters could be a single DVM that switches between the two positions.
They measure half of the voltage from the transmitter, also the voltage across the bridge.
I've written some python code given the two voltage readings, it can indeed compute
an SWR that agrees with an SWR calculated only from the assumed complex impedance
of the antenna.? A fourth 50 ohm resistor at the antenna port makes this a 8W dummy load.
From the forward voltage reading, we can get an accurate reading of transmitter power.

In quantity on mouser, 50 ohm 2W resistors are $0.05 each,?
and 1n5711 diodes are $0.10 each.? Switching it in and out could be done
with jumpers on test pins.? The other parts are all a penny or two in quantity.
So we're at a total of about $0.50 in parts for an instrument that provides
a dummy load, an SWR meter, and measures transmitter power.
The remainder of the test set might be just some resistive attenuators?
and a diode RF probe.? So a total parts cost of $1 is not out of the question.

I believe the uBitx receiver can deal with an incoming signal approaching 0dBm,
A 0dBm signal is 0.224 volts rms, or 0.316 volts peak.
With microamp level diode currents, a shottky diode should conduct enough to make
measurements down below a 0.1 volt forward voltage, such low level measurements?
will only be accurate if corrected through the use of a calibration chart.

So a diode RF probe might be sufficient, though an AD8307 would be better.
AD8307's can be had for down around $0.30 each on eBay.

A Nano clone such as used on the Raduino should be able to send
at least a 2mhz and perhaps a 4mhz square wave out an IO pin.? A few resistors
could reduce this down to a calibrated 0dBm signal for injection into the receiver.
No need for an extra Si5351 output as a signal generator to drive the receiver
antenna port when doing a receiver check out.
Verifying that the 30mhz LPF and first mixer work properly across all bands
could be done?when checking out the transmitter in CW mode.

A basic test set such as described above is down around $1 total in parts.
A complete set of step by step instructions should be included.
It would be of considerable help to the many uBitx owners that come into the forum
wondering how to proceed when their rig doesn't work.
Having one well defined method of doing the measurements would make
troubleshooting via forum posts much easier.

Jerry, KE7ER


Re: Better choice quartz for 11.059 filter

 

Gerard

you won't notice much difference on receive if you move the xtal frequency.? this change is to reduce the transmit spurious on certain bands.? and these bands are higher in the spectrum, and not working very well now.? the designer noted the impact of this change when the v5 was released - I suggest reviewing his notes to see if it is worth the effort for your use.?

73 curt


Re: Dummy Load Resistors & Motor Oil

 

¿ªÔÆÌåÓý

Motor oil is slightly acidic.. .you don¡¯t want to use it.

?

From: [email protected] <[email protected]> On Behalf Of Bob Fischer, Fischer Technical Services
Sent: Sunday, November 1, 2020 5:18 PM
To: [email protected]
Subject: [BITX20] Dummy Load Resistors & Motor Oil

?

?

Motor oil might be good for high temperatures but what are its electrical properties?

I believe most motor oils have a corrosion inhibitor, a wear inhibitor and some kind of detergent.? There are probably several other ingredients.

I have never heard of anyone using motor oil for its dielectric strength.

73

Bob

WB8BEL

?


From: "Steve Sawicki via groups.io" <ab2et@...>
To: [email protected]
Sent: Sunday, November 1, 2020 5:15:21 PM
Subject: Re: [BITX20] Dummy Load Resistors

?

If you use the Linseed oil since it will with heat go "rancid" with use.
The better solution is to use the new ALL Synthetic motor oil, much better since it was designed for use in "High" Temperatures.
73's
Steve
AB2ET/4

?

?


Virus-free.

--

¡­_. _._


Re: Dummy Load Resistors & Motor Oil

 

If the SWR doesn't change much for your resistor(s) when you dunk them
in the motor oil,?it should be fine.? ?Worth experimenting.

My primary concern would be that motor oil is much more objectionable if it leaks
than linseed oil or mineral oil.? Perhaps best suited for a radio station
that happens to be in the garage.

We should note, this is not needed for? a uBitx, with 10 Watts output.
On a uBitx, probably best to just use air cooled resistors.
Bothering with an oil bath to dissipate heat starts making sense at 100 Watts or more.

Jerry, KE7ER



On Sun, Nov 1, 2020 at 03:17 PM, Bob Fischer, Fischer Technical Services wrote:
Motor oil might be good for high temperatures but what are its electrical properties?


Dummy Load Resistors & Motor Oil

 


Motor oil might be good for high temperatures but what are its electrical properties?
I believe most motor oils have a corrosion inhibitor, a wear inhibitor and some kind of detergent.? There are probably several other ingredients.
I have never heard of anyone using motor oil for its dielectric strength.
73
Bob
WB8BEL


From: "Steve Sawicki via groups.io" <ab2et@...>
To: [email protected]
Sent: Sunday, November 1, 2020 5:15:21 PM
Subject: Re: [BITX20] Dummy Load Resistors

If you use the Linseed oil since it will with heat go "rancid" with use.
The better solution is to use the new ALL Synthetic motor oil, much better since it was designed for use in "High" Temperatures.
73's
Steve
AB2ET/4



Re: Dummy Load Resistors

 

¿ªÔÆÌåÓý

Flash point is about 280F so smoke point would be lower¡­

?

From: [email protected] <[email protected]> On Behalf Of Christopher Miller
Sent: Sunday, November 1, 2020 4:37 PM
To: [email protected]
Subject: Re: [BITX20] Dummy Load Resistors

?

Hello,

?

That¡¯s a great point. What is the smoke point of mineral oil??

?

Chris?


Virus-free.

--

¡­_. _._


Re: Dummy Load Resistors

 

¿ªÔÆÌåÓý

You can get mineral oil at the drug store and it: 1) has higher heat capacity than either of the two you suggested, and 2) is inert.? You can also pour what¡¯s left into the traps of the drains in your basement to stop sewer gas fumes from escaping the drains when the water evaporates from the traps.

?

MRM

?

From: [email protected] <[email protected]> On Behalf Of Steve Sawicki via groups.io
Sent: Sunday, November 1, 2020 4:15 PM
To: [email protected]
Subject: Re: [BITX20] Dummy Load Resistors

?

If you use the Linseed oil since it will with heat go "rancid" with use.
The better solution is to use the new ALL Synthetic motor oil, much better since it was designed for use in "High" Temperatures.
73's
Steve
AB2ET/4


Virus-free.

--

¡­_. _._


Re: Dummy Load Resistors

 

Hello,

That¡¯s a great point. What is the smoke point of mineral oil??

Chris?


Re: Dummy Load Resistors

 

If you use the Linseed oil since it will with heat go "rancid" with use.
The better solution is to use the new ALL Synthetic motor oil, much better since it was designed for use in "High" Temperatures.
73's
Steve
AB2ET/4


Re: Dummy Load Resistors - 1 pound sack

 

Yes, buying a power non inductive resistor and an adequate heatsink is not expensive. I use and Anaren resistor similar to the ones suggested by Loris. It works great, but It happened I had 16 820ohm rated at 5w each. They were wire wound type and guess what? They were adequate for a 75w dummy load on HF with SWR rising at 1.3 at 28Mhz.


Il dom 1 nov 2020 06:19 PM IW4AJR Loris <lorisbollina@...> ha scritto:
On Sun, Nov 1, 2020 at 03:43 PM, Bill Cromwell wrote:
Hi,

... . Don't skimp with your dummy load or your power supply.

73,
Hi Bill
it's true ! never skimp on such useful and simple tools!
But ... if you want to build this accessory too, use suitable resistors built for RF, today you can find new ones for a few dollars !!!
I understand the charm of paralleling dozens of resistors and looking for the most amazing ways to match the load to the correct impedance, without capacitance or parasitic inductances like we did 40 or 50 years ago, but today it doesn't make sense anymore, using the right component costs a lot less effort and probably even less dollars to get a ready-made RF load, just add a suitable heat sink and 100W or 250W can be achieved with just one resistor!
Good job everyone !!!
73 IW4AJR Loris


Re: Dummy Load Resistors - 1 pound sack

IW4AJR Loris
 

IS not for you


Re: Dummy Load Resistors - 1 pound sack

 

¿ªÔÆÌåÓý

Excuse me?

?

MRM

?

From: [email protected] <[email protected]> On Behalf Of IW4AJR Loris
Sent: Sunday, November 1, 2020 11:57 AM
To: [email protected]
Subject: Re: [BITX20] Dummy Load Resistors - 1 pound sack

?

e daie rompicoiota !!!!
smetti di fare il bovaro quando parli di questi argomenti !
dai consigli corretti per far crescere le persone, non per farne dei cacciavitari !
se vuoi dei buffoni al posto di OM va a dare consigli altrove !


Virus-free.

--

¡­_. _._


Re: Dummy Load Resistors - 1 pound sack

IW4AJR Loris
 

e daie rompicoiota !!!!
smetti di fare il bovaro quando parli di questi argomenti !
dai consigli corretti per far crescere le persone, non per farne dei cacciavitari !
se vuoi dei buffoni al posto di OM va a dare consigli altrove !


Re: Dummy Load Resistors - 1 pound sack

 

¿ªÔÆÌåÓý

Yes, the heat sink and the thermal coupling of the resistor to the heat sink are key to obtaining the power levels these packages suggest.? They are rated in terms of allowable temperature rise, and if you do your homework, that the specified wattage rating can only be attained with an almost infinite heat sink, or a greatly reduced duty factor.

?

MRM ?

?

From: [email protected] <[email protected]> On Behalf Of IW4AJR Loris
Sent: Sunday, November 1, 2020 11:20 AM
To: [email protected]
Subject: Re: [BITX20] Dummy Load Resistors - 1 pound sack

?

On Sun, Nov 1, 2020 at 03:43 PM, Bill Cromwell wrote:

Hi,

... . Don't skimp with your dummy load or your power supply.

73,

Hi Bill

it's true ! never skimp on such useful and simple tools!

But ... if you want to build this accessory too, use suitable resistors built for RF, today you can find new ones for a few dollars !!!

I understand the charm of paralleling dozens of resistors and looking for the most amazing ways to match the load to the correct impedance, without capacitance or parasitic inductances like we did 40 or 50 years ago, but today it doesn't make sense anymore, using the right component costs a lot less effort and probably even less dollars to get a ready-made RF load, just add a suitable heat sink and 100W or 250W can be achieved with just one resistor!

Good job everyone !!!

73 IW4AJR Loris


Virus-free.

--

¡­_. _._