Correction

SCPI Commands :

[SOURce<HW>]:CORRection:VALue
[SOURce<HW>]:CORRection:[STATe]
Commands in total: 86
Subgroups: 6
Direct child commands: 2
get_state() bool[source]
# [SOURce<HW>]:CORRection:[STATe]
value: bool = driver.source.correction.get_state()

Activates user correction with the currently selected table.

Returns:

state: 1 | ON | 0| OFF

get_value() float[source]
# [SOURce<HW>]:CORRection:VALue
value: float = driver.source.correction.get_value()

Queries the current value for user correction.

Returns:

value: float Range: -100 to 100

set_state(state: bool) None[source]
# [SOURce<HW>]:CORRection:[STATe]
driver.source.correction.set_state(state = False)

Activates user correction with the currently selected table.

Parameters:

state – 1 | ON | 0| OFF

Cloning the Group

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

Subgroups