forked from andybarry/simflight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elevonSketch.m
431 lines (326 loc) · 5.22 KB
/
elevonSketch.m
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
clear
%{
%% aircraft #1
command_us_left = [
1509
1559
1609
1659
1709
1759
1809
1859
1909
1459
1409
1359
1309
1259
1209
1159
%1109
];
degrees_left = [
6.9
12.5
18.5
26.5
32.0
40.0
47.7
57.0
64.5
2.0
-2.5
-9.0
-13.5
-19.5
-22.9
-27.0
%-27.0
];
radians_left = deg2rad(degrees_left);
figure(1)
clf
plot(command_us_left, radians_left, '*');
%
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = 0.002114 (0.001982, 0.002246)
% p2 = -3.011 (-3.216, -2.806)
%
% Goodness of fit:
% SSE: 0.0451
% R-square: 0.9883
% Adjusted R-square: 0.9874
% RMSE: 0.05676
%
fit_us = 1100:1950;
fit_left = 0.002114 * fit_us -3.011; % min = 1150, max = 1909
hold on
plot(fit_us, fit_left, 'r-')
legend('Data', 'Fit','Location','NorthWest');
xlabel('Command (us)');
ylabel('Deflection (rad)');
command_us_right = [
1609
1559
1509
1459
1409
1359
1309
1259
1209
1659
1709
1759
1809
%1859
%1909
];
degrees_right = [
0
4.5
9.5
16.6
21.5
33.0
39.1
48.2
54.3
-7.4
-13.2
-20.0
-24.5
%-25.5
%-25.3
];
radians_right = deg2rad(degrees_right);
figure(2)
clf
plot(command_us_right, radians_right, '*');
%
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = -0.0023 (-0.002428, -0.002172)
% p2 = 3.688 (3.494, 3.882)
%
% Goodness of fit:
% SSE: 0.01688
% R-square: 0.993
% Adjusted R-square: 0.9924
% RMSE: 0.03918
fit_right = -0.0023 * fit_us + 3.688; % min = 1209, max = 1809
hold on
plot(fit_us, fit_right, 'r-');
legend('Data', 'Fit');
xlabel('Command (us)');
ylabel('Deflection (rad)');
%}
%% aircraft #2
command_us_left3 = [
1377
1327
1276
1226
1176
1125
1428
1478
1528
1579
1629
1673
1724
];
degrees_left2 = [
0
-6.4
-13.9
-19.0
-26.0
-27.6
6.0
11.0
18.4
27.5
30.5
39.7
44.7
];
radians_left3 = deg2rad(degrees_left2);
figure(1)
clf
plot(command_us_left3, radians_left3, '*');
xlabel('Command (us)');
ylabel('Deflection (rad)');
title('Airplane #2, Elevon Left');
grid on
% -- cftool --
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = 0.002195 (0.002095, 0.002295)
% p2 = -3.017 (-3.161, -2.873)
%
% Goodness of fit:
% SSE: 0.01038
% R-square: 0.9953
% Adjusted R-square: 0.9949
% RMSE: 0.03073
%
fit_us3 = 1100:1950;
fit_left3 = 0.002195 * fit_us3 - 3.017;
hold on
plot(fit_us3, fit_left3, 'r-');
legend('Data', 'Linear Fit', 'Location', 'NorthWest');
command_us_right3 = [
1470
1520
1569
1619
1669
1718
1420
1371
1321
1272
1222
1169
];
degrees_right3 = [
0
-2.9
-10.6
-16.9
-19.5
-24.6
5.9
11.5
15.3
22.6
27.6
36.3
];
radians_right3 = deg2rad(degrees_right3);
figure(2)
clf
plot(command_us_right3, radians_right3, '*');
xlabel('Command (us)');
ylabel('Deflection (rad)');
title('Airplane #2, Elevon Right');
grid on
% -- cftool --
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = -0.0019 (-0.001995, -0.001806)
% p2 = 2.811 (2.674, 2.948)
%
% Goodness of fit:
% SSE: 0.006342
% R-square: 0.9951
% Adjusted R-square: 0.9946
% RMSE: 0.02518
fit_us3 = 1100:1950;
fit_right3 = -0.0019 * fit_us3 + 2.811; % min = 1209, max = 1809
hold on
plot(fit_us3, fit_right3, 'r-');
%legend('Data', 'Linear Fit');
%% aircraft #3
command_us_left3 = [
1400
1500
1600
1700
1800
1300
1200
1100
];
degrees_left3 = [
0
16
30
44
56
-13.6
-21.4
-27.8
];
radians_left3 = deg2rad(degrees_left3);
figure(1)
clf
plot(command_us_left3, radians_left3, '*');
xlabel('Command (us)');
ylabel('Deflection (rad)');
title('Airplane #3, Elevon Left');
grid on
% -- cftool --
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = 0.002203 (0.001955, 0.002452)
% p2 = -3.013 (-3.378, -2.648)
%
% Goodness of fit:
% SSE: 0.02599
% R-square: 0.9874
% Adjusted R-square: 0.9853
% RMSE: 0.06582
%
fit_us3 = 1100:1950;
fit_left3 = 0.002203 * fit_us3 -3.013;
hold on
plot(fit_us3, fit_left3, 'r-');
legend('Data', 'Linear Fit', 'Location', 'NorthWest');
command_us_right3 = [
1400
1500
1600
1700
1300
1200
1100
1000
];
degrees_right3 = [
0
-9.7
-23.2
-27
7
20.2
36
51
];
radians_right3 = deg2rad(degrees_right3);
figure(2)
clf
plot(command_us_right3, radians_right3, '*');
xlabel('Command (us)');
ylabel('Deflection (rad)');
title('Airplane #3, Elevon Right');
grid on
% -- cftool --
% Linear model Poly1:
% f(x) = p1*x + p2
% Coefficients (with 95% confidence bounds):
% p1 = -0.00195 (-0.002222, -0.001679)
% p2 = 2.752 (2.38, 3.123)
%
% Goodness of fit:
% SSE: 0.03102
% R-square: 0.981
% Adjusted R-square: 0.9778
% RMSE: 0.0719
fit_us3 = 1100:1950;
fit_right3 = -0.00195 * fit_us3 + 2.752; % min = 1209, max = 1809
hold on
plot(fit_us3, fit_right3, 'r-');
%legend('Data', 'Linear Fit');
disp('--------');
disp('Use wolfram alpha to compute inverse of lines');