Distance
SCPI Commands :
[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:CURRent
[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STARt
[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STOP
- class DistanceCls[source]
Distance commands group definition. 3 total commands, 0 Subgroups, 3 group commands
- get_current() float [source]
# SCPI: [SOURce<HW>]:[BB]:DME:FLIGht:DISTance:CURRent value: float = driver.source.bb.dme.flight.distance.get_current()
Queires the current distance of the aircraft in the flight simulation.
- return
current_distance: float Range: -400 to 400
- get_start() float [source]
# SCPI: [SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STARt value: float = driver.source.bb.dme.flight.distance.get_start()
Sets the start distance of the flight simulation.
- return
start_distance: float Range: -400 to 400
- get_stop() float [source]
# SCPI: [SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STOP value: float = driver.source.bb.dme.flight.distance.get_stop()
Sets the stop distance of the flight simulation.
- return
stop_distance: float Range: -400 to 400
- set_start(start_distance: float) None [source]
# SCPI: [SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STARt driver.source.bb.dme.flight.distance.set_start(start_distance = 1.0)
Sets the start distance of the flight simulation.
- param start_distance
float Range: -400 to 400
- set_stop(stop_distance: float) None [source]
# SCPI: [SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STOP driver.source.bb.dme.flight.distance.set_stop(stop_distance = 1.0)
Sets the stop distance of the flight simulation.
- param stop_distance
float Range: -400 to 400