Fsimulator

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:ENABle
CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:STANdard
class Fsimulator[source]

Fsimulator commands group definition. 11 total commands, 4 Sub-groups, 2 group commands

get_enable()bool[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:ENABle
value: bool = driver.configure.fading.fsimulator.get_enable()

Enables or disables the fading simulator.

return

enable: OFF | ON

get_standard()RsCmwGsmSig.enums.FadingStandard[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:STANdard
value: enums.FadingStandard = driver.configure.fading.fsimulator.get_standard()

Selects one of the multipath propagation condition profiles defined in annex C.3 of 3GPP TS 45.005.

return

standard: TI5 | T1P5 | T3 | T3P6 | T6 | T50 | T60 | T100 | H100 | H120 | H200 | R130 | R250 | R300 | R500 | E50 | E60 | E100 | T25 | TU1P5 | TU3 | TU25 | TU50 | HT100 The letter indicates the type of the model as follows: TI: TI (2 path) T: TUx (6 path) H: HTx (6 path) R: RAx (6 path) E: EQx (6 path) TU: TUx (12 path) HT: HTx (12 path) The number indicates the speed of the mobile in km/h. Example: HT100 means 100 km/h, T1P5 means 1.5 km/h.

set_enable(enable: bool)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:ENABle
driver.configure.fading.fsimulator.set_enable(enable = False)

Enables or disables the fading simulator.

param enable

OFF | ON

set_standard(standard: RsCmwGsmSig.enums.FadingStandard)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:FADing:FSIMulator:STANdard
driver.configure.fading.fsimulator.set_standard(standard = enums.FadingStandard.E100)

Selects one of the multipath propagation condition profiles defined in annex C.3 of 3GPP TS 45.005.

param standard

TI5 | T1P5 | T3 | T3P6 | T6 | T50 | T60 | T100 | H100 | H120 | H200 | R130 | R250 | R300 | R500 | E50 | E60 | E100 | T25 | TU1P5 | TU3 | TU25 | TU50 | HT100 The letter indicates the type of the model as follows: TI: TI (2 path) T: TUx (6 path) H: HTx (6 path) R: RAx (6 path) E: EQx (6 path) TU: TUx (12 path) HT: HTx (12 path) The number indicates the speed of the mobile in km/h. Example: HT100 means 100 km/h, T1P5 means 1.5 km/h.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.fading.fsimulator.clone()

Subgroups