RsFsw API Structure
- class RsFsw(resource_name: str, id_query: bool = True, reset: bool = False, options: Optional[str] = None, direct_session: Optional[object] = None)[source]
9140 total commands, 24 Subgroups, 1 group commands
Initializes new RsFsw session.
- Parameter options tokens examples:
Simulate=True
- starts the session in simulation mode. Default:False
SelectVisa=socket
- uses no VISA implementation for socket connections - you do not need any VISA-C installationSelectVisa=rs
- forces usage of RohdeSchwarz VisaSelectVisa=ivi
- forces usage of National Instruments VisaQueryInstrumentStatus = False
- same asdriver.utilities.instrument_status_checking = False
. Default:True
WriteDelay = 20, ReadDelay = 5
- Introduces delay of 20ms before each write and 5ms before each read. Default:0ms
for bothOpcWaitMode = OpcQuery
- mode for all the opc-synchronised write/reads. Other modes: StbPolling, StbPollingSlow, StbPollingSuperSlow. Default:StbPolling
AddTermCharToWriteBinBLock = True
- Adds one additional LF to the end of the binary data (some instruments require that). Default:False
AssureWriteWithTermChar = True
- Makes sure each command/query is terminated with termination character. Default: Interface dependentTerminationCharacter = "\r"
- Sets the termination character for reading. Default:\n
(LineFeed or LF)DataChunkSize = 10E3
- Maximum size of one write/read segment. If transferred data is bigger, it is split to more segments. Default:1E6
bytesOpcTimeout = 10000
- same as driver.utilities.opc_timeout = 10000. Default:30000ms
VisaTimeout = 5000
- same as driver.utilities.visa_timeout = 5000. Default:10000ms
ViClearExeMode = Disabled
- viClear() execution mode. Default:execute_on_all
OpcQueryAfterWrite = True
- same as driver.utilities.opc_query_after_write = True. Default:False
StbInErrorCheck = False
- if true, the driver checks errors with *STB? If false, it uses SYST:ERR?. Default:True
ScpiQuotes = double'. - for SCPI commands, you can define how strings are quoted. With single or double quotes. Possible values: single | double | {char}. Default: ``single
LoggingMode = On
- Sets the logging status right from the start. Default:Off
LoggingName = 'MyDevice'
- Sets the name to represent the session in the log entries. Default:'resource_name'
LogToGlobalTarget = True
- Sets the logging target to the class-property previously set with RsFsw.set_global_logging_target() Default:False
LoggingToConsole = True
- Immediately starts logging to the console. Default: FalseLoggingToUdp = True
- Immediately starts logging to the UDP port. Default: FalseLoggingUdpPort = 49200
- UDP port to log to. Default: 49200
- Parameters
resource_name – VISA resource name, e.g. ‘TCPIP::192.168.2.1::INSTR’
id_query – if True, the instrument’s model name is verified against the models supported by the driver and eventually throws an exception.
reset – Resets the instrument (sends *RST command) and clears its status sybsystem.
options – string tokens alternating the driver settings.
direct_session – Another driver object or pyVisa object to reuse the session instead of opening a new session.
- abort() None [source]
# SCPI: ABORt driver.abort()
Aborts the measurement in the current channel and resets the trigger system. To prevent overlapping execution of the subsequent command before the measurement has been aborted successfully, use the *OPC? or *WAI command after method RsFsw. #Abort CMDLINKRESOLVED] and before the next command. For details on overlapping execution see . To abort a sequence of measurements by the Sequencer, use the [CMDLINKRESOLVED Initiate.Sequencer.abort command. Note on blocked remote control programs: If a sequential command cannot be completed, for example because a triggered sweep never receives a trigger, the remote control program will never finish and the remote channel to the FSW is blocked for further commands. In this case, you must interrupt processing on the remote channel first in order to abort the measurement. To do so, send a ‘Device Clear’ command from the control instrument to the FSW on a parallel channel to clear all currently active remote channels. Depending on the used interface and protocol, send the following commands:
Visa: viClear
GPIB: ibclr
RSIB: RSDLLibclr
Now you can send the [CMDLINKRESOLVED #Abort CMDLINKRESOLVED] command on the remote channel performing the measurement.
- abort_with_opc(opc_timeout_ms: int = - 1) None [source]
# SCPI: ABORt driver.abort_with_opc()
Aborts the measurement in the current channel and resets the trigger system. To prevent overlapping execution of the subsequent command before the measurement has been aborted successfully, use the *OPC? or *WAI command after method RsFsw. #Abort CMDLINKRESOLVED] and before the next command. For details on overlapping execution see . To abort a sequence of measurements by the Sequencer, use the [CMDLINKRESOLVED Initiate.Sequencer.abort command. Note on blocked remote control programs: If a sequential command cannot be completed, for example because a triggered sweep never receives a trigger, the remote control program will never finish and the remote channel to the FSW is blocked for further commands. In this case, you must interrupt processing on the remote channel first in order to abort the measurement. To do so, send a ‘Device Clear’ command from the control instrument to the FSW on a parallel channel to clear all currently active remote channels. Depending on the used interface and protocol, send the following commands:
Visa: viClear
GPIB: ibclr
RSIB: RSDLLibclr
Now you can send the [CMDLINKRESOLVED #Abort CMDLINKRESOLVED] command on the remote channel performing the measurement.
Same as abort, but waits for the operation to complete before continuing further. Use the RsFsw.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- static assert_minimum_version(min_version: str) None [source]
Asserts that the driver version fulfills the minimum required version you have entered. This way you make sure your installed driver is of the entered version or newer.
- classmethod clear_global_logging_relative_timestamp() None [source]
Clears the global relative timestamp. After this, all the instances using the global relative timestamp continue logging with the absolute timestamps.
- close() None [source]
Closes the active RsFsw session.
- classmethod from_existing_session(session: object, options: Optional[str] = None) RsFsw [source]
Creates a new RsFsw object with the entered ‘session’ reused.
- Parameters
session – can be another driver or a direct pyvisa session.
options – string tokens alternating the driver settings.
- classmethod get_global_logging_relative_timestamp() datetime.datetime [source]
Returns global common relative timestamp for log entries.
- classmethod get_global_logging_target()[source]
Returns global common target stream.
- get_session_handle() object [source]
Returns the underlying session handle.
- get_total_execution_time() datetime.timedelta [source]
Returns total time spent by the library on communicating with the instrument. This time is always shorter than get_total_time(), since it does not include gaps between the communication. You can reset this counter with reset_time_statistics().
- get_total_time() datetime.timedelta [source]
Returns total time spent by the library on communicating with the instrument. This time is always shorter than get_total_time(), since it does not include gaps between the communication. You can reset this counter with reset_time_statistics().
- static list_resources(expression: str = '?*::INSTR', visa_select: Optional[str] = None) List[str] [source]
- Finds all the resources defined by the expression
‘?*’ - matches all the available instruments
‘USB::?*’ - matches all the USB instruments
‘TCPIP::192?*’ - matches all the LAN instruments with the IP address starting with 192
- reset_time_statistics() None [source]
Resets all execution and total time counters. Affects the results of get_total_time() and get_total_execution_time()
- restore_all_repcaps_to_default() None [source]
Sets all the Group and Global repcaps to their initial values
- classmethod set_global_logging_relative_timestamp(timestamp: datetime.datetime) None [source]
Sets global common relative timestamp for log entries. To use it, call the following: io.utilities.logger.set_relative_timestamp_global()
- classmethod set_global_logging_relative_timestamp_now() None [source]
Sets global common relative timestamp for log entries to this moment. To use it, call the following: io.utilities.logger.set_relative_timestamp_global().
- classmethod set_global_logging_target(target) None [source]
Sets global common target stream that each instance can use. To use it, call the following: io.utilities.logger.set_logging_target_global(). If an instance uses global logging target, it automatically uses the global relative timestamp (if set). You can set the target to None to invalidate it.
Subgroups
- Applications
- IqAnalyzer
- K10x_Lte
- Calculate<Window>
- Calibration
- Configure
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Read
- Sense
- Status
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit
- K149_Uwb
- K14x_Nr5G
- Calculate<Window>
- Calibration
- Configure
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Read
- Sense
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit
- K17_Mcgd
- K18_AmplifierEt
- Calculate<Window>
- Calibration
- Configure
- Diagnostic
- Display
- Fetch<Window>
- Amam
- AmPm
- Apae
- BbPower
- Ddpd
- Dpd
- Icc
- Ivoltage
- Maccuracy
- Mdpd
- Pc
- Pcpa
- Power
- Pservoing
- Ptable
- Qvoltage
- Stable
- Sync
- Ttf
- Tts
- Vcc
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output
- Sense
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit
- K30_NoiseFigure
- Calculate<Window>
- Display
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Sense
- Source
- System
- Trace<Window>
- Trigger<TriggerPort>
- K40_PhaseNoise
- Calculate<Window>
- Configure
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Sense
- Trace<Window>
- TriggerInvoke
- K50_Spurious
- Calculate<Window>
- Calibration
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output
- Read
- Sense
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit
- K6_Pulse
- Auto
- Calculate<Window>
- Calibration
- Display
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Riq
- Sense
- System
- Trace<Window>
- Trigger
- Unit
- K60_Transient
- Calculate<Window>
- Ar
- ChrDetection
- DeltaMarker<DeltaMarker>
- Distribution
- HopDetection
- Marker<Marker>
- Msra
- Result
- Rtms
- Spectrogram
- Trace<Trace>
- Trend
- Unit
- Display
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Sense
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Calculate<Window>
- K7_AnalogDemod
- K70_Vsa
- Calculate<Window>
- Calibration
- Display
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output<OutputConnector>
- Sense
- Adjust
- Correction
- Ddemod
- Demod
- Frequency
- Iq
- Mixer
- Msra
- Probe<Probe>
- Rtms
- SwapIq
- Sweep
- Tcapture
- Status
- System
- Trace<Window>
- Trigger<TriggerPort>
- K91_Wlan
- Calculate<Window>
- Calibration
- Configure
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output
- Sense
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit
- K9x_11ad
- Calculate<Window>
- Calibration
- Configure
- Display
- Fetch
- FormatPy
- Initiate
- InputPy
- Layout
- MassMemory
- Output
- Read
- Sense
- System
- Trace<Window>
- Trigger
- Unit
- Calculate<Window>
- DeltaMarker<DeltaMarker>
- Dline<DisplayLine>
- Espectrum
- Feed
- Fline<FreqLine>
- FormatPy
- Iq
- Limit<LimitIx>
- Marker<Marker>
- Mask
- Math
- Msra
- Npratio
- PeakSearch
- Pline<PowerLine>
- Pmeter<PowerMeter>
- Rtms
- Spectrogram
- Statistics
- Threshold
- Tline<TimeLine>
- Unit
- Calibration
- Configure
- Diagnostic
- Display
- Fetch
- FormatPy
- HardCopy
- Initiate
- InputPy<InputIx>
- Instrument
- Layout
- MassMemory
- Output<OutputConnector>
- Read
- Sense
- Ademod
- Adjust
- Average
- Bandwidth
- Correction
- Ddemod
- Demod
- Espectrum<SubBlock>
- FilterPy<FilterPy>
- Frequency
- Iq
- ListPy
- Mixer
- Mpower
- Msra
- Npratio
- Pmeter<PowerMeter>
- Power
- Probe<Probe>
- Rlength
- Roscillator
- Rtms
- Sampling
- SwapIq
- Sweep
- SymbolRate
- Trace
- Window<Window>
- Source
- Status
- System
- Trace<Window>
- Trigger
- TriggerInvoke
- Unit