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]
- Commands in total: 5Subgroups: 1Direct child commands: 4
- get_correction() float[source]
# [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.
- Returns:
corr_value: float Range: -100 to 100
- get_mode() RegSimCalibrationMode[source]
# [SOURce<HW>]:REGenerator:SIMulation:CALibration:MODE value: enums.RegSimCalibrationMode = driver.source.regenerator.simulation.calibration.get_mode()
Sets how the system latency is estimated.
- Returns:
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]
# [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.
- Returns:
calibration_stat: FAILed | SUCCess
- get_urange() bool[source]
# [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.
- Returns:
use_under_range: 1 | ON | 0| OFF
- set_correction(corr_value: float) None[source]
# [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.
- Parameters:
corr_value – float Range: -100 to 100
- set_mode(cal_mode: RegSimCalibrationMode) None[source]
# [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.
- Parameters:
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]
# [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.
- Parameters:
use_under_range – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
calibration_copy = driver.source.regenerator.simulation.calibration.clone()
Subgroups