-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestAircraftFeederVaryingAltitudes.java
More file actions
65 lines (62 loc) · 2.55 KB
/
TestAircraftFeederVaryingAltitudes.java
File metadata and controls
65 lines (62 loc) · 2.55 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
package cas;
import Ertsys.*;
public class TestAircraftFeederVaryingAltitudes implements IAircraftFeeder
{
public Aircraft getAircraftToInject()
{
return null;
}
public _eSeq getInitialSeqOfAircrafts()
{
return new _eSeq()._lAppend(
((_eAny) new Aircraft(new Vector(150.0,
150.0, 12800.0, VectorType.Position,
(VectorType) null), new Vector(60.0, 0.0, 0.0,
VectorType.Velocity, (VectorType) null), 50.0,
_eSystem._lString("A"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(350.0,
150.0, 12100.0, VectorType.Position,
(VectorType) null), new Vector(-20.0, 0.0, 0.0,
VectorType.Velocity, (VectorType) null), 40.0,
_eSystem._lString("B"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(550.0,
180.0, 12800.0, VectorType.Position,
(VectorType) null), new Vector(60.0, 0.0, 0.0,
VectorType.Velocity, (VectorType) null), 50.0,
_eSystem._lString("C"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(700.0,
150.0, 12100.0, VectorType.Position,
(VectorType) null), new Vector(-20.0, 0.0, 0.0,
VectorType.Velocity, (VectorType) null), 20.0,
_eSystem._lString("D"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(460.0,
460.0, 12800.0, VectorType.Position,
(VectorType) null), new Vector(60.0, 60.0, 0.0,
VectorType.Velocity, (VectorType) null), 50.0,
_eSystem._lString("E"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(512.0,
512.0, 12100.0, VectorType.Position,
(VectorType) null), new Vector(-60.0, -60.0, 0.0,
VectorType.Velocity, (VectorType) null), 40.0,
_eSystem._lString("F"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(150.0,
500.0, 13000.0, VectorType.Position,
(VectorType) null), new Vector(60.0, -60.0, 0.0,
VectorType.Velocity, (VectorType) null), 50.0,
_eSystem._lString("G"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null)),
((_eAny) new Aircraft(new Vector(350.0,
300.0, 12100.0, VectorType.Position,
(VectorType) null), new Vector(-60.0, 60.0, 0.0,
VectorType.Velocity, (VectorType) null), 40.0,
_eSystem._lString("H"), (char) 0, AircraftModel.Boeing777200, (
AircraftModel) null))
);
}
}