Calibration

SCPI Commands :

[SOURce<HW>]:REGenerator:SIMulation:CALibration:CORRection
[SOURce<HW>]:REGenerator:SIMulation:CALibration:MODE
[SOURce<HW>]:REGenerator:SIMulation:CALibration:URANge
[SOURce<HW>]:REGenerator:SIMulation:CALibration:[STATe]
class CalibrationCls[source]

Calibration commands group definition. 5 total commands, 1 Subgroups, 4 group commands

get_correction() float[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:CORRection
value: float = driver.source.regenerator.simulation.calibration.get_correction()

Adds a correction to the automatically estimated system latency value.

return:

corr_value: float Range: -100 to 100

get_mode() RegSimCalibrationMode[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:MODE
value: enums.RegSimCalibrationMode = driver.source.regenerator.simulation.calibration.get_mode()

Sets how the system latency is estimated.

return:

cal_mode: MANual| AUTomatic AUTomatic mode can be used only if a R&S FSW is connected to the R&S SMW200A.

get_state() RegSimCalibrationState[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:[STATe]
value: enums.RegSimCalibrationState = driver.source.regenerator.simulation.calibration.get_state()

Queries the status of the automatic system calibration process.

return:

calibration_stat: FAILed| SUCCess

get_urange() bool[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:URANge
value: bool = driver.source.regenerator.simulation.calibration.get_urange()

Allows you to simulate objects at a range closer than 2.1 km.

return:

use_under_range: 1| ON| 0| OFF

set_correction(corr_value: float) None[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:CORRection
driver.source.regenerator.simulation.calibration.set_correction(corr_value = 1.0)

Adds a correction to the automatically estimated system latency value.

param corr_value:

float Range: -100 to 100

set_mode(cal_mode: RegSimCalibrationMode) None[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:MODE
driver.source.regenerator.simulation.calibration.set_mode(cal_mode = enums.RegSimCalibrationMode.AUTomatic)

Sets how the system latency is estimated.

param cal_mode:

MANual| AUTomatic AUTomatic mode can be used only if a R&S FSW is connected to the R&S SMW200A.

set_urange(use_under_range: bool) None[source]
# SCPI: [SOURce<HW>]:REGenerator:SIMulation:CALibration:URANge
driver.source.regenerator.simulation.calibration.set_urange(use_under_range = False)

Allows you to simulate objects at a range closer than 2.1 km.

param use_under_range:

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.regenerator.simulation.calibration.clone()

Subgroups