Limit

SCPI Command :

CALCulate<n>:TABLe:POWer:OVERshoot[:PERCent]:LIMit
class LimitCls[source]

Limit commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class LimitStruct[source]

Response structure. Fields:

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

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

get(window=Window.Default) LimitStruct[source]
# SCPI: CALCulate<n>:TABLe:POWer:OVERshoot[:PERCent]:LIMit
value: LimitStruct = driver.applications.k6Pulse.calculate.table.power.overshoot.percent.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’.

param window

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

return

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

set(lower_limit: float, upper_limit: float, window=Window.Default) None[source]
# SCPI: CALCulate<n>:TABLe:POWer:OVERshoot[:PERCent]:LIMit
driver.applications.k6Pulse.calculate.table.power.overshoot.percent.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’.

param lower_limit

Lower limit of the valid value range. Unit: S

param upper_limit

Upper limit of the valid value range. Unit: S

param window

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.applications.k6Pulse.calculate.table.power.overshoot.percent.limit.clone()

Subgroups