EUREKA project ID 11178 Next generation flight navigation and procedure training device by PearWilliams LTD.
Abstract
The usefulness of flight simulation in professional pilot training is unquestionable. The quality of the training device is utterly important for the participants to achieve their goal of making the airline industry safer. There are a set of governing rules of the development of these devices, specifying the technical parameters to be obtained. The Fly-by-wire systems implemented in some of the modern jet aircrafts are fitted with complex flight path stabilization algorithms (so called “flight law”-s). These algorithms are designed on top of PID controllers. The simulation of such an aircraft will have the same complexity involved making these controllers stable and oscillation free for all of the flight maneuver envelope of the aircraft with all the configurations possible. This whitepaper will present a solution for making these controllers sturdy but flexible enough.
Keywords: Flight Simulation, Proportional–Integral–Derivative (PID) controller
1. Key affecting parameters
The parameters affecting the controllability of an aircraft are listed below. These effects should be counteracted by our controller in the whole envelope. The problem is bound to our need of having the aircraft in the normal flight envelope. The PID-s should be designed in such way, that they are never allowed to leave out of this regime. The stability coefficients that are affected by the mentioned parameters are very complex and - by including the external wind and turbulence effects on the controller - we have to take various possibilities into account in our controller design.
1.1. The Dutch-Roll effect
The principal axes of rotation of an aircraft in flight are the following:
- Normal axis or yaw axis — an axis drawn from top to bottom, and perpendicular to the other two axes. Parallel to the fuselage station.
- Transverse axis, lateral axis or pitch axis — an axis running from the pilot's left to right in piloted aircraft and parallel to the wings of a winged aircraft. Parallel to the buttock line.
- Longitudinal axis or roll axis — an axis drawn through the body of the vehicle from tail to nose in the normal direction of flight or the direction the pilot faces. Parallel to the waterline.
While the pitch axis is mostly free from interference with other axes, the normal and the longitudinal are interconnected aerodynamically by the so-called Dutch Roll mode of the aircraft. This effect is more accentuated in swept wing aircraft. The coupling between the two axes will give us a loosely coupled, cascaded controller by inserting the output of one PID controller as an error signal to the other.
1.2. The effect of configuration of the aircraft
For keeping the aircraft stable in all of its operating envelope – going from low speed, high angle of attack takeoff phase to transsonic speed, low angle of attack cruise and low speed, high angle of attack approach and landing – the aircraft manufacturers are using high-lift devices, such as leading edge slats, trailing edge flaps to equalize the aircraft’s aerodynamic performance through the operating envelope. Also, the gear system used on ground gives a huge aerodynamic impact on the maneuverability of the aircraft.
1.3. Center of gravity
The center of gravity (CG) of an aircraft is the point over which the aircraft would balance. The position of this point will give the inherent static and thus dynamic stability of the aircraft related to the lateral (pitch) axis.
The air density is a key factor affecting the stability and performance of an aircraft. An aircraft flying high altitude with high speed and high weight is very close to the so called “coffin corner”, where the options of the pilot to modify any parameter of an aircraft will be lost because of the incipient structural failure due to high speed or loss of control and low stall margin.
Although it is not the most affecting parameter, but the outside air temperature should be considered as well.
2. The Multi-Channel non-linear PID controller
2.1. The basic discrete time PID controller
The PID linear time equation:
Laplace form:
We discretize this equation with the Euler-form and an added Low-Pass filter for the derivative part for noise suppression:
The pseudo-code form of the implemented controller is:
This implementation is the straightforward form of a digital PID controller.
2.2. Integral windup
A large modification in the setpoint will make the reset (Integrator) part to accumulate a large amount of errors and the controller will overshoot the setpoint. There are a few possibilities to mitigate this, the process is called the anti-windup method. This addition can be addressed in multiple ways, like:
- Setting the integral part to a pre-defined value in case of large inputs
- Filtering the setpoint – thus avoiding abrupt changes in its value
- Disabling the integral function until the process variable enters a small error region
- Bounding the integral value between pre-determined thresholds
2.3. Non-linear proportional term
For our controller to be usable in various circumstances and regimes, we made tests and measurements using various configurations, speed and mach regions and altitudes. The measurement was done with an implemented autopilot module, using the aforementioned PID algorithm with reset windup and setpoint filtering, tuned for medium altitudes (15000 feet) and medium speeds (220 knots). From the analysis of the data, it turned out that the controller has its peak performance at this point (where it was tuned using open loop Ziegler-Nichols PID tuning).
We found out from the tests that there is a linear correspondence between the airspeed (and configuration) and the magnitude of the P part of the controller. The altitude had the same effect, making the process more sensitive in denser air. By using the airspeed (indicated airspeed – calculated from the dynamic pressure on the Pitot system) corrected for instrument, position, compressibility error and MACH effect – the so called True Air Speed: TAS – we have found out that there is no need to take the altitude in account.
From this measurement we collected enough data to be able to calculate the proportional term related to TAS. This gave us a logarithmic function of inverse of the true air speed, thus modifying our discrete PID to the following form:
2.4. Implementation
By extending the aforementioned basic form with the selectable integral windup form and the slightly modified logarithmic P function, we designed a controller that can withstand the whole speed, altitude and configuration regime of the simulated aircraft, without using multiple controllers for specific cases. The tuning of the parameters, including the non-linear logarithmic term was done using the measurement data available from the tests.
2.5. Stability
If the PID controller parameters (the gains of the proportional, integral and derivative terms) are chosen incorrectly, the controlled process input can be unstable. General stabilization of response is required and the process must not oscillate for any combination of process conditions and setpoints.
In Laplace domain, the loop transfer function
Where
K(s) is the PID transfer function and
G(s) is the simulator (plant) transfer function
If the H(s) diverges for some s, the the system will be unstable. It can be seen that if the loop transfer function is divergent.
Because of the complexity in calculating the transfer functions, we decided to assess the stability of the system by a series of corner point measurements, then look for the remanent oscillation in the acceleration of the Euler angles of the aircraft.
The system behaved well even outside the usable regime of the simulator.
3. Results
By using the presented complex PID algorithm to control the aircraft in all possible circumstances, we succeeded to create a very stable, high performance system with relatively easy tuning process. The hands-on tests and the retrieved data helped us to learn the dynamic and static characteristics of a big jet’s flight model. The algorithm is used in the Fly-by-wire system of our simulator and in the Qualification and Test Guide software.
Acknowledgements
Throughout the writing of this white paper I have received a great deal of support and assistance from Dr. A. Bartha, and Dr. B. Sonkoly whose expertise was invaluable in the formulating of the topic and methodology in particular.
References
[1] Rabindra Kumar Sahu, Ain Shams Engineering Journal 5(3):558-563 March 2013 Gravitational Search Algorithm based Automatic Generation Control for Interconnected Power System
[2] FAA (2004). Airplane Flying Handbook. Washington D.C.:U.S. Department of Transportation, Federal Aviation Administration, ch 4, p 2, FAA-8083-3A.