FilterPy

SCPI Commands :

[SOURce<HW>]:BB:EUTRa:FILTer:AUTO
[SOURce<HW>]:BB:EUTRa:FILTer:MODE
[SOURce<HW>]:BB:EUTRa:FILTer:TYPE
class FilterPyCls[source]

FilterPy commands group definition. 17 total commands, 1 Subgroups, 3 group commands

get_auto() bool[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:FILTer:AUTO
value: bool = driver.source.bb.eutra.filterPy.get_auto()

Queries if the internal (‘Auto’) filter is applied. This filter is selected automatically, if carrier aggregation with carriers that span different bandwidths is used.

return

auto: 1| ON| 0| OFF

get_mode() RsSmbv.enums.EutraFiltOptMode[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:FILTer:MODE
value: enums.EutraFiltOptMode = driver.source.bb.eutra.filterPy.get_mode()

Selects an offline or real-time filter mode.

return

opt_mode: RTime| OFFLine

get_type_py() RsSmbv.enums.DmFilterEutra[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:FILTer:TYPE
value: enums.DmFilterEutra = driver.source.bb.eutra.filterPy.get_type_py()

Selects the baseband filter type.

return

type_py: RCOSine| COSine| GAUSs| LGAuss| CONE| COF705| COEQualizer| COFequalizer| C2K3x| RECTangle| PGAuss| LPASs| DIRac| ENPShape| EWPShape| LTEFilter| LPASSEVM| SPHase| APCO25| USER

set_mode(opt_mode: RsSmbv.enums.EutraFiltOptMode) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:FILTer:MODE
driver.source.bb.eutra.filterPy.set_mode(opt_mode = enums.EutraFiltOptMode.OFFLine)

Selects an offline or real-time filter mode.

param opt_mode

RTime| OFFLine

set_type_py(type_py: RsSmbv.enums.DmFilterEutra) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:FILTer:TYPE
driver.source.bb.eutra.filterPy.set_type_py(type_py = enums.DmFilterEutra.APCO25)

Selects the baseband filter type.

param type_py

RCOSine| COSine| GAUSs| LGAuss| CONE| COF705| COEQualizer| COFequalizer| C2K3x| RECTangle| PGAuss| LPASs| DIRac| ENPShape| EWPShape| LTEFilter| LPASSEVM| SPHase| APCO25| USER

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.eutra.filterPy.clone()

Subgroups