01-07-2010 06:28 PM
01-07-2010 08:05 PM
I am not familiar with that particular Spectrum Analyzer. Can you do a Phase Noise measurement directly on the SA? Or do you need a special sw module installed?
If it can be done directly, there should be some commands listed in the Programmer's guide for the instrument.
01-08-2010 10:52 AM
Thank you
Steve
01-08-2010 11:55 AM
I understand what you are saying.
You will not likely find the Phase Noise measurement software on this forum, because someone has to develop the code within their own company to do it and likely signed an NDA which prevents them from sharing the code.
What I am trying to say is that there should be some instructions in the User Manual or better yet, the Programmer's Guide. From these instructions, you can create your own driver. The first thing I needed to know is if the SA is able to carry out Phase Noise measurements. Some older models required an additional software to do so and did not support external code. With newer models, they probably included the feature in order to remain competitive with other SA manufacturer's.
If you can find the instructions, we can also help you create your own driver.
01-08-2010 12:25 PM
This will measure a DEGREE
Thank you
Steve
01-11-2010 07:09 AM - edited 01-11-2010 07:19 AM
That's good. The Programmer's Guide probably has equiva;ent commands that can be used to write a driver. THe commands would look something like:
MOD: PHNOISE:something:something.
The other commands should appear in the existing drivers. Look in the Programmer's Guide and you should see the MODE command.
If I have time, I'll visit the Agilent Website and download the manual to see which commands are available. But you should be able to find it. Try to write the driver and post your code. We can help you with it.
01-11-2010 11:06 AM
01-12-2010 07:10 AM
Sure, I can help.
It may take some time because I do njot get a chance to visit the forum as often as I would like. I need to finish an example that I wanted to do yesterday and I will prepare your example, next. Hopefully some time this afternoon.
RayR
01-14-2010 08:00 AM
Since I do not have that instrument, you will have to "test" some of these commands.
You can do this using MAX (Measurement & Automation Explorer). Under Devices & Interfaces, select the appropriate GPIB interface (if that is what you are using) and open it. Click Open VISA Session and select Communicate with Instrument.
Try the following command to setup the Phase Noise Measurement for a wide frequency:
FREQ:SYNT 2
or you can set it to auto (may not be what you need)
FREQ:SYNT:AUTO ON
or better,... after setting the CF & BW, you can use a narrow measurement using this command:
FREQ:SYNT 1
If you wish to do an AC Power measurement as part of the Phase Noise, then the commands would have an ACP: prefic and look like this:
ACP:FREQ:SYNT:AUTO 1
You may need to setup the IF frequency before doing the measurement by using this command:
OUTP:AUX SIF
01-14-2010 12:23 PM
Hi Ray,
Thank you for helping me, I will create from your intrusion, will be back with you for next step.
Steve