Linear

SCPI Commands :

POWer:SOA:LINear:INSert
POWer:SOA:LINear:REMove
POWer:SOA:LINear:COUNt
Commands in total: 6
Subgroups: 2
Direct child commands: 3
get_count() int[source]
# POWer:SOA:LINear:COUNt
value: int = driver.power.soa.linear.get_count()

Queries the number of points.

set_insert(gate_index: int) None[source]
# POWer:SOA:LINear:INSert
driver.power.soa.linear.set_insert(gate_index = 1)

Inserts a point.

set_remove(gate_index: int) None[source]
# POWer:SOA:LINear:REMove
driver.power.soa.linear.set_remove(gate_index = 1)

Removes a point.

Cloning the Group

# Create a copy of the original group, that exists independently
linear_copy = driver.power.soa.linear.clone()

Subgroups