Fsimulator

SCPI Commands

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

Fsimulator commands group definition. 9 total commands, 3 Sub-groups, 3 group commands

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

Enables/disables the fading simulator.

return

enable: OFF | ON

get_kconstant()RsCmwEvdoSig.enums.KeepConstant[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:KCONstant
value: enums.KeepConstant = driver.configure.fading.fsimulator.get_kconstant()

No command help available

return

keep_constant: No help available

get_standard()RsCmwEvdoSig.enums.FsimStandard[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:STANdard
value: enums.FsimStandard = driver.configure.fading.fsimulator.get_standard()

Selects one of the propagation conditions defined in the table 6.4.1-1 of 3GPP2 C.S0032.

return

standard: P1 | P2 | P3 | P4 | P5 EVDO1 to EVDO5 P1: Two paths, speed 15 km/h (band classes 5, 11) , 8 km/h (other band classes) P2: One path, speed 3 km/h, exception: 6 km/h for band classes 5, 11 P3: One path, speed 30 km/h, exception: 58 km/h for band classes 5, 11 P4: Three paths, speed 100 km/h, exception: 192 km/h for band classes 5, 11 P5: Two paths, speed 0 km/h

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

Enables/disables the fading simulator.

param enable

OFF | ON

set_kconstant(keep_constant: RsCmwEvdoSig.enums.KeepConstant)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:KCONstant
driver.configure.fading.fsimulator.set_kconstant(keep_constant = enums.KeepConstant.DSHift)

No command help available

param keep_constant

No help available

set_standard(standard: RsCmwEvdoSig.enums.FsimStandard)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:STANdard
driver.configure.fading.fsimulator.set_standard(standard = enums.FsimStandard.P1)

Selects one of the propagation conditions defined in the table 6.4.1-1 of 3GPP2 C.S0032.

param standard

P1 | P2 | P3 | P4 | P5 EVDO1 to EVDO5 P1: Two paths, speed 15 km/h (band classes 5, 11) , 8 km/h (other band classes) P2: One path, speed 3 km/h, exception: 6 km/h for band classes 5, 11 P3: One path, speed 30 km/h, exception: 58 km/h for band classes 5, 11 P4: Three paths, speed 100 km/h, exception: 192 km/h for band classes 5, 11 P5: Two paths, speed 0 km/h

Cloning the Group

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

Subgroups