Hi,
> 1. Is there some sort of documentation? or can anyone tell me the basic idea on how to do the measurements?
Take a look at 10_Power_Example_1.85mm(f-m).
> I assume I have to do a power calibration with a reference sensor and after that I measure the DUT, right?
Yes
> 2. I seem to have a problem connecting to my R&S NRP-Z51 and Z-21.
The are several problems here:
- But there is still another problem. The IVI.VISA GlobalResourcManager.Open method is not calling the constructor of the NRP-NI-VISA Passport, because the case with resource names starting with RSNRP:: is not implemented by the IVI foundation. And I want to use the IVI.VISA interface that I'm able to run VNA Tools either with NI VISA, R&S VISA or Keysight IO Lib.
Details (the comment lines are not working):
var d1 = Ivi.Visa.GlobalResourceManager.Open("GPIB0::16::INSTR")
as Ivi.Visa.IMessageBasedSession;
d1.RawIO.Write("*IDN?");
var s1 = d1.RawIO.ReadString();
d1.Dispose();
//var d2 = Ivi.Visa.GlobalResourceManager.Open("RSNRP::0x0021::101433::INSTR",
AccessModes.ExclusiveLock, 1000) as Ivi.Visa.IMessageBasedSession;
//var rm2 = new NationalInstruments.Visa.ResourceManager();
//var d2 =
rm2.Open("RSNRP::0x0021::101433::INSTR",
AccessModes.ExclusiveLock, 1000) as Ivi.Visa.IMessageBasedSession;
NationalInstruments.VisaNS.MessageBasedSession
d2 = new
NationalInstruments.VisaNS.MessageBasedSession("RSNRP::0x0021::101433::INSTR");
d2.Write("*IDN?");
var s2 = d2.ReadString();
d2.Dispose();
- I don't want to add a reference to NationalInstruments.VisaNS in VNA Tools, just to Ivi.Visa. Therefor I don't support NRP sensors connect directly to the PC over USB. I only support them using a NRP2 or NRX base unit.
Regards
Michael