Emask

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIMit:EMASk:ABSolute
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIMit:EMASk:RELative
class Emask[source]

Emask commands group definition. 3 total commands, 1 Sub-groups, 2 group commands

class AbsoluteStruct[source]

Structure for reading output parameters. Fields:

  • Limit_G_3_M_84: float or bool: numeric | ON | OFF Absolute limit line G referenced to a 3.84 MHz filter Range: -80 dBm to 33 dBm, Unit: dBm Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Limit_H_1_Mhz: float or bool: numeric | ON | OFF Absolute limit line H referenced to a 1 MHz or 100 kHz filter, depending on the line H mode Range: -80 dBm to 33 dBm, Unit: dBm Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Limit_H_30_Khz: float or bool: numeric | ON | OFF Absolute limit line H referenced to a 30 kHz filter Range: -80 dBm to 33 dBm Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Limit_Hmode: enums.LimitHmode: A | B | C Line H mode

class RelativeStruct[source]

Structure for reading output parameters. Fields:

  • Point_A: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Point_B: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Point_C: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Point_D: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Point_E: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

  • Point_F: float or bool: numeric | ON | OFF Range: -90 dB to 0 dB, Unit: dB Additional OFF | ON disables/enables the limit check using the previous/default limit values

get_absolute()AbsoluteStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:EMASk:ABSolute
value: AbsoluteStruct = driver.configure.multiEval.limit.emask.get_absolute()

Defines absolute limits for the spectrum emission curves.

return

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

get_relative()RelativeStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:EMASk:RELative
value: RelativeStruct = driver.configure.multiEval.limit.emask.get_relative()

Defines relative limits for the spectrum emission curves.

return

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

set_absolute(value: RsCmwWcdmaMeas.Implementations.Configure_.MultiEval_.Limit_.Emask.Emask.AbsoluteStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:EMASk:ABSolute
driver.configure.multiEval.limit.emask.set_absolute(value = AbsoluteStruct())

Defines absolute limits for the spectrum emission curves.

param value

see the help for AbsoluteStruct structure arguments.

set_relative(value: RsCmwWcdmaMeas.Implementations.Configure_.MultiEval_.Limit_.Emask.Emask.RelativeStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:EMASk:RELative
driver.configure.multiEval.limit.emask.set_relative(value = RelativeStruct())

Defines relative limits for the spectrum emission curves.

param value

see the help for RelativeStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.limit.emask.clone()

Subgroups