]> git.mxchange.org Git - flightgear.git/blob - src/FDM/YASim/Airplane.hpp
When we are asked to produce no force on a Surface (e.g. a weight that
[flightgear.git] / src / FDM / YASim / Airplane.hpp
1 #ifndef _AIRPLANE_HPP
2 #define _AIRPLANE_HPP
3
4 #include "ControlMap.hpp"
5 #include "Model.hpp"
6 #include "Wing.hpp"
7 #include "Rotor.hpp"
8 #include "Vector.hpp"
9
10 namespace yasim {
11
12 class Gear;
13 class Hook;
14 class Launchbar;
15 class Thruster;
16
17 class Airplane {
18 public:
19     Airplane();
20     ~Airplane();
21
22     void iterate(float dt);
23     void calcFuelWeights();
24
25     ControlMap* getControlMap();
26     Model* getModel();
27
28     void setPilotPos(float* pos);
29     void getPilotPos(float* out);
30
31     void getPilotAccel(float* out);
32
33     void setWeight(float weight);
34
35     void setWing(Wing* wing);
36     void setTail(Wing* tail);
37     void addVStab(Wing* vstab);
38
39     void addRotor(Rotor* Rotor);
40     int getNumRotors() {return _rotors.size();}
41     Rotor* getRotor(int i) {return (Rotor*)_rotors.get(i);}
42
43     void addFuselage(float* front, float* back, float width,
44                      float taper=1, float mid=0.5);
45     int addTank(float* pos, float cap, float fuelDensity);
46     void addGear(Gear* g);
47     void addHook(Hook* h);
48     void addLaunchbar(Launchbar* l);
49     void addThruster(Thruster* t, float mass, float* cg);
50     void addBallast(float* pos, float mass);
51
52     int addWeight(float* pos, float size);
53     void setWeight(int handle, float mass);
54
55     void setApproach(float speed, float altitude, float aoa, float fuel);
56     void setCruise(float speed, float altitude, float fuel);
57
58     void setElevatorControl(int control);
59     void addApproachControl(int control, float val);
60     void addCruiseControl(int control, float val);
61
62     void addSolutionWeight(bool approach, int idx, float wgt);
63
64     int numGear();
65     Gear* getGear(int g);
66     Hook* getHook();
67     Launchbar* getLaunchbar();
68
69     int numThrusters() { return _thrusters.size(); }
70     Thruster* getThruster(int n) {
71         return ((ThrustRec*)_thrusters.get(n))->thruster; }
72     
73     int numTanks();
74     void setFuelFraction(float frac); // 0-1, total amount of fuel
75     float getFuel(int tank); // in kg!
76     float setFuel(int tank, float fuel); // in kg!
77     float getFuelDensity(int tank); // kg/m^3
78     float getTankCapacity(int tank);
79
80     void compile(); // generate point masses & such, then solve
81     void initEngines();
82     void stabilizeThrust();
83
84     // Solution output values
85     int getSolutionIterations();
86     float getDragCoefficient();
87     float getLiftRatio();
88     float getCruiseAoA();
89     float getTailIncidence();
90     float getApproachElevator() { return _approachElevator.val; }
91     char* getFailureMsg();
92
93 private:
94     struct Tank { float pos[3]; float cap; float fill;
95                   float density; int handle; };
96     struct Fuselage { float front[3], back[3], width, taper, mid; };
97     struct GearRec { Gear* gear; Surface* surf; float wgt; };
98     struct ThrustRec { Thruster* thruster;
99                        int handle; float cg[3]; float mass; };
100     struct Control { int control; float val; };
101     struct WeightRec { int handle; Surface* surf; };
102     struct SolveWeight { bool approach; int idx; float wgt; };
103
104     void runCruise();
105     void runApproach();
106     void setupState(float aoa, float speed, State* s);
107     void solveGear();
108     void solve();
109     void solveHelicopter();
110     float compileWing(Wing* w);
111     float compileRotor(Rotor* w);
112     float compileFuselage(Fuselage* f);
113     void compileGear(GearRec* gr);
114     void applyDragFactor(float factor);
115     void applyLiftRatio(float factor);
116     float clamp(float val, float min, float max);
117     void addContactPoint(float* pos);
118     void compileContactPoints();
119     float normFactor(float f);
120     void updateGearState();
121     void setupWeights(bool isApproach);
122
123     Model _model;
124     ControlMap _controls;
125
126     float _emptyWeight;
127     float _pilotPos[3];
128
129     Wing* _wing;
130     Wing* _tail;
131
132     Vector _fuselages;
133     Vector _vstabs;
134     Vector _tanks;
135     Vector _thrusters;
136     float _ballast;
137
138     Vector _gears;
139     Vector _contacts; // non-gear ground contact points
140     Vector _weights;
141     Vector _surfs; // NON-wing Surfaces
142
143     Vector _rotors;
144
145     Vector _solveWeights;
146
147     Vector _cruiseControls;
148     State _cruiseState;
149     float _cruiseP;
150     float _cruiseT;
151     float _cruiseSpeed;
152     float _cruiseWeight;
153     float _cruiseFuel;
154
155     Vector _approachControls;
156     State _approachState;
157     float _approachP;
158     float _approachT;
159     float _approachSpeed;
160     float _approachAoA;
161     float _approachWeight;
162     float _approachFuel;
163
164     int _solutionIterations;
165     float _dragFactor;
166     float _liftRatio;
167     float _cruiseAoA;
168     float _tailIncidence;
169     Control _approachElevator;
170     char* _failureMsg;
171 };
172
173 }; // namespace yasim
174 #endif // _AIRPLANE_HPP