Limit

SCPI Command :

CALCulate<n>:TABLe:TSIDelobe:MFRequency:LIMit
Commands in total: 2
Subgroups: 1
Direct child commands: 1
class LimitStruct[source]

Response structure. Fields:

  • 1 Lower_Limit: float: Lower limit of the valid value range. Unit: S

  • 2 Upper_Limit: float: Upper limit of the valid value range. Unit: S

get(window=Window.Default) LimitStruct[source]
# CALCulate<n>:TABLe:TSIDelobe:MFRequency:LIMit
value: LimitStruct = driver.applications.k6Pulse.calculate.table.tsidelobe.mfrequency.limit.get(window = repcap.Window.Default)

Defines the valid value range for the limit check for the selected parameter if limit check is active (CALCulate<n>:TABLe:<ParameterGroup>:<Parameter>:LIMit:STATeON) . Commands for the parameter group <TSIDelobe> are only available if the additional option FSW-K6S is installed. For details on the individual parameters see ‘Pulse parameters’.

Parameters:

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

Returns:

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

set(lower_limit: float, upper_limit: float, window=Window.Default) None[source]
# CALCulate<n>:TABLe:TSIDelobe:MFRequency:LIMit
driver.applications.k6Pulse.calculate.table.tsidelobe.mfrequency.limit.set(lower_limit = 1.0, upper_limit = 1.0, window = repcap.Window.Default)

Defines the valid value range for the limit check for the selected parameter if limit check is active (CALCulate<n>:TABLe:<ParameterGroup>:<Parameter>:LIMit:STATeON) . Commands for the parameter group <TSIDelobe> are only available if the additional option FSW-K6S is installed. For details on the individual parameters see ‘Pulse parameters’.

Parameters:
  • lower_limit – Lower limit of the valid value range. Unit: S

  • upper_limit – Upper limit of the valid value range. Unit: S

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

Cloning the Group

# Create a copy of the original group, that exists independently
limit_copy = driver.applications.k6Pulse.calculate.table.tsidelobe.mfrequency.limit.clone()

Subgroups