Frequency

SCPI Commands :

[SOURce<HW>]:AWGN:FREQuency:RESult
[SOURce<HW>]:AWGN:FREQuency:TARGet
class FrequencyCls[source]

Frequency commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_result() float[source]
# SCPI: [SOURce<HW>]:AWGN:FREQuency:RESult
value: float = driver.source.awgn.frequency.get_result()

Queries the actual frequency of the sine wave.

return

result: float Range: -40E6 to 40E6

get_target() float[source]
# SCPI: [SOURce<HW>]:AWGN:FREQuency:TARGet
value: float = driver.source.awgn.frequency.get_target()

Sets the desired frequency of the sine wave.

return

target: float Range: -40E6 to 40E6

set_target(target: float) None[source]
# SCPI: [SOURce<HW>]:AWGN:FREQuency:TARGet
driver.source.awgn.frequency.set_target(target = 1.0)

Sets the desired frequency of the sine wave.

param target

float Range: -40E6 to 40E6

Cloning the Group

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

Subgroups