Skip to content

Commit 5a8e7fa

Browse files
committed
initial copy for failures from issue
1 parent a4d1aa5 commit 5a8e7fa

File tree

1 file changed

+73
-6
lines changed
  • docs/fbw-a32nx/feature-guides/flypados3/failures

1 file changed

+73
-6
lines changed

docs/fbw-a32nx/feature-guides/flypados3/failures/failures.md

Lines changed: 73 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@
66

77
Although far from complete, some A32NX systems are already capable of simulating failures.
88

9-
To manage and trigger these failures, this flyPad page gives the user structured access to these systems and allows simple triggering of failures by mouse click.
9+
To manage and trigger these failures, this flyPad page gives the user structured access to two types of systems:
10+
11+
- Simple on demand triggering of failures by mouse click.
12+
- A more complex failure generator that can be customized to create failures at certain points during your flight for a more "randomized" feel. [Jump to Failure Generator](#failure-generator).
1013

1114
There are further extensions planned for the failures feature, incl. more systems and trigger-based failures. This page will therefore change alongside the implementation of the failure system.
1215

13-
## Comfort view
16+
## On Demand Failures
17+
18+
### Comfort View
1419

1520
<div style="position: relative;">
1621
<img src="/fbw-a32nx/assets/flypados3/flypad-failures.png" style="width: 100%; height: auto;" loading="lazy">
@@ -27,7 +32,7 @@ There are further extensions planned for the failures feature, incl. more system
2732
<span class="imagesub">Click on the menu icons in this image to see other flyPad pages.</span>
2833
</div>
2934

30-
## Compact view
35+
### Compact View
3136

3237
<div style="position: relative;">
3338
<img src="/fbw-a32nx/assets/flypados3/flypad-failures-compact-view.png" style="width: 100%; height: auto;" loading="lazy">
@@ -44,7 +49,7 @@ There are further extensions planned for the failures feature, incl. more system
4449
<span class="imagesub">Click on the menu icons in this image to see other flyPad pages.</span>
4550
</div>
4651

47-
## System View
52+
### System View
4853

4954
<div style="position: relative;">
5055
<img src="/fbw-a32nx/assets/flypados3/flypad-failures-system-view.png" style="width: 100%; height: auto;" loading="lazy">
@@ -61,7 +66,7 @@ There are further extensions planned for the failures feature, incl. more system
6166
<span class="imagesub">Click on the menu icons in this image to see other flyPad pages.</span>
6267
</div>
6368

64-
## Active Failure View
69+
### Active Failure View
6570

6671
When a failure is actively simulated, the system will be highlighted with a red color.
6772

@@ -95,7 +100,7 @@ When a failure is actively simulated, the system will be highlighted with a red
95100
<span class="imagesub">Click on the menu icons in this image to see other flyPad pages.</span>
96101
</div>
97102

98-
## Search
103+
### Search
99104

100105
Enter a search term to filter for specific systems.
101106

@@ -114,3 +119,65 @@ Enter a search term to filter for specific systems.
114119
<span class="imagesub">Click on the menu icons in this image to see other flyPad pages.</span>
115120
</div>
116121

122+
## Failure Generator
123+
124+
### Altitude Failure Generator
125+
126+
This generator triggers a set of failures among the selected failure pool when the airplane reaches a random altitude set between the specified minimum and maximum altitude.
127+
128+
It may be configured either to trigger while the plane climbs or descends.
129+
130+
### Speed Failure Generator
131+
132+
This generator triggers a set of failures among the selected failure pool when the airplane reaches a random speed set between the specified minimum and maximum speed.
133+
134+
It may be configured either to trigger while the plane accelerates or decelerates.
135+
136+
### Timed Failure Generator
137+
138+
This generator triggers a set of failures among the selected failure pool when the time since the arming of the generator reaches a random delay set between the specified minimum and maximum delay.
139+
140+
- When configured in the "repeat" or "Once" arming modes, the timer will start right away.
141+
- When configured in the "Take Off" arming, the timer will start once FL or TOGA thrust is set for the first time.
142+
143+
### Probability Over Time Generator
144+
145+
At any moment, this generator may trigger a set of failures among the selected failure pool by using the probability specified through the average number of failure per hour.
146+
The mean time to failure (MTTF) is provided as an indication of the delay it may take in average to trigger one failure for the probability of failure per hour.
147+
Note: In aviation rates of failure vary between 10e-3 per hour and 10e-9 per hour depending on the criticality of the system.
148+
For simulation purposes, it is advised to set this value at a much higher level up to 10e-1 (0.1 failure / hour or 1 failure every 10 hours) in order to experience failures once every simulator session.
149+
150+
### Take Off Failure Generator
151+
152+
This generator triggers a set of failures among the selected failure pool with a specified probability at each take off.
153+
If a failure will occur during the next take off, it may happen at any moment, during one of these three take off phases:
154+
155+
- Low speed phase :
156+
- The take off phase when the plane exceeds the minimum speed and is slower than the low-med transition speed.
157+
- Medium speed phase :
158+
- The take off phase when the plane exceeds the low-med transition speed and is slower than the med-high transition speed.
159+
- High speed & climb phase :
160+
- The take off phase when the plane exceeds the med-high transition speed and is lower than the specified height above the runway.
161+
162+
The choice between the 3 phases will be random, using the probability of each phase defined in the settings.
163+
164+
### Rearming Options
165+
166+
Each generator can be configured in the following 4 modes:
167+
168+
- OFF : Generator is disabled but settings are kept
169+
- ONCE : The generator will trigger a set of failures only once and go to OFF mode
170+
- TAKE OFF : The generator will wait until FL or TOGA thrust is set to arm itself. It will trigger a set of failures only once until another take off event occurs.
171+
- REPEAT : The generator will trigger a set of failures every time the conditions are met.
172+
173+
### Max Failures and Number of Failures
174+
175+
Each generator may define a specific number of failures to be triggered at the same time.
176+
The set of failures will activate only if the total number of existing failures already occurring on the plane does not exceed the maximum number of failures before their activation.
177+
178+
### Failure Pool Selection
179+
180+
Each failure generator allows to select specifically which failures can be triggered. You may select any combination of failures : individual failures, entire systems or all at once. Only a specified number of failures randomly picked in this set will be triggered by the generator.
181+
182+
!!! tip ""
183+
You can create several failure generators of the same type so that specific failures may happen at specific conditions different to other sets of failures.

0 commit comments

Comments
 (0)