¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Measuring switch isolation Re: [nanovna-users] Connect VNA thru tuner to antenna

 

On 6/15/23 4:38 AM, Bryan Curl wrote:
Hi Jim,
How do you do that?
[
"But it's good to check (and hey, you could use the NanoVNA to measure it)."
]
Bryan, n0luf
Measuring switch isolation.
Let's say your switch has a common, and 4 switched outputs A,B,C,D

Hook the VNA up to Ch0 to A and Ch1 to B, put a load on Common, set the switch to A, and measure the S21. Or select neither, or C, and measure S21 (which should be lower)

You could also hook the VNA Ch0 to Common, Ch1 to output A, then select A (S21 will be the loss/phase shift through the switch) then select one of the others (S21 is the common to unswitched port leakage).

If you want to be complete on this kind of thing (or small leakages perturb the system) then you may want to put termination on unused ports and see if it makes a difference.


Re: Connect VNA thru tuner to antenna

 

I've done similar with antenna analyzers in the past and currently with a VNA. Switches I've used provided sufficient isolation...so far.


Re: Connect VNA thru tuner to antenna

 

Hi Jim,
How do you do that?
[
"But it's good to check (and hey, you could use the NanoVNA to measure it)."
]
Bryan, n0luf


Re: Firmware upgrade for original nanovna

 

Roger,
Thanks for the link.
It doesn't look like my original Nanovna needs updating.
I assume that the updates for the later versions would not be suitable.
Don m5aky


Re: I'm new to this and need some extra info #beginners1 #applications

 

Well guys n gals I found my issue at last!
The coax i was useing is (ok) if I'm using a tuner but horrible if running straight through. I was getting super high swr.
Today I remembered I had a string of RG8U I bought off a guy put ends on it and a ferrite bead near the antenna and a 6 wind choke back by the nano and BOOM working like a champ!
The reflected was so high I couldn't even get a decent reading! ? so at least I know what I need to do now!
Thanks EVERYONE that gave advice. I had a feeling after enuf trial n error something would give!


Re: Group Delay Wiggles

 

On 6/14/23 5:08 PM, Jim Lux wrote:
On 6/14/23 2:17 PM, Jim Lux wrote:
On 6/14/23 12:20 PM, DiSlord wrote:
I hope you disable internal NanoVNA calibration and use only NanoVNA Saver calibration
Linear Interpolation (used in internal calibration if points count or frequency range not equal) can give errors

This is a good point..

In addition, you might use a sim program to simulate an ideal line with a small discontinuity, and see what kind of wiggles you get.

Think of this - you're doing an S21 measurement - a small reflection at either end will constructively or destructively interfere with the main line signal.

On a group delay plot like this, you're looking at fractions of a degree in phase -
A reflection (or spurious signal) that is 90 degrees out of phase, and down 40dB would give you approx atan(.01) = .6 degrees.

just to illustrate how a small error can show up in group delay, I simulated what you'd get with a 2 meter cable, and adding a "triple transit" echo (i.e. a reflection at the Port 2 end, then another reflection at the Port 1 end).? So what winds up inside the Port 2 (Ch1) receiver is the sum of the direct signal and an attenuated delayed signal.
60 dB (essentially a -30dB mismatch at each end) gives you about .03 ns of ripple on 9 ns. 40dB is tenths of a ns, etc.
I ran it for 3 cases, 20dB, 40dB, and 60dB down.
and the source code for the plots:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""

phase effects of small time delay

Created on Wed Jun 14 14:40:45 2023

