Autopilot configuration reference

From FlightGear wiki
Revision as of 16:32, 30 January 2015 by Johan G (talk | contribs) (→‎Structure of a configuration file: +link: PropertyList XML files#Aliased properties)
Jump to navigation Jump to search
FGPlot can be used to plot the value properties while tuning an autopilot.
For a guide on how to model an autopilot using these elements, see Howto:Design an autopilot.

The property rules used for autopilot configuration can also be used for other kinds of systems modeling. The controllers and filters allow for both simple and complex systems to be modeled. By using the output from one as the input to another one, very complex systems such as fly-by-wire systems with different control laws can be modeled.

This page serves as a reference for the elements of FlightGear xml autopilot and property rule configuration files. It describes all elements available within the autopilot configuration file supported in the bleeding edge Git sources. Some of the elements may not be available in the current release version of FlightGear.

For built-in runtime plotting of FlightGear properties (including FDM/Autopilot properties), check out FGPlot (available in FlightGear 2.11+).


Note  Whenever possible, please refrain from modeling complex systems, like an FDM, autopilot or Route Manager with Nasal. This is primarily to help reduce Nasal overhead (especially GC overhead). It will also help to unify duplicated code. The FlightGear/SimGear code base already contains fairly generic and efficient systems and helpers, implemented in C++, that merely need to be better generalized and exposed to Nasal so that they can be used elsewhere. For example, this would enable Scripted AI Objects to use full FDM implementations and/or built-in route manager systems.

Technically, this is also the correct approach, as it allows us to easily reuse existing code that is known to be stable and working correctly, .

For details on exposing these C++ systems to Nasal, please refer to Nasal/CppBind. If in doubt, please get in touch via the mailing list or the forum first.


Autopilot vs. property-rule configurations

The main difference between XML based autopilot and property-rule systems is the update rate:

  • Autopilot configurations run at FDM rate
  • Property-rule configurations run at frame rate

Performance considerations

Using property-rule elements for things that does not have to run a FDM rate can improve the frame rate, in particular for complex systems and on weaker computers. Depending on FlightGear settings and the hardware, the FDM rate is about 2–10 times higher than the frame rate.

It is possible to implement a system using both autopilot and property-rule based elements. They can communicate with each other using properties. The only disadvantage is that they will be split between an autopilot and a property-rule configuration file.

For example would a fly-by-wire flight control system element augmenting an instable aircraft need to run at FDM rate, while an element depending on the flap extension would work just as well at frame rate.

Adding a configuration to an aircraft

A configuration is added to an aircraft by adding the path to an XML configuration file to the <Aircraft>-set.xml file.

Adding an autopilot configuration

Autopilot configuration files are added to the aircraft by adding

  <autopilot>
    <path>Aircraft/MyAircraft/Systems/my-autopilot.xml</path>
  </autopilot>

to the

 <sim>
   <systems>
     <!-- many other elements live here -->
     <autopilot>
       <path>Aircraft/MyAircraft/Systems/my-autopilot.xml</path>
     </autopilot>
   </systems>
  </sim>

node of your aircraft-set.xml file. Note, that more than one <autopilot> node may be present, each will create a new instance of the autopilot subsystem when running FlightGear. They run in the order of appearance under <systems>. For example, lateral and vertical autopilot modes could live in separate files, as could a yaw-damper system.

Adding a property-rule configuration

Property-rules can also be used in which case they will run at frame rate. You can use these to process properties so their values can be used by other systems outside of the autopilot scope (for example to create smooth animations for switches that normally have discrete values)

To achieve this load your filters configuration by adding:

  <property-rule n="100">  <!-- "n" needs to be >= 100 to avoid overwriting other predefined global rules (in particular the environment ones) -->
    <name>My property rule</name>  <!--  Optional name tag useful for debugging and other maintenance -->
    <path>Systems/my-propertyrules.xml</path>  <!-- path can be relative to the current aircraft-set.xml location -->
  </property-rule>

to the :

 <sim>
   <systems>
     <!-- many other elements live here -->
     <property-rule n="100">  <!-- "n" needs to be >= 100 to avoid overwriting other predefined global rules (in particular the environment ones) -->
       <name>My property rule</name>  <!--  Optional name tag useful for debugging and other maintenance -->
       <path>Systems/my-propertyrules.xml</path>  <!-- path can be relative to the current aircraft-set.xml location -->
     </property-rule>
   </systems>
  </sim>

node of your aircraft-set.xml file. Note that you can add multiple <property-rule> elements, similar to the <autopilot> as described above.

Structure of a configuration file

Autopilot configurations live in a separate file, formatted using the well known XML syntax like so many other FlightGear files with a <PropertyList> node as a root element. A basic skeleton file looks like this:

 <?xml version="1.0" encoding="UTF-8"?>
 <PropertyList>
   <params include="MyParams.xml"> <!-- Params can be included like this -->
     <controls>
       <aileron>controls/flight/aileron</aileron>
       <rudder>controls/flight/rudder</rudder>
       <elevator>controls/flight/elevator</elevator>
     </controls>
   </params>

   <!-- Place your components here -->
   <!--
   <filter>
     <name>Myfilter</name>
     <input>/foo</input>
     <output>/bar</output>
   </filter>
   <filter>
     <name>Myfilter</name>
     <input alias="/params/control/aileron"/>  Aliasing a property name
     <output>/bar</output>
   </filter>
   -->
 </PropertyList>

The location and the name of the configuration file is up to the developer. A descriptive name like autopilot.xml might be a good choice. Most developers put these files into the Systems folder of the aircraft.

Tip  Using aliased property names is good style and makes the configuration file more readable. The params section may be included from an external file to avoid duplication of code.

For complex systems, spread over multiple autopilot and/or property-rule configuration files, this can greatly aid debugging and maintenance.

Tip  Commenting the configuration file to document the purpose elements and groups of elements and what they are intended to do can also aid debugging and maintenance.

Available elements

All elements may contain the attributes "include" and "alias". The "include" property takes a file name as a parameter. This can be used to read the document tree of an external XML file into the node containing the "include" attribute. The included file must have a PropertyList node as the root node. All nodes under this PropertyList node will be added to the node containing the "include" attribute. The "alias" attribute refers to an element defined elsewhere in this XMl document. Alias references are in a path-style syntax, either as a relative or absolute path. Absolute paths start with a slash, like <foo alias="/params/bar/baz"/>. Use the colon to move through the document tree, similar to file system paths like <foo alias="../../bar/baz"/>.

Any top-level element can appear in an autopilot XML file, but only the following elements will be recognised and used:

  • <pid-controller>
  • <pi-simple-controller>
  • <filter>
  • <predict-simple>
  • <logic>
  • <flipflop>

Common elements used by all elements

Name of filter and controller <name>

The <name> element is optional, but should be added to give the controller a distinct name. It is only used in debug output.

 <name>NAV hold</name>

Feedback <feedback-if-disabled>

The <feedback-if-disabled> element advises the controller to feed back the output property value to the active input property if the condition defined in the <enable> tag evaluates to false. This is usually required for controllers like servo drivers behind a PID-controller to give that PID-controller a valid starting value when it becomes enabled. The absence of this element or anything but the word true within this element results in feedback disabled.

 <feedback-if-disabled>true</feedback-if-disabled>

Printing debug output <debug>

If the <debug> element is present and if it contains the word true, the containing controller prints out some diagnostic information on the console for each processing loop.

 <debug>true</debug>

Input and reference properties or values <input> and <reference>

Each controller has two input "lines", denoted by the tags <input> and <reference>. The arithmetic difference of these two values is used by the respective controller to compute it's output. Unfortunately due to historical reasons, the sign of input and reference is not consistent for all controllers. While the pid-controller and the pi-simple-controller compute "reference-input", the filter controller computes "input-reference". Each element is optional with a default value of zero. These elements are made of so called input values described further down in this document.

Example for a simple differential amplifier, computing output = (input-reference)*2

 <filter>
   <type>gain</type>
   <gain>1.0</gain>
   <input>/some/input</input>
   <reference>/some/output</reference>
   <output>/some/output</output>
 </filter>

Output property <output>

The <output> element names the properties, the computed value should be written to. More than one <output> may be present, each named property will be assigned the computed value.

 <output>controls/flight/elevator</output>

Enabling and disabling a filter <enable>

Controllers can be enabled or disabled using property values. This element <enable> may contain a <prop> and a <value> element. The controller is enabled, if the value of the named property equals the given value. This feature is considered deprecated and might go away in future releases. The preferred way of defining the enable-condition is by adding a <condition> element to the <enable> element. This <condition> follows the same syntactical rules as the one used in model animations and can model complex expression trees. To enable a wing leveler only if the current bank angle does not exceed 30° of bank, use this condition

 <enable>
   <condition>
     <less-than>
       <property>orientation/bank-angle-deg</property>
       <value>30.0</value>
     </less-than>
     <greater-than>
       <property>orientation/bank-angle-deg</property>
       <value>-30.0</value>
     </greater-than>
   </condition>
 </enable>

Input values

Input values for controllers may be specified in several notations. Values may be supplied as constants, from properties or by means of simple linear transformations. Conditions allow the selection of one of multiple input sources. The following text will use the reference element as an example but it may be substituted by any other input element like Kp, gain etc. Input values will be interpreted as double values.

A constant value <value> or <reference>

A constant value is defined by just adding the value as text to the input element:

 <reference>
   <value>3.5</value>
 </reference>

The shortcut syntax is also valid:

 <reference>3.5</reference>

If the text can be parsed by strtod() to a double value, it will be used as a constant value, otherwise it will be interpreted as a property value (see next paragraph)

A property value

To evaluate the value of a property, place the name of the property into the text element:

 <reference>
   <property>/my/property</property>
 </reference>

The shortcut syntax is also valid:

 <reference>/my/property</reference>
Note  The shortcut syntax is only valid, if neither <property> nor <value> element exists.

If both <property> and <value> element exist, the property will be initialized with the given value with scale and offset applied correctly. Properties don't have to exist, the will be created as needed.

Note  For backward compatibility, the notation <prop> instead of <property> is also valid but considered deprecated and might go away in future releases.

Linear transformation of the input value <offset>

Input values may be scaled and shifted before they are processed by the controller using the formula y = value * scale + offset To use a Celsius temperature property in a controller which expects the temperature in Fahrenheit you might use

 <reference>
   <property>/environment/temperature-degc</property>
   <scale>1.8</scale>
   <offset>32</offset>
 </reference>

Periodical transformation of the input value <period>

Periodical (like angular) input values can be transformed to appear in the correct phase before they are processed by the controller by adding or subtracting multiples of the period to the input value until the values is in the requested periods interval. The following example converts the heading which comes in the range of [0..360] into the range of [-180..+180]. This will cause a heading of 270 to be processed as a value of -90.

 <reference>
   <property>/orientation/heading-deg</property>
   <period>
     <min>-180.0</min>
     <max>180.0</max>
   </period>
 </reference>

Input clamping <min> and <max>

To clamp the input to a minimum value, maximum value or both, the tags <min> and <max> can be used. Clamping will occur after the linear transformation has been applied. Note the difference of input clamping to output clamping. While input clamping is applied before the signal reaches the controller, output clamping will be applied to the output signal after it has been processed.

The following code will keep the input to the controller in the range of 60 to 80 degrees Fahrenheit:

 <reference>
   <property>/environment/temperature-degc</property>
   <scale>1.8</scale>
   <offset>32</offset>
   <min>60</min>
   <max>80</max>
 </reference>

Absolute values <abs>

To use the absolute (unsigned) value of the input, add <abs type="bool">true</abs>.

 <reference>
   <property>/autopilot/internal/course-error-deg</property>
   <abs type="bool">true</abs>
 </reference>

Recursive definition

The elements <scale>, <offset>, <min> and <max> itself can be defined as input values. This code uses as reference the value of course-error-deg, scaled by two and an offset applied which is calculated as the product of the bank-angle-de and the property some/property which itself is limited within the range of -1.5 .. +1.5.

 <reference>
   <property>/autopilot/internal/course-error-deg</property>
   <scale>2.0</scale>
   <offset>
     <property>orientation/bank-angle-deg</property>
     <scale>
       <property>some/property
       <min>-1.5</min>
       <max>1.5</max>
     </scale>
   </offset>
 </reference>

Conditional input values <condition>

The direct inputs of controller and filter elements support so called input value lists. This is useful, if the input should be connected to one of many separate inputs like autopilots connected to NAV1, NAV2 or the GPS. A standard <condition> element is allowed within an input value element. The input value list will be traversed until the first input value with a successful condition is found. The behavior is much like the switch statement in programming languages.

 <reference>
   <condition>
     <property>/autopilot/coupled-to-gps</property>
   </condition>
   <property>instrumentation/gps/desired-track-deg</property>
 </reference>
 <reference>
   <condition>
     <property>/autopilot/coupled-to-nav2</property>
   </condition>
   <property>instrumentation/nav[1]/radials/selected-deg</property>
 </reference>
 <reference>instrumentation/nav[0]/radials/selected-deg</reference>

Note the unconditional last <reference<> element which acts as an "if all others fail, use NAV1" anchor. If no input value return with a successful condition, the input value is undefined.
The <scale>, <offset>, <min> and <max> elements of input values itself currently don't support input value lists.

Expressions <expression>

Complex math or lookup tables may be represented using the expression syntax. The expression has to be enclosed in <expression> tag.

Output values

After processing of a component, the resulting value passes a transformation stage where it can be clipped or normalized into a given period. Periodic values such as angular properties may be normalized into a given period by adding a <period> element, defining the lower and upper bounds of the period. Additionally, a maximun and a minimum value may be given which will guarantee that the output value will ever exceed a defined value.

Note  Both periodical normalization and clipping may be defined. If both are given, the value will be normalized first and the clipping will be applied to the normalized value.

The following example shifts the computed value into the interval of [-180..180] thereafter being limited into the interval of [-30..30]. The following table contains some computed values and the resulting written value:

computed written
-350 10
-270 30
-90 -30
-29 -29
29 29
90 30
350 -10
 <output>/some/property</output>
 <period>
   <min>-180</min>
   <max>180</max>
 </period>
 <min>-30</min>
 <max>30</max>

Logic controller <logic>

The logic controller provides a simple way of creating property values from the result of the condition expression in the <input> element. The condition expression is evaluated once per iteration and the result is written as a boolean value to the named output property or properties. An optional <inverted> element inverts the logic. The default is "not inverted".

Example: output = not( ( a is true ) or ( ( b greater than c ) and ( d is true ) )

 <logic>
   <inverted>true</inverted>
   <input>
     <property>a</property>
     <or>
       <greater-than>
         <property>b</property>
         <property>c</property>
       <greater-than>
       <property>d</property>
     </or>
   </input>
   <output>output</output>
 </logic>

Flip flop logic <flipflop>

A flip flop is a controller that has two stable states so it can be used as a one bit memory. Four types of flip flops are implemented: RS, JK, D and T. All use positive logic and operate on the raising edge of the clock signal if a clock is used. All input lines, including the clock line, are encoded as condition constructs. If negative logic for the input line is required, wrap the condition into a <not> tag to invert the logic.

Note  The type, for example RS, is case sensitive.
Note  Using <condition> tags will break the logic.

RS flip flop <RS>

This flip flop sets its output according to the set (S) or reset (R) input lines. If the set line is set, the output gets set. If the reset line is set, the output gets reset. If no line is set, the output stays unchanged. For the special case where set and reset lines are both set, two types of RS flip flops exist: for the RS flip flop (<type>RS</type>), the reset line is dominant and the output is reset. Alternatively, a SR flip flop (<type>SR</type>) has a dominant set line and the output gets set if set and reset line are set.

Example: simple RS flip flop

 <flipflop>
   <type>RS</type> <!-- or SR -->
   <S>
     <property>/myflipflop/set</property>
   </S>
   <R>
     <property>/myflipflop/reset</property>
   </R>
   <output>/myflipflop/output</output>
 </flipflop>

JK flip flop <JK>

The JK flip flop is an extension of the RS flip flop. In addition to the set and reset lines of the RS flip flop it uses J, K and a clock input. The J line serves as a clock dependent set input while the K line does the reset job. Optionally, a clock input may be provided. State changes do not occour immediately, but on the next raising edge of the clock signal. The state of J=K=true causes the output to toggle it's current state on the next raising edge of the clock signal. If no clock signal is provided, the frame rate serves as the clock input.

Example: simple JK flip flop with negative edge clock

 <flipflop>
   <type>JK</type>
   <J>
     <property>/myflipflop/set</property>
   </J>
   <K>
     <property>/myflipflop/reset</property>
   </K>
   <clock>
     <not>
       <property>/myflipflop/clock</property>
     </not>
   </clock>
   <output>/myflipflop/output</output>
 </flipflop>

D flip flop <D>

The D flip flop transfers the state of the input signal D to the output line at the next raising edge of the clock signal, which is mandatory for this flip flop.

Example: simple D flip flop with inverted output

 <flipflop>
   <type>D</type>
   <D>
     <property>/myflipflop/data</property>
   </D>
   <clock>
     <property>/myflipflop/clock</property>
   </clock>
   <output>/myflipflop/output</output>
   <inverted type="bool">true</inverted>
 </flipflop>

T flip flop <T>

The T flip flop toggles the state of the output signal at the next raising edge of the clock signal, which is mandatory for this flip flop.

Example: simple T flip flop

 <flipflop>
   <type>T</type>
   <clock>
     <property>/myflipflop/clock</property>
   </clock>
   <output>/myflipflop/output</output>
 </flipflop>

Monostable flip flop <monostable>

A monostable flip flop has only one stable state which will be reentered after a well defined time. The stable state in current implementation is the output set 'false' or 0. The Monostable is an extension of the JK flip flop. Additionally to the input values defined there, an InputValue for the definition of the pulse time is mandatory.

The moment the time for the astable state starts counting depends on the input used to set the output. If the output is set from the SET input of the RS flipflop, the output is kept true for the defined time after the SET input enters it's false state. The total time the output is true equals the time, the SET input is true plus the time defined in the

Note  The optional <R> and <K> inputs may be used to reset the output before the internal timer expired. This will also reset the timer to zero, so no additional event will be triggered after the defined timer interval.
 <flipflop>
   <name>Test mf</name>
   <type>monostable</type>
   <time>
     <property>/myflipflop/pulsetime-sec</property>
     <value>10</value>
   </time>
   <S><property>/myflipflop/s</property></S>
   <J><property>/myflipflop/j</property></J>
   <clock><property>/myflipflop/clock</property></clock>
   <output>/myflipflop/output</output>
  </flipflop>

The following example shows how a monostable can be used to enable a certain property (/myflipflop/output) if another property (/myflipflop/s) is true for at least the specified amount of time:

<flipflop>
    <name>Test mf</name>
    <type>monostable</type>
    <inverted type="bool">true</inverted>
    <S>
        <not>
            <property>/myflipflop/s</property>
        </not>
    </S>
    <time>
        <value>10.0</value>
    </time>
    <output>
        <property>/myflipflop/output</property>
    </output>
</flipflop>

In this example the monostable is inverted, which means the stable state is true instead of false. The key idea here is to keep the monostable in its unstable state (false) by keeping the set line true, which is the case when /myflipflop/s is false. Then, when /myflipflop/s becomes true the set line becomes false, which causes the timer to start. When the timer expires (in this case 10 seconds) the monostable will enter its stable state (true). At any time when the set line becomes true (when /myflipflop/s becomes false) the monostable will immediately enter its unstable state (false) again, resulting in /myflipflop/output to become false immediately.

Filters <filter>

Pure gain filter <gain>

A gain filter multiplies the <input> value by a given factor or gain <gain> and returns the output to <output>. More than one <gain> element formatted as in Input Values may be present. Within a <condition> evaluating as true the first <gain> will define the used gain.

 <filter>
   <type>gain</type>
   <gain>6.28</gain>
   <input>radius</input>
   <output>circumfence</output>
 </filter>

First order low pass filter <exponential>

The exponential filter is a typical low pass filter. The magic euler number and the associated mathematical funtion exp() plays a major role here. As the name implies, lower frequencies can pass this filter while higher frequencies are cut. The frequency where only half of the input signal reaches the output is called cutoff frequency. This cutoff frequency is defined by the parameter <filter-time> and resolves as cutoff-frequency = 1/(2*pi*cutoff-frequency).

Example: a 1Hz first order low pass filter

 <filter>
   <type>exponential</type>
   <filter-time>0.16</filter-time>
   <input>/some/input</input>
   <output>/some/output/</output>
 </filter>


First order high pass filter <high-pass>

The high pass filter is a typical high pass filter. The magic euler number and the associated mathematical funtion exp() plays a major role here. As the name implies, higher frequencies can pass this filter while lower frequencies are cut. The frequency where only half of the input signal reaches the output is called cutoff frequency. This cutoff frequency is defined by the parameter <filter-time> and resolves as cutoff-frequency = 1/(2*pi*cutoff-frequency). It is commonly known as a wash-out filter or a 1st order lead filter

Example: a 1Hz first order high pass filter

 <filter>
   <type>high-pass</type>
   <filter-time>0.16</filter-time>
   <input>/some/input</input>
   <output>/some/output/</output>
 </filter>

Second order low pass filter <double-exponential>

The double exponential filter is a low pass filter like the exponential filter with a steeper slope of the filter diagram. It acts basically like two chained exponential filters and it is some times called second order filter.

The configuration is the same for exponential and double-exponential filters, just the type entry differs.

 <filter>
   <type>double-exponential</type>
   <filter-time>0.16</filter-time>
   <input>/some/input</input>
   <output>/some/output/<output>
 </filter>

Moving average filter <moving-average>

Calculates average of specified number of values.

Currently the average length can only be given as number of samples and not time.

 <filter>
  <type>moving-average</type>
  <samples>120</samples>
  <input>/some/input</input>
  <output>/some/output</output>
 </filter>

Rate limit filter <noise-spike>

A better name for a noise spike filter would probably have been "rate limit filter". This is exactly what it does: limit the rate of change of the output value. The relevant configuration element is <max-rate-of-change> setting the maximum rate of change of the output property per second.

Example: A transition from 0 to 4 at the input property results in a linear increase of the output property over 8 seconds from 0 to 4 at a rate of 0.5/sec.

 <filter>
   <type>noise-spike</type>
   <max-rate-of-change>0.5</max-rate-of-change>
   <input>/some/input</input>
   <output>/some/output</output>
 </filter>

Reciprocal filter <reciprocal>

Compute the reciprocal (1/x) value of the input property. If x is zero, no computation is performed. The optional <gain> element may be used to scale the value. Output computes as gain divided by input.

Example: compute the flight time per pound of burned fuel from the fuel flow

 <filter>
   <type>reciprocal</type>
   <gain>1.0</gain>
   <input>/engines/engine[0]/fuel-flow-pph</input>
   <output>/engines/engine[0]/fuel-flow-hpp</output>
 </filter>

Derivative filter <derivative>

Compute first time derivative of the input property, that is change per unit of time. Time is measured in seconds. A <filter-time> acts as gain and must be given because it has default 0.

Example: compute derivative of static port pressure

 <filter>
  <type>derivative</type>
  <input>systems/static[0]/pressure-inhg</input>
  <output>autopilot/internal/pressure-rate</output>
  <filter-time>1.0</filter-time>
 </filter>

PID controller <pid-controller>

The PID controller is the swiss army knife of automation and this implementation is suitable for most situations. It has a builtin anti-windup logic, and usage of <max> and <min> elements for clamping the output is mandatory. The most important thing to know is that this controller 'does not' compute absolute output values but an offset from the current value of the output property. This can lead to unexpected behavior if the current value of the output property is unknown when the controller is enabled. This behavior is different to that of the pi-simple-controller. The xml element creating a pid controller is <pid-controller>.

Legal elements are:

Kp the overall gain for the proportional, integral and derivative part
Ti integrator time
Td derivator time
Ts sampling interval (default: sample at frame rate)
alpha scaling factor for Td (defaults to 0.1)
beta reference weighing factor for the proportional component (defaults to 1.0)
gamma reference weighing factor for the derivate component (defaults to 0.0)

PI controller <pi-simple-controller>

This controller implements a PI controller. Other than the PID controller, it computes absolute output values, regardless of the value of the output property. It can by configured as an I-only, P-only or PI-controller. It has anti windup logic if <min> and <max> elements are present. The xml element creating a PI controller is <pi-simple-controller> Legal elements are:

Kp gain of the proportional component
Ki gain of the integrator component

Predictor <predict-simple>

Estimates the future value for a given property based on its current (or averaged) rate of change.

Legal elements are:

seconds the time to be estimated ahead
filter-gain Smoothing factor (0.0-1.0, 1.0=no smoothing)

Example: compute estimated speed 5 seconds ahead

 <predict-simple>
   <name>predicted air speed 5 seconds ahead</name>
   <debug>false</debug>
   <input>velocities/airspeed-kt</input>
   <output>autopilot/internal/airspeed-5-sec-ahead</output>
   <seconds>5.0</seconds>
   <filter-gain>0.1</filter-gain>
 </predict-simple>

Proposed extensions

This sections contains new features for the autopilot to be implemented. Nobody knows if and when this will happen. Consider this as a collection of ideas as a base for discussion on the mailing list, the forum or IRC.

Related content

Source code