Mimo

SCPI Commands :

[SOURce<HW>]:FSIMulator:MIMO:CAPability
[SOURce<HW>]:FSIMulator:MIMO:COPY:ALL
[SOURce<HW>]:FSIMulator:MIMO:MDLoad
[SOURce<HW>]:FSIMulator:MIMO:MDSTore
[SOURce<HW>]:FSIMulator:MIMO:MPOWer
[SOURce<HW>]:FSIMulator:MIMO:SUBSet
class MimoCls[source]

Mimo commands group definition. 427 total commands, 6 Subgroups, 6 group commands

copy_all() None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:COPY:ALL
driver.source.fsimulator.mimo.copy_all()

Applies the matrix values of the current tap to all taps.

copy_all_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:COPY:ALL
driver.source.fsimulator.mimo.copy_all_with_opc()

Applies the matrix values of the current tap to all taps.

Same as copy_all, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

get_capability() str[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:CAPability
value: str = driver.source.fsimulator.mimo.get_capability()

Queries the supported MIMO configurations.

return

mimo_capability: string

get_mpower() float[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:MPOWer
value: float = driver.source.fsimulator.mimo.get_mpower()

No command help available

return

mpower: No help available

get_subset() RsSmw.enums.FadMimoSubSet[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:SUBSet
value: enums.FadMimoSubSet = driver.source.fsimulator.mimo.get_subset()

In 8x8 or 4x4 MIMO configuration with higher fading bandwidth, sets the subset of MIMO channels that is calculated by the particular R&S SMW.

return

subset: SET2| SET1 | ALL

set_md_load(md_load: str) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:MDLoad
driver.source.fsimulator.mimo.set_md_load(md_load = 'abc')

Loads file with saved MIMO settings.

param md_load

string

set_md_store(md_store: str) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:MDSTore
driver.source.fsimulator.mimo.set_md_store(md_store = 'abc')

Saves the MIMO settings in a file.

param md_store

string

set_mpower(mpower: float) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:MPOWer
driver.source.fsimulator.mimo.set_mpower(mpower = 1.0)

No command help available

param mpower

No help available

set_subset(subset: RsSmw.enums.FadMimoSubSet) None[source]
# SCPI: [SOURce<HW>]:FSIMulator:MIMO:SUBSet
driver.source.fsimulator.mimo.set_subset(subset = enums.FadMimoSubSet.ALL)

In 8x8 or 4x4 MIMO configuration with higher fading bandwidth, sets the subset of MIMO channels that is calculated by the particular R&S SMW.

param subset

SET2| SET1 | ALL

Cloning the Group

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

Subgroups