Target

SCPI Commands :

SEQuence:ITEM:IPM:TARGet:PARameter
SEQuence:ITEM:IPM:TARGet:TYPE
SEQuence:ITEM:IPM:TARGet:VARiable
class TargetCls[source]

Target commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_parameter() TargetParam[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:PARameter
value: enums.TargetParam = driver.sequence.item.ipm.target.get_parameter()

Sets the pulse parameter to that the IPM variation is assigned.

return:

parameter: LEVel| RLEVel| SRATe| FREQuency| PRI| WIDTh| FALL| AMFRequency| FMDeviation| DELay| FSKDeviation| PRF| FMFRequency| CDEViation| PHASe| RISE| AMDepth | DROop| RFRequency| OVERshoot

get_type_py() TargetType[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:TYPE
value: enums.TargetType = driver.sequence.item.ipm.target.get_type_py()

Sets whether the profile is assigned to a parameter or to a variable.

return:

type_py: PARameter| VARiable

get_variable() str[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:VARiable
value: str = driver.sequence.item.ipm.target.get_variable()

Sets the variable to that the variation is assigned.

return:

variable: string

set_parameter(parameter: TargetParam) None[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:PARameter
driver.sequence.item.ipm.target.set_parameter(parameter = enums.TargetParam.AMDepth)

Sets the pulse parameter to that the IPM variation is assigned.

param parameter:

LEVel| RLEVel| SRATe| FREQuency| PRI| WIDTh| FALL| AMFRequency| FMDeviation| DELay| FSKDeviation| PRF| FMFRequency| CDEViation| PHASe| RISE| AMDepth | DROop| RFRequency| OVERshoot

set_type_py(type_py: TargetType) None[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:TYPE
driver.sequence.item.ipm.target.set_type_py(type_py = enums.TargetType.PARameter)

Sets whether the profile is assigned to a parameter or to a variable.

param type_py:

PARameter| VARiable

set_variable(variable: str) None[source]
# SCPI: SEQuence:ITEM:IPM:TARGet:VARiable
driver.sequence.item.ipm.target.set_variable(variable = 'abc')

Sets the variable to that the variation is assigned.

param variable:

string