Dumd
SCPI Commands :
[SOURce<HW>]:BB:EUTRa:DL:DUMD:DATA
[SOURce<HW>]:BB:EUTRa:DL:DUMD:DSELect
[SOURce<HW>]:BB:EUTRa:DL:DUMD:MODulation
[SOURce<HW>]:BB:EUTRa:DL:DUMD:OPSubframes
[SOURce<HW>]:BB:EUTRa:DL:DUMD:POWer
- class DumdCls[source]
Dumd commands group definition. 6 total commands, 1 Subgroups, 5 group commands
- get_data() RsSmbv.enums.DataSourceA [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:DATA value: enums.DataSourceA = driver.source.bb.eutra.downlink.dumd.get_data()
Selects the data source for dummy data.
- return
data: PN9| PN11| PN15| PN16| PN20| PN21| PN23| PATTern| DLISt| ZERO| ONE
- get_dselect() str [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:DSELect value: str = driver.source.bb.eutra.downlink.dumd.get_dselect()
Selects an existing data list file from the default directory or from the specific directory. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- return
filename: string Filename incl. file extension or complete file path
- get_modulation() RsSmbv.enums.ModulationD [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:MODulation value: enums.ModulationD = driver.source.bb.eutra.downlink.dumd.get_modulation()
Selects modulation for dummy data.
- return
modulation: QPSK| QAM16| QAM64 | QAM256 | QAM1024
- get_op_sub_frames() bool [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:OPSubframes value: bool = driver.source.bb.eutra.downlink.dumd.get_op_sub_frames()
If the OCNG is used, you can disable (omit) the OCNG transmission in the non-muted PRS subframes.
- return
omit_prs_sf: 1| ON| 0| OFF
- get_power() float [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:POWer value: float = driver.source.bb.eutra.downlink.dumd.get_power()
Sets the power for dummy data.
- return
power: float Range: -80 to 10
- set_data(data: RsSmbv.enums.DataSourceA) None [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:DATA driver.source.bb.eutra.downlink.dumd.set_data(data = enums.DataSourceA.DLISt)
Selects the data source for dummy data.
- param data
PN9| PN11| PN15| PN16| PN20| PN21| PN23| PATTern| DLISt| ZERO| ONE
- set_dselect(filename: str) None [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:DSELect driver.source.bb.eutra.downlink.dumd.set_dselect(filename = 'abc')
Selects an existing data list file from the default directory or from the specific directory. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- param filename
string Filename incl. file extension or complete file path
- set_modulation(modulation: RsSmbv.enums.ModulationD) None [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:MODulation driver.source.bb.eutra.downlink.dumd.set_modulation(modulation = enums.ModulationD.QAM1024)
Selects modulation for dummy data.
- param modulation
QPSK| QAM16| QAM64 | QAM256 | QAM1024
- set_op_sub_frames(omit_prs_sf: bool) None [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:OPSubframes driver.source.bb.eutra.downlink.dumd.set_op_sub_frames(omit_prs_sf = False)
If the OCNG is used, you can disable (omit) the OCNG transmission in the non-muted PRS subframes.
- param omit_prs_sf
1| ON| 0| OFF
- set_power(power: float) None [source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:DUMD:POWer driver.source.bb.eutra.downlink.dumd.set_power(power = 1.0)
Sets the power for dummy data.
- param power
float Range: -80 to 10
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.eutra.downlink.dumd.clone()
Subgroups