Limit
SCPI Command :
CALCulate<n>:TABLe:POWer:ON:LIMit
- Commands in total: 2Subgroups: 1Direct 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:POWer:ON:LIMit value: LimitStruct = driver.applications.k6Pulse.calculate.table.power.on.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:POWer:ON:LIMit driver.applications.k6Pulse.calculate.table.power.on.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.power.on.limit.clone()
Subgroups