-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerformance.xml
More file actions
74 lines (63 loc) · 3.37 KB
/
Copy pathPerformance.xml
File metadata and controls
74 lines (63 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<!--
Performance.xml — StudSys 24 / ATC 24 (PTFS)
Aircraft performance profiles.
Type codes match FDRManager.NormaliseType() output.
Values are approximate and tuned for the ATC 24 game
where aircraft behaviour is simplified.
-->
<Performance>
<!-- ══════════════════════════════════════════════════
HEAVY JET
══════════════════════════════════════════════════ -->
<Aircraft Type="A388" WakeCategory="H"
ClimbRate="1800" DescentRate="1800"
CruiseSpeed="490" ApproachSpeed="145"
ServiceCeiling="430" />
<Aircraft Type="A333" WakeCategory="H"
ClimbRate="2000" DescentRate="1800"
CruiseSpeed="470" ApproachSpeed="140"
ServiceCeiling="410" />
<Aircraft Type="B744" WakeCategory="H"
ClimbRate="1800" DescentRate="1800"
CruiseSpeed="490" ApproachSpeed="150"
ServiceCeiling="430" />
<Aircraft Type="B77W" WakeCategory="H"
ClimbRate="2200" DescentRate="2000"
CruiseSpeed="490" ApproachSpeed="145"
ServiceCeiling="430" />
<Aircraft Type="B789" WakeCategory="H"
ClimbRate="2500" DescentRate="2000"
CruiseSpeed="490" ApproachSpeed="138"
ServiceCeiling="430" />
<!-- ══════════════════════════════════════════════════
MEDIUM JET
══════════════════════════════════════════════════ -->
<Aircraft Type="A320" WakeCategory="M"
ClimbRate="2500" DescentRate="2000"
CruiseSpeed="450" ApproachSpeed="135"
ServiceCeiling="390" />
<Aircraft Type="A321" WakeCategory="M"
ClimbRate="2400" DescentRate="2000"
CruiseSpeed="450" ApproachSpeed="137"
ServiceCeiling="390" />
<Aircraft Type="B738" WakeCategory="M"
ClimbRate="2500" DescentRate="2000"
CruiseSpeed="450" ApproachSpeed="138"
ServiceCeiling="410" />
<!-- ══════════════════════════════════════════════════
LIGHT / GA
══════════════════════════════════════════════════ -->
<Aircraft Type="C172" WakeCategory="L"
ClimbRate="700" DescentRate="500"
CruiseSpeed="110" ApproachSpeed="65"
ServiceCeiling="140" />
<!-- ══════════════════════════════════════════════════
DEFAULT FALLBACK
Used when NormaliseType returns an unknown code.
══════════════════════════════════════════════════ -->
<Default WakeCategory="M"
ClimbRate="2000" DescentRate="1800"
CruiseSpeed="420" ApproachSpeed="135"
ServiceCeiling="370" />
</Performance>