Frequency
SCPI Commands :
[SOURce<HW>]:AWGN:FREQuency:RESult
[SOURce<HW>]:AWGN:FREQuency:TARGet
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_result() float[source]
# [SOURce<HW>]:AWGN:FREQuency:RESult value: float = driver.source.awgn.frequency.get_result()
Queries the actual frequency of the sine wave.
- Returns:
result: float Range: -40E6 to 40E6
- get_target() float[source]
# [SOURce<HW>]:AWGN:FREQuency:TARGet value: float = driver.source.awgn.frequency.get_target()
Sets the desired frequency of the sine wave.
- Returns:
target: float Range: -40E6 to 40E6
- set_target(target: float) None[source]
# [SOURce<HW>]:AWGN:FREQuency:TARGet driver.source.awgn.frequency.set_target(target = 1.0)
Sets the desired frequency of the sine wave.
- Parameters:
target – float Range: -40E6 to 40E6
Cloning the Group
# Create a copy of the original group, that exists independently
frequency_copy = driver.source.awgn.frequency.clone()
Subgroups