Data

SCPI Command :

CALCulate<n>:CHRDetection:STATes[:DATA]
class DataCls[source]

Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DataStruct[source]

Response structure. Fields:

  • Chirp_Rate: List[float]: numeric value Unit: Hz/us

  • Tolerance: List[float]: numeric value Tolerance above or below the nominal chirp rate. Unit: Hz/us

get(window=Window.Default) DataStruct[source]
# SCPI: CALCulate<n>:CHRDetection:STATes[:DATA]
value: DataStruct = driver.applications.k60Transient.calculate.chrDetection.states.data.get(window = repcap.Window.Default)

Sets and queries the chirp state detection table. It consists of a comma-separated list of value pairs, one for each possible chirp state. The parameters that can be set in the chirp state detection table depend on the chirp settings defined using method RsFsw.Applications.K60_Transient.Calculate.ChrDetection.States.Auto.set and the chirp detection mode defined using method RsFsw.Applications.K60_Transient.Calculate.ChrDetection.Detection.set:

Table Header:

  • Chirp Settings ‘Auto’ / Chirp Settings ‘Manual’

  • Chirp Detection ‘On’ / All parameters are set automatically. / Manual setting of:

  • Chirp Detection ‘Off’ / Manual setting of: / Manual setting of:

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)

return

structure: for return value, see the help for DataStruct structure arguments.

set(chirp_rate: Optional[List[float]] = None, tolerance: Optional[List[float]] = None, window=Window.Default) None[source]
# SCPI: CALCulate<n>:CHRDetection:STATes[:DATA]
driver.applications.k60Transient.calculate.chrDetection.states.data.set(chirp_rate = [1.1, 2.2, 3.3], tolerance = [1.1, 2.2, 3.3], window = repcap.Window.Default)

Sets and queries the chirp state detection table. It consists of a comma-separated list of value pairs, one for each possible chirp state. The parameters that can be set in the chirp state detection table depend on the chirp settings defined using method RsFsw.Applications.K60_Transient.Calculate.ChrDetection.States.Auto.set and the chirp detection mode defined using method RsFsw.Applications.K60_Transient.Calculate.ChrDetection.Detection.set:

Table Header:

  • Chirp Settings ‘Auto’ / Chirp Settings ‘Manual’

  • Chirp Detection ‘On’ / All parameters are set automatically. / Manual setting of:

  • Chirp Detection ‘Off’ / Manual setting of: / Manual setting of:

param chirp_rate

numeric value Unit: Hz/us

param tolerance

numeric value Tolerance above or below the nominal chirp rate. Unit: Hz/us

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)