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
Commands in total: 429
Subgroups: 6
Direct child commands: 6
copy_all() None[source]
# [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]
# [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.

Parameters:

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

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

Queries the supported MIMO configurations.

Returns:

mimo_capability: string

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

No help available

get_subset() FadMimoSubSet[source]
# [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 SMW200A.

Returns:

subset: SET2 | SET1 | ALL

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

Loads file with saved MIMO settings.

Parameters:

md_load – string

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

Saves the MIMO settings in a file.

Parameters:

md_store – string

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

No help available

set_subset(subset: FadMimoSubSet) None[source]
# [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 SMW200A.

Parameters:

subset – SET2 | SET1 | ALL

Cloning the Group

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

Subgroups