Build FM NRSC masks for SIGLENT SSA3000X/SVA1015Xs using a Python script addition
February 12, 2020
Many broadcast applications require monitoring a transmitter and observing the output amplitude vs. frequency. For FM radio applications, a common mask is defined by the National Radio Systems Committee (NRSC) and is commonly referred to as the FM NRSC mask. A very helpful SIGLENT owner, Dan from Alabama Broadcast Services, LLC, built an FM NRSC Mask … Continued
Programming Example: SSA/SVA analyzer screen image capture using Python over LAN
January 14, 2020
Here is a brief code example written in Python 3.4 that uses a socket to pull a display image (screenshot) from a SIGLENT SSA/SVA analyzer via LAN and save it to the local drive of the controlling computer. NOTE: This program saves the picture/display image file in the same directory that the .py file is … Continued
Programming Example: Return Peak Table Data with an SSA3000X Spectrum Analyzer
January 14, 2020
The SIGLENT SSA3000X series of spectrum analyzers have an on-screen peak detection that can be used to easily show the peak values in a Configure the instrument span, RBW, and amplitude to capture the signals of interest Send “:CALC:MARK:PEAK:TABL ON” Send “:CALC:PEAK:TABL? “ to return the peak table data Here, we show the displayed peak table and … Continued
Programming Example: Identification String (*IDN?) return with LabVIEW 2018
December 16, 2019
This LabVIEW VI (version 2018) provides a simple platform to begin creating LabVIEW programs. You can download the VI here: VISA_IDN.ZIP In this example, the user can: Select the connected instruments from the VISA Resource List drop down menu: NOTE: USB devices will automatically appear. For LAN connections, you will need to add the device. … Continued
DIY Spectrum Analyzer Input Protection
May 22, 2019
Spectrum analyzers like the SIGLENT SSA3000X and SVA1000X series are extremely useful instruments that can provide invaluable insight into broadcast signal performance, transmitter troubleshooting, and interference as well as RF device characterization and EMC testing. But, like other spectrum analyzers, they are very sensitive and can be damaged easily, if the proper precautions are not … Continued
Secure products without K-lock slots
May 20, 2019
Many products have Kensington, or K-lock slots to help provide a location to secure a cable lock or other device to help prevent theft. Some products do not have locations for cable lock connections. In this case, we recommend using a special glue or physical attachment system to secure the cable to the case of … Continued
Programming Example: Using VXI11 (LXI) and Python for LAN control without sockets
October 3, 2018
In an effort to meet the demands of remote monitoring and control, modern test instrumentation is leveraging more communications busses and than ever before. Each type of bus can also have numerous layers that can be utilized for specific advantages. The VXI bus and subsequent software drivers form a convenient software API that can make remote control … Continued
Immunity testing with a Tekbox TEM cell
September 27, 2018
Tekbox put together a nice application note on immunity testing using a TEM cell and a SIGLENT SSA3000X spectrum analyzer. TEM cells are specialized hardware enclosures that can provide high electric fields and also do offer some shielding from environmental RF. If you are having immunity issues, this note may provide some helpful information and guidance. … Continued
Attenuator verification using a spectrum analyzer with a tracking generator
September 7, 2018
Attenuators are elements of an electrical circuit that are used to decrease the amount of power delivered to the next stage of the circuit. An ideal attenuator would have a flat frequency response, that is, it would decrease the amplitude of all input signals equally, regardless of the frequency. In this note, we are going to … Continued
Programming Example: List connected VISA compatible resources using PyVISA
August 30, 2018
PyVISA is a software library that enables Python applications to communicate with resources (typically instruments) connected to a controlling computer using different buses, including: GPIB, RS-232, LAN, and USB. This example scans and lists the available resources. It requires PyVISA to be installed (see the PyVISA documentation for more information) *** ***** Here is the … Continued