Depth

SCPI Commands :

[SOURce<HW>]:AM:DEPTh:SUM
[SOURce<HW>]:AM<CH>:[DEPTh]
class DepthCls[source]

Depth commands group definition. 4 total commands, 2 Subgroups, 2 group commands

get(generatorIx=GeneratorIx.Default) float[source]
# SCPI: [SOURce<HW>]:AM<CH>:[DEPTh]
value: float = driver.source.am.depth.get(generatorIx = repcap.GeneratorIx.Default)

Sets the depth of the amplitude modulation in percent.

param generatorIx:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Am’)

return:

depth: float Range: 0 to 100

get_sum() float[source]
# SCPI: [SOURce<HW>]:AM:DEPTh:SUM
value: float = driver.source.am.depth.get_sum()

Sets the total depth of the LF signal when using combined signal sources in amplitude modulation.

return:

am_depth_sum: float Range: 0 to 100

set(depth: float, generatorIx=GeneratorIx.Default) None[source]
# SCPI: [SOURce<HW>]:AM<CH>:[DEPTh]
driver.source.am.depth.set(depth = 1.0, generatorIx = repcap.GeneratorIx.Default)

Sets the depth of the amplitude modulation in percent.

param depth:

float Range: 0 to 100

param generatorIx:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Am’)

set_sum(am_depth_sum: float) None[source]
# SCPI: [SOURce<HW>]:AM:DEPTh:SUM
driver.source.am.depth.set_sum(am_depth_sum = 1.0)

Sets the total depth of the LF signal when using combined signal sources in amplitude modulation.

param am_depth_sum:

float Range: 0 to 100

Cloning the Group

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

Subgroups