Iloss

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:MODE
CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:LOSS
class IlossCls[source]

Iloss commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_loss() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:LOSS
value: float = driver.configure.fading.pcc.fadingSimulator.iloss.get_loss()

Sets the insertion loss for the fading simulator. A setting is only allowed in USER mode (see CONFigure:… :FSIMulator:ILOSs:MODE) .

return:

insertion_loss: numeric Range: 0 dB to 30 dB, Unit: dB

get_mode() InsertLossMode[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:MODE
value: enums.InsertLossMode = driver.configure.fading.pcc.fadingSimulator.iloss.get_mode()

Sets the insertion loss mode.

return:

insert_loss_mode: NORMal | USER NORMal: The insertion loss is determined by the fading profile. USER: The insertion loss is configurable.

set_loss(insertion_loss: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:LOSS
driver.configure.fading.pcc.fadingSimulator.iloss.set_loss(insertion_loss = 1.0)

Sets the insertion loss for the fading simulator. A setting is only allowed in USER mode (see CONFigure:… :FSIMulator:ILOSs:MODE) .

param insertion_loss:

numeric Range: 0 dB to 30 dB, Unit: dB

set_mode(insert_loss_mode: InsertLossMode) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:FSIMulator:ILOSs:MODE
driver.configure.fading.pcc.fadingSimulator.iloss.set_mode(insert_loss_mode = enums.InsertLossMode.LACP)

Sets the insertion loss mode.

param insert_loss_mode:

NORMal | USER NORMal: The insertion loss is determined by the fading profile. USER: The insertion loss is configurable.