Column

SCPI Command :

CALCulate<n>:HOPDetection:TABLe:COLumn
class ColumnCls[source]

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

class ColumnStruct[source]

Response structure. Fields:

  • State: bool: ON | OFF | 1 | 0 Enables or disables all subsequently listed headers ON | 1 Provides results for the defined Headers only OFF | 0 Provides results for all table parameters except the specified Headers.

  • Headers: List[enums.HopTableHeaders]: ALL | STATe | BEGin | DWELl | SWITching | STAFrequency | FREQuency | RELFrequency | FMERror | MAXFm | RMSFm | AVGFm | MINPower | MAXPower | AVGPower | PWRRipple | AVPHm | MXPHm | RMSPm | FMSPoint | FMSTime | FMSLength | PMSPoint | PMSTime | PMSLength All listed parameters are displayed or hidden in the table results (depending on the State parameter) . ALL See ‘Hop parameters’. STATe Hop state BEGin Hop Begin DWELl Hop dwell time SWITching Switching time STAFrequency State frequency (nominal) FREQuency Average frequency RELFrequency Relative frequency (hop-to-hop) FMERror Hop state deviation MAXFm Maximum frequency deviation RMSFm RMS frequency deviation AVGFm Average frequency deviation MINPower Minimum power MAXPower Maximum power AVGPower Average power PWRRipple Power ripple AVPHm Average phase deviation MXPHm Maximum phase deviation RMSPm RMS phase deviation FMSPoint FM settling point FMSTime FM settling time FMSLength FM settled length PMSPoint PM settling point PMSTime PM settling time PMSLength PM settled length

get(window=Window.Default) ColumnStruct[source]
# SCPI: CALCulate<n>:HOPDetection:TABLe:COLumn
value: ColumnStruct = driver.applications.k60Transient.calculate.hopDetection.table.column.get(window = repcap.Window.Default)

Enables or disables columns in all hop results and statistics tables. Note that only the enabled columns are returned for the method RsFsw.Applications.K60_Transient.Calculate.HopDetection.Table.Results.get_ query.

param window

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

return

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

set(state: bool, headers: Optional[List[RsFsw.enums.HopTableHeaders]] = None, window=Window.Default) None[source]
# SCPI: CALCulate<n>:HOPDetection:TABLe:COLumn
driver.applications.k60Transient.calculate.hopDetection.table.column.set(state = False, headers = [HopTableHeaders.ALL, HopTableHeaders.SWITching], window = repcap.Window.Default)

Enables or disables columns in all hop results and statistics tables. Note that only the enabled columns are returned for the method RsFsw.Applications.K60_Transient.Calculate.HopDetection.Table.Results.get_ query.

param state

ON | OFF | 1 | 0 Enables or disables all subsequently listed headers ON | 1 Provides results for the defined Headers only OFF | 0 Provides results for all table parameters except the specified Headers.

param headers

ALL | STATe | BEGin | DWELl | SWITching | STAFrequency | FREQuency | RELFrequency | FMERror | MAXFm | RMSFm | AVGFm | MINPower | MAXPower | AVGPower | PWRRipple | AVPHm | MXPHm | RMSPm | FMSPoint | FMSTime | FMSLength | PMSPoint | PMSTime | PMSLength All listed parameters are displayed or hidden in the table results (depending on the State parameter) . ALL See ‘Hop parameters’. STATe Hop state BEGin Hop Begin DWELl Hop dwell time SWITching Switching time STAFrequency State frequency (nominal) FREQuency Average frequency RELFrequency Relative frequency (hop-to-hop) FMERror Hop state deviation MAXFm Maximum frequency deviation RMSFm RMS frequency deviation AVGFm Average frequency deviation MINPower Minimum power MAXPower Maximum power AVGPower Average power PWRRipple Power ripple AVPHm Average phase deviation MXPHm Maximum phase deviation RMSPm RMS phase deviation FMSPoint FM settling point FMSTime FM settling time FMSLength FM settled length PMSPoint PM settling point PMSTime PM settling time PMSLength PM settled length

param window

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