Power
SCPI Commands :
[SOURce<HW>]:CORRection:CSET:DATA:POWer:POINts
[SOURce<HW>]:CORRection:CSET:DATA:POWer
- class PowerCls[source]
Power commands group definition. 3 total commands, 1 Subgroups, 2 group commands
- get_points() int [source]
# SCPI: [SOURce<HW>]:CORRection:CSET:DATA:POWer:POINts value: int = driver.source.correction.cset.data.power.get_points()
Queries the number of frequency/level values in the selected table.
- return:
points: integer Range: 0 to 10000
- get_value() List[float] [source]
# SCPI: [SOURce<HW>]:CORRection:CSET:DATA:POWer value: List[float] = driver.source.correction.cset.data.power.get_value()
Enters the level values to the table selected with [:SOURce<hw>]:CORRection:CSET[:SELect].
- return:
power: Power#1[, Power#2, …] String of values with default unit dB. *RST: 0
- set_value(power: List[float]) None [source]
# SCPI: [SOURce<HW>]:CORRection:CSET:DATA:POWer driver.source.correction.cset.data.power.set_value(power = [1.1, 2.2, 3.3])
Enters the level values to the table selected with [:SOURce<hw>]:CORRection:CSET[:SELect].
- param power:
Power#1[, Power#2, …] String of values with default unit dB. *RST: 0
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.correction.cset.data.power.clone()
Subgroups