-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo_content_en.yml
More file actions
655 lines (652 loc) · 12.9 KB
/
demo_content_en.yml
File metadata and controls
655 lines (652 loc) · 12.9 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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
enums:
Controllability: [ Controllable, NotControllable]
Observability: [Observable, NotObservable]
Stability: [Stable, Unstable]
CanonicalForm: [ControllerCanonicalForm, ObserverCanonicalForm]
Linear: [Linear, NonLinear]
Proper: [NotProper, Proper, StrictlyProper]
MinimumPhase: [MinimumPhase, NotMinimumPhase]
Coprime: [Coprime, NonCoprime]
MatrixRole: [A, B, C, D, StateFeedback, LuenbergerGain]
TimeFunctionRole: [StateTrajectory, InputTrajectory, StateFeedback]
TFRole: [Plant, Controller]
Flatness: [OutputFlat, OutputNotFlat]
types:
Real: {}
SSNonLinear:
params:
StateDimension:
type: Int
InputDimension:
type: Int
Observability:
type: Observability
Controllability:
type: Controllability
Flatness:
type: Flatness
SSLTV:
params:
StateDimension:
type: Int
InputDimension:
type: Int
Observability:
type: Observability
Controllability:
type: Controllability
SSLTI:
params:
StateDimension:
type: Int
InputDimension:
type: Int
Stability:
type: Stability
CanonicalForm:
type: CanonicalForm
Observability:
type: Observability
Controllability:
type: Controllability
ODE:
params:
Order:
type: Int
Linear:
type: Linear
TF:
params:
Stability:
type: Stability
Proper:
type: Proper
MinimumPhase:
type: MinimumPhase
Coprime:
type: Coprime
Order:
type: Int
Role:
type: TFRole
ListEigenvalues:
params:
Length:
type: Int
PIDParameters: {}
Matrix:
params:
Rows:
type: Int
Columns:
type: Int
Role:
type: MatrixRole
TimeFunction:
params:
Rows:
type: Int
Columns:
type: Int
Role:
type: TimeFunctionRole
ObserverFunction:
params:
StateDimension:
type: Int
InputDimension:
type: Int
OutputDimension:
type: Int
TrajectoryTrackingController:
params:
StateDimension:
type: Int
InputDimension:
type: Int
StepResponse: {}
methods:
Linearization:
inputs:
nonLinearSystem:
type: SSNonLinear
params:
StateDimension: n
outputs:
o:
linearizedSystem:
type: SSLTI
params:
StateDimension: n
SSLTIToNonLinear:
inputs:
linearSystem:
type: SSLTI
params:
StateDimension: n
outputs:
o:
generalSystem:
type: SSNonLinear
params:
StateDimension: n
SSLTVToNonLinear:
inputs:
linearSystem:
type: SSLTV
params:
StateDimension: n
outputs:
o:
generalSystem:
type: SSNonLinear
params:
StateDimension: n
ToControllerCanonicalForm:
inputs:
ltiss:
type: SSLTI
params:
Controllability: Controllable
outputs:
o:
ltiss:
type: SSLTI
params:
CanonicalForm: ControllerCanonicalForm
ToObserverCanonicalForm:
inputs:
ltiss:
type: SSLTI
params:
Observability: Observable
outputs:
o:
ltiss:
type: SSLTI
params:
CanonicalForm: ObserverCanonicalForm
TestControllabilityLTI:
inputs:
ltiss:
type: SSLTI
params:
Controllability: unset
outputs:
controllable:
ltiss:
type: SSLTI
params:
Controllability: Controllable
notControllable:
ltiss:
type: SSLTI
params:
Controllability: NotControllable
TestObservabilityLTI:
inputs:
ltiss:
type: SSLTI
params:
Observability: unset
outputs:
observable:
ltiss:
type: SSLTI
params:
Observability: Observable
notObservable:
ltiss:
type: SSLTI
params:
Observability: NotObservable
TestControllabilityLTV:
inputs:
ssltv:
type: SSLTV
params:
Controllability: unset
outputs:
controllable:
ssltv:
type: SSLTV
params:
Controllability: Controllable
notControllable:
ssltv:
type: SSLTV
params:
Controllability: NotControllable
TestObservabilityLTV:
inputs:
ssltv:
type: SSLTV
params:
Observability: unset
outputs:
observable:
ssltv:
type: SSLTV
params:
Observability: Observable
notObservable:
ssltv:
type: SSLTV
params:
Observability: NotObservable
TestControllabilityNonLinear:
inputs:
ss:
type: SSNonLinear
params:
Controllability: unset
outputs:
controllable:
ss:
type: SSNonLinear
params:
Controllability: Controllable
notControllable:
ss:
type: SSNonLinear
params:
Controllability: NotControllable
undetermined:
ss: # can't be determined
type: SSNonLinear
params:
Controllability: unset
TestObservabilityNonLinear:
inputs:
ss:
type: SSNonLinear
params:
Observability: unset
outputs:
observable:
ss:
type: SSNonLinear
params:
Observability: Observable
notObservable:
ss:
type: SSNonLinear
params:
Observability: NotObservable
undetermined:
ss: # can't be determined
type: SSNonLinear
params:
Observability: unset
TFtoSS:
inputs:
tf:
type: TF
params:
Proper: Proper
Order: n
outputs:
o:
ltiss:
type: SSLTI
params:
Controllability: Controllable
CanonicalForm: ControllerCanonicalForm
StateDimension: n
SStoTF:
inputs:
ltiss:
type: SSLTI
params:
StateDimension: n
InputDimension: 1
outputs:
o:
tf:
type: TF
params:
Order: n
Role: Plant
TestTFStability:
inputs:
tf:
type: TF
params:
Stability: unset
outputs:
stable:
tf:
type: TF
params:
Stability: Stable
unstable:
tf:
type: TF
params:
Stability: Unstable
TestTFProperness:
inputs:
tf:
type: TF
params:
Proper: unset
outputs:
proper:
tf:
type: TF
params:
Proper: Proper
improper:
tf:
type: TF
params:
Proper: NotProper
TestTFCoprime:
inputs:
tf:
type: TF
params:
Coprime: unset
outputs:
coprime:
tf:
type: TF
params:
Coprime: Coprime
nonCoprime:
tf:
type: TF
params:
Coprime: NonCoprime
PolePlacement:
inputs:
ltiss:
type: SSLTI
params:
StateDimension: n
Controllability: Controllable
poles:
type: ListEigenvalues
params:
Length: n
tune: true
outputs:
o:
k:
type: Matrix
params:
Rows: 1
Columns: n
Role: StateFeedback
LuenbergerDesign:
inputs:
ltiss:
type: SSLTI
params:
StateDimension: n
Observability: Observable
poles:
type: ListEigenvalues
params:
Length: n
tune: true
outputs:
o:
k:
type: Matrix
params:
Rows: n
Columns: 1
Role: LuenbergerGain
AssembleLuenbergerObserver:
inputs:
ltiss:
type: SSLTI
params:
StateDimension: n
Observability: Observable
k:
type: Matrix
params:
Role: LuenbergerGain
outputs:
o:
obs:
type: ObserverFunction
ODEtoSS:
inputs:
ode:
type: ODE
outputs:
o:
ss:
type: SSNonLinear
TrajectoryPlanningWithOptimization:
inputs:
ss:
type: SSNonLinear
params:
StateDimension: n
InputDimension: m
Controllability: Controllable
xstart:
type: Matrix
params:
Rows: n
Columns: 1
tune: true
xend:
type: Matrix
params:
Rows: n
Columns: 1
tune: true
tend:
type: Real
tune: true
outputs:
o:
xtraj:
type: TimeFunction
params:
Rows: n
Columns: 1
Role: StateTrajectory
utraj:
type: TimeFunction
params:
Rows: m
Columns: 1
Role: InputTrajectory
LinearizationOnTrajectory:
inputs:
ss:
type: SSNonLinear
params:
StateDimension: n
InputDimension: m
Controllability: s
xtraj:
type: TimeFunction
params:
Rows: n
Columns: 1
Role: StateTrajectory
utraj:
type: TimeFunction
params:
Rows: m
Columns: 1
Role: InputTrajectory
outputs:
o:
ssltv:
type: SSLTV
params:
StateDimension: n
InputDimension: m
Controllability: s
LTVLQRDesign:
inputs:
ssltv:
type: SSLTV
params:
StateDimension: n
InputDimension: m
Controllability: Controllable
q:
type: Matrix
params:
Rows: n
Columns: n
tune: true
r:
type: Matrix
params:
Rows: m
Columns: m
tune: true
outputs:
o:
k:
type: TimeFunction
params:
Rows: m
Columns: n
Role: StateFeedback
LTILQRDesign:
inputs:
sslti:
type: SSLTI
params:
StateDimension: n
InputDimension: m
Controllability: Controllable
q:
type: Matrix
params:
Rows: n
Columns: n
tune: true
r:
type: Matrix
params:
Rows: m
Columns: m
tune: true
outputs:
o:
k:
type: Matrix
params:
Rows: m
Columns: n
Role: StateFeedback
EKFDesign:
inputs:
ss:
type: SSNonLinear
params:
Observability: Observable
StateDimension: n
InputDimension: m
q:
type: Matrix
params:
Rows: n
Columns: n
tune: true
r:
type: Matrix
params:
Rows: m
Columns: m
tune: true
outputs:
o:
obs:
type: ObserverFunction
params:
StateDimension: n
InputDimension: m
AssembleTrajectoryTrackingController:
inputs:
xtraj:
type: TimeFunction
params:
Role: StateTrajectory
Rows: n
Columns: 1
utraj:
type: TimeFunction
params:
Role: InputTrajectory
Rows: m
Columns: 1
k:
type: TimeFunction
params:
Role: StateFeedback
Rows: m
Columns: n
obs:
type: ObserverFunction
params:
InputDimension: m
StateDimension: n
outputs:
o:
controller:
type: TrajectoryTrackingController
params:
StateDimension: n
InputDimension: m
AssemblePIDController:
inputs:
pidParams:
type: PIDParameters
outputs:
o:
pid:
type: TF
params:
Role: Controller
TuneZieglerNichols:
inputs:
stepResponse:
type: StepResponse
outputs:
o:
pidParams:
type: PIDParameters
TuneAbsoluteValueOptimum:
inputs:
tf:
type: TF
params:
Role: Plant
outputs:
o:
pidParams:
type: PIDParameters
TuneSymmetricalOptimum:
inputs:
tf:
type: TF
params:
Role: Plant
outputs:
o:
pidParams:
type: PIDParameters
SimulateStepResponse:
inputs:
tf:
type: TF
params:
Role:
Plant
outputs:
o:
sr:
type: StepResponse