Copy

SCPI Commands :

[SOURce<HW>]:FSIMulator:COPY:DESTination
[SOURce<HW>]:FSIMulator:COPY:SOURce
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_destination() int[source]
# [SOURce<HW>]:FSIMulator:COPY:DESTination
value: int = driver.source.fsimulator.copy.get_destination()

Selects a group whose settings will be overwritten.

Returns:

destination: integer Range: 1 to 4 (Standard Delay) / 8 (Fine Delay)

get_source() int[source]
# [SOURce<HW>]:FSIMulator:COPY:SOURce
value: int = driver.source.fsimulator.copy.get_source()

Sets the group whose settings you want to copy from.

Returns:

source: integer Range: 1 to 8

set_destination(destination: int) None[source]
# [SOURce<HW>]:FSIMulator:COPY:DESTination
driver.source.fsimulator.copy.set_destination(destination = 1)

Selects a group whose settings will be overwritten.

Parameters:

destination – integer Range: 1 to 4 (Standard Delay) / 8 (Fine Delay)

set_source(source: int) None[source]
# [SOURce<HW>]:FSIMulator:COPY:SOURce
driver.source.fsimulator.copy.set_source(source = 1)

Sets the group whose settings you want to copy from.

Parameters:

source – integer Range: 1 to 8

Cloning the Group

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

Subgroups