Distance

SCPI Commands :

[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:CURRent
[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STARt
[SOURce<HW>]:[BB]:DME:FLIGht:DISTance:STOP
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_current() float[source]
# [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.

Returns:

current_distance: float Range: -400 to 400

get_start() float[source]
# [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.

Returns:

start_distance: float Range: -400 to 400

get_stop() float[source]
# [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.

Returns:

stop_distance: float Range: -400 to 400

set_start(start_distance: float) None[source]
# [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.

Parameters:

start_distance – float Range: -400 to 400

set_stop(stop_distance: float) None[source]
# [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.

Parameters:

stop_distance – float Range: -400 to 400