METHOD FOR PROCESSING FLIGHT DATA
20230127673 · 2023-04-27
Assignee
Inventors
- Nicolas CHRYSANTOS (Moissy Cramayel, FR)
- Fabrice FERRAND (Moissy Cramayel, FR)
- Pierre BEAUSEROY (Troyes, FR)
Cpc classification
G05B23/0237
PHYSICS
International classification
G07C5/08
PHYSICS
Abstract
A method for processing flight data having been recorded during three or more flights of an aircraft by a flight data recorder including obtaining two signature vectors with respective sizes, the two signature vectors corresponding to two different flights among the three or more flights, determining a similarity matrix, the components of which quantify the proximity between the two flight signature vectors, each component allowing identifying, for each element of a first signature, an element of the other signature which is closest, the proximity between two components of the signature vectors being a distance weighted by a mean value of the neighboring components of the similarity matrix, repeating the obtaining and determining in order to compare, two by two, all the flight signatures so as to obtain three or more similarity matrices, and processing said similarity matrices in order to evaluate the similarity between two flights.
Claims
1. A method for processing flight data having been recorded during at least three flights of at least one aircraft by means of a flight data recorder of an aircraft, the data being grouped by flight in a signature vector of the flight, the components of which correspond to data recorded during said flight of the aircraft, a flight being defined by a signature vector, the method comprising the following steps, implemented in a processing unit: E2) obtaining two signature vectors x and y with respective size l and m, l≤m, the two signature vectors corresponding to two different flights among said at least three flights; E3) determining a similarity matrix D the components D(i,j) of which quantify the proximity between the two flight signature vectors x and y, each component allowing identifying for each element of the signature x an element of the other signature y which is closest, the proximity between two components of the signature vectors x and y being a distance weighted by a mean value of the neighboring components of the similarity matrix; E4) repeating steps E2) and E3) in order to compare, two by two, all the flight signatures so as to obtain at least three similarity matrices; E5) processing said similarity matrices D in order to evaluate the similarity between two flights.
2. The method according to claim 1, wherein the determination of the similarity matrix comprises the following steps: E31) initializing a matrix D having L rows and C columns, L=l+1 and C=m−l+2 columns; E32) calculating D(1,1)=|x.sub.i−y.sub.1|.sup.2 and for (i,j)(i,j)≠(1,1); E33) calculating the elements D[i,j]=|x.sub.i−y.sub.i+j−1|.sup.2+A+B; with
3. The method according to claim 1, wherein the processing E5) comprises the following sub-steps: E51) decomposing into eigenvectors and eigenvalues each similarity matrix D; E52) determining an entropy coefficient for each eigenvalue; E53) selecting a subset of eigenvectors such that the sum of the entropies is greater than a fraction of the sum of the entropies; E54) determining for each signature, based on the selected eigenvectors, an abnormality score for the purpose of evaluating whether a flight is abnormal.
4. The method according to claim 3, wherein for each abnormal flight detected, a ghost flight is determined that is closest to the abnormal flight detected which having an abnormality score such that the flight is normal.
5. The method according to claim 4, wherein the parameters of the abnormal flight detected are compared to those of the ghost flight determined in order to detect at least one parameter of the abnormal flight which caused said detected abnormal flight to be abnormal.
6. A non-transitory computer program product comprising code instructions which, when executed by a processor, cause the processor to perform the method according to claim 1.
Description
PRESENTATION OF THE FIGURES
[0017] Other features, objects and advantages of the invention will be revealed by the description that follows, which is purely illustrative and not limiting, and which must be read with reference to the appended drawings in which:
[0018]
[0019]
[0020]
DETAILED DESCRIPTION
[0021]
[0022] A prerequisite for processing flight data, which is not detailed here, consist of recovering the flight data recorded during one or more flight(s) carried out by at least one aircraft.
[0023] These flight data correspond to flight parameters such as for example speed, altitude, temperature, etc.
[0024] For each flight, the data are grouped (step E1) into a flight signature. Each signature comprises a fixed number of parameters recorded over a flight duration. By way of an example, there can be as many as 2000 parameters recorded during a flight. At least three different flights are available.
[0025] To group the data in a flight signature, the data can be restricted to one flight phase (landing for example) and only a certain number of parameters can be retained. This allows shortening the size of the signatures.
[0026] Once the data are grouped, a set of flight signatures is available, each signature having its own size. Advantageously, in the method described here, the size of the signatures has no importance. Likewise, the signatures can be used directly without necessitating the normalization processing intended to mitigate the different orders of magnitude.
[0027] The signatures are advantageously treated two by two in two steps (steps E2) in order to obtain, for different pairs of signatures, a similarity matrix D (step E3). In the case of at least three flights, three similarity matrices are obtained.
[0028] The components of the similarity matrix D quantify the proximity between two flight signatures based on the shorter one. Each component has a similarity coefficient having a value comprised for example between 0 and 1.
[0029] In particular, each component of the matrix D allows identifying for an element of a signature an element of another signature which is closest.
[0030] Advantageously, it is a distance (or proximity) criterion between two elements which is evaluated, weighted by a mean value of the neighboring components of the calculated component.
[0031] Described hereafter is the method of obtaining the similarity matrix D.
[0032] Let x and y be the signatures of two flights. It is considered that the signature x has a size l and the signature y has a size m and that the signature x has a size smaller than or equal to the signature y. In fact, the longer signature will be compared with respect to the shorter signature.
[0033] First the matrix D is initialized (step E31) and advantageously has L rows and C columns. Preferably L=l+1 and C=m−l+2 columns.
[0034] Then the component D(1,1) is initialized to the value D(1,1)=|x.sub.1−y.sub.1|.sup.2 (step E32). Then the other components are calculated as follows (step E33):
[0035] for (i,j)≠(1,1)D[i,j]=|x.sub.i−y.sub.i+j−1|.sup.2+A[i,j]+B[i,j],
[0036] with
[0037] The values A and B are the means of the components near the value of the component calculated. This weighting allows having values of the similarity coefficient which translate into a more general similarity form than considering only the Euclidean distance.
[0038] The matrix obtained is not square, therefore it is reduced to a square matrix of size l×l (step E34) because the benchmark is the shortest sequence.
[0039] The reduction consists of retaining on the rows and columns only the first l elements.
[0040] Steps E31, E32, E33, E34 are repeated (step E4) in order to compare, two by two, all the flight signatures available.
[0041] Below is described the method of obtaining the similarity matrix D in the form of an algorithm.
TABLE-US-00001 D ← matrix (0, ,0.,(m − l + 1)) for i ← 1 to l do D
,0
← 0 end for for j ← 1 to m − l + 1 do D
0,
← 0 end for D
1,1
← [
−
].sup.2 for i ← 1 to l do for j ← 1 to m − l + 1 do if (i, j)
(1, 1) then A ← (i − 1)/(i + j − 2) × D[i − 1, j] B ← (j − 1)/(i + j − 2) × D[i, j − 1] D
i, j
← [x.sub.i −
].sup.2 + A + B end if end for end for ]
indicates data missing or illegible when filed
[0042] The similarity matrix D advantageously allows re-aligning two signatures x and y. In fact, it is possible to extract the indices to best identify which are the closest elements. Illustrated in
[0043] The alignment disclosed here is different from a conventional alignment used to temporally align two signatures which do not have the same duration. In fact, conventionally it is a matter of slowing or accelerating the time of one or the other of the two signatures: mathematically, slowing the time corresponds to repeating one or more elements of the signature, while accelerating the time comes down to eliminating one or more elements while retaining the time order of the elements of each of the signatures.
[0044] Once all the signatures have been compared, i.e. the set of K matrices D is obtained, the latter are processed (step E5) in order to evaluate the abnormality of a flight.
[0045] In particular, each matrix is decomposed into eigenvectors and eigenvalues (step E51). Denoted a.sub.1.sup.k, . . . , a.sub.l.sup.k are the eigenvectors and λ.sub.1.sup.k, . . . , λ.sub.l.sup.k the eigenvectors of the matrix D.sub.k, k=1, . . . , K.
[0046] Based on these eigenvectors and eigenvalues, an entropy coefficient is determined for each eigenvector (step E52) defined by
[0047] For the sake of ease of reading, the indices k have been eliminated from the notations for the eigenvalues, the eigenvectors and the entropy, but it must be understood that the calculated values are calculated for each of the similarity matrices.
[0048] The entropy coefficients are a relevant criterion allowing selecting only the most relevant data for all the signatures of all the flights.
[0049] In particular, a subset of eigenvectors {a.sub.m}.sub.m∈{1, . . . , N} is selected (step E53) such that the sum of the corresponding entropies γ.sub.m is greater than a fraction (or percentage) of the sum of the l entropies γ.sub.i.
Preferably, the percentage is comprised between 75 and 95%, preferably 90%.
[0050] Then, for each signature (or flight) an abnormality score is determined (step E54)
[0051] The abnormality score is defined for a signature by
with a.sub.u the selected eigenvectors and λ.sub.u their associated eigenvalues.
[0052] The abnormality score is comprised between 0 and 1. The closer the score is to 1, the more abnormal the flight is judged to be.
[0053] Consequently it is possible to detect (step E6), depending on the abnormality score z.sub.i, whether at least one flight is abnormal.
[0054] The abnormality score can be displayed to be viewed by an analyst.
If an abnormal flight is detected, a nominal reference flight called a “ghost flight” can be determined (step E7) for the latter, which is closest to this detected abnormal flight while having an abnormality score which causes the flight to be normal. The ghost flight can naturally be different from a flight of which the signature is available.
[0055] Then, the parameters of the detected abnormal flight are compared to those of the ghost flight in order to detect at least one flight parameter which caused the detected abnormal flight to be abnormal (step E8).
[0056] The ghost flight is generated via a nonlinear constrained optimization procedure of a known type.