SymbolRate

SCPI Commands :

[SOURce]:IQ:OUTPut:DIGital:SRATe:MAX
[SOURce<HW>]:IQ:OUTPut:DIGital:SRATe:SOURce
[SOURce]:IQ:OUTPut:DIGital:SRATe:SUM
[SOURce<HW>]:IQ:OUTPut:DIGital:SRATe
class SymbolRateCls[source]

SymbolRate commands group definition. 6 total commands, 2 Subgroups, 4 group commands

get_max() int[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:SRATe:MAX
value: int = driver.source.iq.output.digital.symbolRate.get_max()

Queries the maximum supported sample rate.

return:

dig_iqhs_in_sr_max: integer Range: 400 to depends on options The maximum value depends on the connected receiving device. For more information, see data sheet.

get_source() BboutClocSour[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:SRATe:SOURce
value: enums.BboutClocSour = driver.source.iq.output.digital.symbolRate.get_source()

No command help available

return:

source: No help available

get_sum() int[source]
# SCPI: [SOURce]:IQ:OUTPut:DIGital:SRATe:SUM
value: int = driver.source.iq.output.digital.symbolRate.get_sum()

Queries the maximum supported sample rate.

return:

dig_iqhs_in_sr_sum: integer Range: 400 to depends on options The maximum value depends on the connected receiving device. For more information, see data sheet.

get_value() float[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:SRATe
value: float = driver.source.iq.output.digital.symbolRate.get_value()

Sets the sample rate of the digital I/Q output signal.

return:

srate: float Range: 400 to depends on options, Unit: Hz The maximum value depends on the connected receiving device. For more information, see data sheet.

set_source(source: BboutClocSour) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:SRATe:SOURce
driver.source.iq.output.digital.symbolRate.set_source(source = enums.BboutClocSour.DIN)

No command help available

param source:

No help available

set_value(srate: float) None[source]
# SCPI: [SOURce<HW>]:IQ:OUTPut:DIGital:SRATe
driver.source.iq.output.digital.symbolRate.set_value(srate = 1.0)

Sets the sample rate of the digital I/Q output signal.

param srate:

float Range: 400 to depends on options, Unit: Hz The maximum value depends on the connected receiving device. For more information, see data sheet.

Cloning the Group

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

Subgroups