@author: jimlux
"""


import numpy as np
import matplotlib.pyplot as plt

f = np.linspace(1,701,num=1220)

dbdown = 40
cablelength = 2
d1ns = cablelength * 3 / .66 # 2 meters @ 3ns/meter, 0.66 VF
d2ns = 3*d1ns # triple transit

periods = 1000./f #ns

ph1 = d1ns/periods*2*np.pi #radian

ph2 = d2ns/periods*2*np.pi

""" now convert to I/Q """

sig1 = np.cos(ph1) + 1j* np.sin(ph1)
sig2 = np.cos(ph2)+ 1j * np.sin(ph2)

""" sum them
"direct path" is down by half dbdown
"triple reflection" is down by full dbddown """

output = (1-10**(-dbdown/40)) * sig1 + 10**(-dbdown/20)* sig2 #40dB down
""" amplitude and phase """
outamp = np.abs(output)

outph = np.unwrap(np.angle(output) )
outph = outph * 180/np.pi
""" plot them """

plt.figure()
plt.plot(f,20*np.log10(outamp))
plt.xlabel('MHz')
plt.ylabel('magnitude (dB)')
plt.title(" %5.1f meters, %5.1f dB down "%(cablelength,dbdown))

""" compute group delay & plot """

difph = np.diff(outph)
diffrq = np.diff(f)
gd = difph/(360 * diffrq) *1000. #ns
gd = np.around(gd,decimals=3)
plt.figure()
plt.plot(f[:-1],gd)
plt.ylabel('ns')
plt.xlabel('MHz')
plt.title(" %5.1f meters, %5.1f dB down "%(cablelength,dbdown))


Re: Group Delay Wiggles

 

On 6/14/23 2:17 PM, Jim Lux wrote:
On 6/14/23 12:20 PM, DiSlord wrote:
I hope you disable internal NanoVNA calibration and use only NanoVNA Saver calibration
Linear Interpolation (used in internal calibration if points count or frequency range not equal) can give errors

This is a good point..
In addition, you might use a sim program to simulate an ideal line with a small discontinuity, and see what kind of wiggles you get.
Think of this - you're doing an S21 measurement - a small reflection at either end will constructively or destructively interfere with the main line signal.
On a group delay plot like this, you're looking at fractions of a degree in phase -
A reflection (or spurious signal) that is 90 degrees out of phase, and down 40dB would give you approx atan(.01) = .6 degrees.
just to illustrate how a small error can show up in group delay, I simulated what you'd get with a 2 meter cable, and adding a "triple transit" echo (i.e. a reflection at the Port 2 end, then another reflection at the Port 1 end). So what winds up inside the Port 2 (Ch1) receiver is the sum of the direct signal and an attenuated delayed signal.

60 dB (essentially a -30dB mismatch at each end) gives you about .03 ns of ripple on 9 ns. 40dB is tenths of a ns, etc.



I ran it for 3 cases, 20dB, 40dB, and 60dB down.


Re: Group Delay Wiggles

 

On 6/14/23 12:20 PM, DiSlord wrote:
I hope you disable internal NanoVNA calibration and use only NanoVNA Saver calibration
Linear Interpolation (used in internal calibration if points count or frequency range not equal) can give errors
This is a good point..

In addition, you might use a sim program to simulate an ideal line with a small discontinuity, and see what kind of wiggles you get.

Think of this - you're doing an S21 measurement - a small reflection at either end will constructively or destructively interfere with the main line signal.

On a group delay plot like this, you're looking at fractions of a degree in phase -
A reflection (or spurious signal) that is 90 degrees out of phase, and down 40dB would give you approx atan(.01) = .6 degrees.


Re: Group Delay Wiggles

 

I hope you disable internal NanoVNA calibration and use only NanoVNA Saver calibration
Linear Interpolation (used in internal calibration if points count or frequency range not equal) can give errors


Re: Group Delay Wiggles

 

On 6/14/23 9:55 AM, astech119 wrote:
Can anyone explain these wiggles. I am just measuring the group delay of a 2m cable with NanoVNA Saver using a 1MHz to 701MHz 1212pts 3average sweep. I used both a NanoVNA H4 and NanoVNA V2, but the wiggles are more pronounced in the H4. Any explanations?
Two easy explanations (assuming a perfect cable) are:
1) The 2 port cal doesn't necessarily take into account that the Ch1 (port 2) isn't perfect.
2) Your S/O/L loads for cal aren't perfect (or more properly that they have a small physical offset), so when the S21 measurement is made, there's small variations in phase from idealized expected.

One thing you might do is try an S11 measurement and process to TDR of the cable with a short or load.

That takes port 2 issues out of the picture.

Delay is delta phase (in cycles)/delta F, and for your measurement, you're measuring 700 MHz in 1200 points, so about 580 kHz/point. A delay of 9 nanoseconds would be about 0.005 cycles or 2 degrees. You're seeing maybe 0.3 ns wiggle - 1/15th of a degree. That's not huge.


Group Delay Wiggles

 

Can anyone explain these wiggles. I am just measuring the group delay of a 2m cable with NanoVNA Saver using a 1MHz to 701MHz 1212pts 3average sweep. I used both a NanoVNA H4 and NanoVNA V2, but the wiggles are more pronounced in the H4. Any explanations?


Re: Connect VNA thru tuner to antenna

 

On 6/14/23 7:44 AM, Dallas wrote:
I have my antenna going thru my MFJ tuner then to the common terminal of a 6 position coax switch. I leave the VNA connected to position 6. Coax 1,2,3&4 each go to different radios I have.
I can quickly switch the VNA to the tuner and adjust for a match and then switch radio to properly tuned antenna.
I¡¯m getting ready to add a second coax switch between the tuner and antenna so I can switch between 3 antennas I have.
Having the VNA a click away is very handy.
Since you've been doing this a while, you don't have an issue, but in general, one would want to make sure the isolation between switch ports is high enough to make sure that when you run 100w to the antenna, the leakage to your VNA is <10 mW or so (my guestimate of "no damage max power" for the VNA. That's 40 dB of isolation, which most relay based switches can do.

But it's good to check (and hey, you could use the NanoVNA to measure it)..

I have a sort of similar setup using RCS-8Vs
Coax to switch and tuner at the antenna. The switch is cabled up so I can connect open, short, load to the end of the coax, as well. At the shack end, more switches to connect rig and VNA to various feedlines.


Connect VNA thru tuner to antenna

 

I have my antenna going thru my MFJ tuner then to the common terminal of a 6 position coax switch. I leave the VNA connected to position 6. Coax 1,2,3&4 each go to different radios I have.

I can quickly switch the VNA to the tuner and adjust for a match and then switch radio to properly tuned antenna.

I¡¯m getting ready to add a second coax switch between the tuner and antenna so I can switch between 3 antennas I have.

Having the VNA a click away is very handy.

Dallas
N5fee


Re: Thanks for the help

Robert Rose
 

I connect a nanoVNA-H4 to my antenna through a tuner. Why not? It lets me watch the effect of the tuner on resonance frequency and SWR as I adjust the settings.


Re: Thanks for the help

 

Yes, you can absolutely connect a VNA to an antenna via a tuner, it is an excellent way to tune an antenna/tuner system without transmitting (other than the sub-milliwatt VNA signal) and subjecting your transmitter to weird mismatches in the process, and also to understand what effects the various controls have; this is especially interesting when viewing an S11 Smith Chart plot.
Even hooking up a tuner and dummy load and watching the response on the Smith Chart can be enlightening.
73, Don N2VGU


NanoVNA through MFJ-971 tuner

 

I changed your initial subject ? Thanks for the help ? to make it conform to group io

Is it safe to connect my NanoVNA H4 through my MFJ-971 tuner, and to my
antenna?
Hello

- Hazard: none
- Usefulness: this way you can preset your MFJ-971 and then; connect it to your TX.

By placing a 50 ? load in place of the Tx and your NanoVNA in place of the antenna, you can do the exercise of seeing the *conjugated* impedance of your antenna (with the line). Directly on the line you will see the impedance. It has no interest but it can be an exercise to handle the NanoVNA which allows a lot of things.

This is how I tune my onboard 'L' adapters with the wire antenna. I measure with the NanoVNA the impedance of the dry antenna. I calculate the adapter 50, I build the adapter by measuring the components, one by one, with the nanoVNA. I fine-tune the settings by measuring my adapter upside down; I adjust to see the conjugate impedance of the antenna on the NanoVNA. I put the antenna back at its correct height and, normally ROS = 1 (not always)
73
--
F1AMM
Fran?ois

-----Message d'origine-----
De la part de Doug
Envoy¨¦ : mardi 13 juin 2023 06:07
Objet : [nanovna-users] Thanks for the help


Thanks for the help

Doug
 

Thanks to all for their answers to my questions. Much appreciated, and may be useful to many others too.

Now for another question for which I have searched and found no answer.

Is it safe to connect my NanoVNA H4 through my MFJ-971 tuner, and to my antenna?

Is it safe, or is there even a valid reason for doing this?

TIA, Doug.

--
*/If you forward this email, please delete the forwarding history which also includes my email address. When sending emails, please BCC so as to hide all addresses. Thanks for helping to prevent Scammers and Spammers from mining addresses and spreading viruses./

73

Doug Kearney, VA3DKA

*

*Ottawa, ON *


--
This email has been checked for viruses by Avast antivirus software.
www.avast.com


Re: Menu

 

Thanks Stan. I will give that a try.

Fred

On Mon, Jun 12, 2023, 20:17 Stan Dye <standye@...> wrote:

For early versions of firmware, that display comes up at power-on. My
recent firmware version has it in the menu at Config -> Version

On Mon, Jun 12, 2023, 2:35 PM Fred Moore <n40cla@...> wrote:

What is the sequence of menu selections to get to the display that talks
about version levels, and all the specifics of the nano. I have the
Nanovna-H4.

Thanks
Fred - N4CLA










Re: Menu

 

For early versions of firmware, that display comes up at power-on. My
recent firmware version has it in the menu at Config -> Version

On Mon, Jun 12, 2023, 2:35 PM Fred Moore <n40cla@...> wrote:

What is the sequence of menu selections to get to the display that talks
about version levels, and all the specifics of the nano. I have the
Nanovna-H4.

Thanks
Fred - N4CLA






Re: I'm new to this and need some extra info #beginners1 #applications

 

On 6/12/23 12:38 PM, Mike Anderson/KF?AWL via groups.io wrote:
Of all the stupid things.
NONE of the videos showed calibration on the end of the feed. They all did it right at the side of the vna! I finally happened on a video that did it at the end of the coax n NOW its acting like it should ? FINALLY getting a swr i can figure out after chasing how many different ghosts ?
One thing to remember is that you can calibrate over a range like 50kHz-50 MHz. You can then sweep a smaller range and as long as what you "calibrated out" isn't too weird, it interpolates.

So you can cal to 50 MHz, then sweep 25-35, get the antenna close, then set for 28-30 and really zoom in.