Fsimulator

SCPI Commands

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

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

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

Enables/disables the fading simulator.

return

enable: OFF | ON

get_kconstant()RsCmwCdma2kSig.enums.KeepConstant[source]
# SCPI: CONFigure:CDMA: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()RsCmwCdma2kSig.enums.FadingSimStandard[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:FADing:FSIMulator:STANdard
value: enums.FadingSimStandard = driver.configure.fading.fsimulator.get_standard()

Selects one of the propagation conditions defined in the table 6.4.1.3-1 of 3GPP2 C.S0011.

return

standard: P1 | P2 | P3 | P4 | P5 | P6 CDMA1 to CDMA6 P1: Two paths, speed 8 km/h P2: Two paths, speed 30 km/h, exception: 14 km/h for band group 1900 P3: One path, speed 30 km/h P4: Three paths, speed 100 km/h P5: Two paths, speed 0 km/h P6: One path, speed 3 km/h

set_enable(enable: bool)None[source]
# SCPI: CONFigure:CDMA: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: RsCmwCdma2kSig.enums.KeepConstant)None[source]
# SCPI: CONFigure:CDMA: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: RsCmwCdma2kSig.enums.FadingSimStandard)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:FADing:FSIMulator:STANdard
driver.configure.fading.fsimulator.set_standard(standard = enums.FadingSimStandard.P1)

Selects one of the propagation conditions defined in the table 6.4.1.3-1 of 3GPP2 C.S0011.

param standard

P1 | P2 | P3 | P4 | P5 | P6 CDMA1 to CDMA6 P1: Two paths, speed 8 km/h P2: Two paths, speed 30 km/h, exception: 14 km/h for band group 1900 P3: One path, speed 30 km/h P4: Three paths, speed 100 km/h P5: Two paths, speed 0 km/h P6: One path, speed 3 km/h

Cloning the Group

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

Subgroups