Analog

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:[ANALog]:MODE
[SOURce<HW>]:IQ:OUTPut:[ANALog]:PRESet
[SOURce<HW>]:IQ:OUTPut:[ANALog]:TYPE
class AnalogCls[source]

Analog commands group definition. 59 total commands, 4 Subgroups, 3 group commands

get_mode() IqOutMode[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:MODE
value: enums.IqOutMode = driver.source.iq.output.analog.get_mode()

No command help available

return:

mode: No help available

get_type_py() IqOutType[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:TYPE
value: enums.IqOutType = driver.source.iq.output.analog.get_type_py()

No command help available

return:

type_py: No help available

preset() None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:PRESet
driver.source.iq.output.analog.preset()

No command help available

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:PRESet
driver.source.iq.output.analog.preset_with_opc()

No command help available

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

param opc_timeout_ms:

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

set_mode(mode: IqOutMode) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:MODE
driver.source.iq.output.analog.set_mode(mode = enums.IqOutMode.FIXed)

No command help available

param mode:

No help available

set_type_py(type_py: IqOutType) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:[ANALog]:TYPE
driver.source.iq.output.analog.set_type_py(type_py = enums.IqOutType.DIFFerential)

No command help available

param type_py:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.iq.output.analog.clone()

Subgroups