-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExampleDemo1.rtw
executable file
·2584 lines (2584 loc) · 55.2 KB
/
ExampleDemo1.rtw
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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CompiledModel {
Name "ExampleDemo1"
Version "5.0 $Date: 2002/05/30 19:21:33 $"
ModelVersion "1.190"
GeneratedOn "Fri Apr 25 13:07:19 2003"
ExprFolding 1
TargetStyle StandAloneTarget
Solver VariableStepDiscrete
SolverType VariableStep
StartTime 0.0
StopTime 1.0
LoadInitialState no
VariableStepOpts {
RelTol -1.0
AbsTol []
AutoAbsTol []
Refine 1
OutputTimes []
OutputTimesOption all
MaxStep 0.00052083333333333333
MinStep 0.0
MaxNumMinSteps -1.0
InitialStep 0.00052083333333333333
MaxOrder -1
TID01EQ 0
}
SolverResetInfo {
ZCCacheNeedsReset 0
DerivCacheNeedsReset 0
NumNonContDerivSignals 0
}
DataLoggingOpts {
SaveFormat 0
MaxRows 1000
Decimation 1
TimeSaveName "tout"
StateSaveName ""
OutputSaveName ""
NumOutputSaveNames 0
FinalStateName ""
NumLoggedStates 2
}
NumModelInputs 0
NumModelOutputs 0
NumNonVirtBlocksInModel 21
DirectFeedthrough no
NumContStates 0
ModelHasProjections no
ZCFindingDisabled no
NumNonsampledZCs 1
NumZCEvents 0
NumBlockSignals 16
NumBlockParams 37
NumAlgebraicLoops 0
AllSampleTimesInherited no
InvariantConstants no
FundamentalStepSize 0.00052083333333333333
SingleRate no
NumSampleTimes 3
SampleTime {
TID 0
PeriodAndOffset [0.0, 0.0]
}
SampleTime {
TID 1
PeriodAndOffset [0.00052083333333333333, 0.0]
}
SampleTime {
TID 2
PeriodAndOffset [0.03125, 0.0]
}
NumVariableSampleTimes 0
DataTypes {
NumDataTypes 13
NumSLBuiltInDataTypes 9
StrictBooleanCheckEnabled 1
DataType {
DTName double
Id 0
IdAliasedTo -10
IdResolvesTo 0
IsSigned 0
RequiredBits 0
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName single
Id 1
IdAliasedTo -10
IdResolvesTo 1
IsSigned 0
RequiredBits 0
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName int8
Id 2
IdAliasedTo -10
IdResolvesTo 2
IsSigned 1
RequiredBits 8
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName uint8
Id 3
IdAliasedTo -10
IdResolvesTo 3
IsSigned 0
RequiredBits 8
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName int16
Id 4
IdAliasedTo -10
IdResolvesTo 4
IsSigned 1
RequiredBits 16
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName uint16
Id 5
IdAliasedTo -10
IdResolvesTo 5
IsSigned 0
RequiredBits 16
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName int32
Id 6
IdAliasedTo -10
IdResolvesTo 6
IsSigned 1
RequiredBits 32
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName uint32
Id 7
IdAliasedTo -10
IdResolvesTo 7
IsSigned 0
RequiredBits 32
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName boolean
Id 8
IdAliasedTo -10
IdResolvesTo 8
IsSigned 0
RequiredBits 8
FixedExp 0
FracSlope 1
Bias 0
IsFixedPoint 0
}
DataType {
DTName fcn_call
Id 9
IdAliasedTo -10
IdResolvesTo 9
IsFixedPoint 0
}
DataType {
DTName integer
Id 10
IdAliasedTo -10
IdResolvesTo 10
IsFixedPoint 0
}
DataType {
DTName pointer
Id 11
IdAliasedTo -10
IdResolvesTo 11
IsFixedPoint 0
}
DataType {
DTName action
Id 12
IdAliasedTo -10
IdResolvesTo 12
IsFixedPoint 0
}
}
TargetProperties {
HasObject 0
}
HasEcoderProperties 0
NumBlockTypeCounts 13
BlockTypeCount {
Type ComplexToMagnitudeAngle
Count 1
}
BlockTypeCount {
Type Constant
Count 1
}
BlockTypeCount {
Type Display
Count 3
}
BlockTypeCount {
Type Gain
Count 1
}
BlockTypeCount {
Type Product
Count 2
}
BlockTypeCount {
Type RealImagToComplex
Count 1
}
BlockTypeCount {
Type Scope
Count 2
}
BlockTypeCount {
Type "S-Function"
Count 3
}
BlockTypeCount {
Type Sin
Count 3
}
BlockTypeCount {
Type Step
Count 1
}
BlockTypeCount {
Type Sum
Count 1
}
BlockTypeCount {
Type TransferFcn
Count 1
}
BlockTypeCount {
Type ZeroOrderHold
Count 1
}
NumSFunctionNameCounts 3
SFunctionNameCount {
Name dab2
Count 1
}
SFunctionNameCount {
Name KalmanParameters
Count 1
}
SFunctionNameCount {
Name kfamp
Count 1
}
ExternalInputs {
ExternalInputDefaults {
RecordType ExternalInput
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
DataTypeIdx 0
ComplexSignal no
DirectFeedThrough yes
SigLabel ""
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
}
NumExternalInputs 0
}
ExternalOutputs {
ExternalOutputDefaults {
RecordType ExternalOutput
Width 1
MemoryMapIdx [-1,-1,-1]
SigLabel ""
HasObject 0
}
NumExternalOutputs 0
}
BlockOutputs {
GlobalBlockOutputDefaults {
RecordType BlockOutput
SigSrc []
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
TestPoint no
ConstExpr 0
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
IdentifierScope "top-level"
Invariant no
InitialValue []
DataTypeIdx 0
ComplexSignal no
SigLabel ""
SigConnected all
NumReusedBlockOutputs 0
AcceleratorPadding 0
}
LocalBlockOutputDefaults {
RecordType BlockOutput
SigSrc []
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
TestPoint no
ConstExpr 0
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
IdentifierScope "top-level"
Invariant no
InitialValue []
DataTypeIdx 0
ComplexSignal no
SigLabel ""
SigConnected all
NumReusedBlockOutputs 0
AcceleratorPadding 0
}
ExternalBlockOutputDefaults {
RecordType BlockOutput
SigSrc []
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
TestPoint no
ConstExpr 0
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
IdentifierScope "top-level"
Invariant no
InitialValue []
DataTypeIdx 0
ComplexSignal no
SigLabel ""
SigConnected all
NumReusedBlockOutputs 0
AcceleratorPadding 0
}
ConstBlockOutputDefaults {
RecordType BlockOutput
SigSrc []
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
TestPoint no
ConstExpr 0
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
IdentifierScope "top-level"
RequiredInConstBlockIO 0
DoNotConstify 0
Invariant no
InitialValue []
DataTypeIdx 0
ComplexSignal no
SigLabel ""
SigConnected all
NumReusedBlockOutputs 0
AcceleratorPadding 0
}
ConstOutputExprDefaults {
RecordType BlockOutput
SigSrc []
Width 1
MemoryMapIdx [-1,-1,-1]
HasObject 0
TestPoint no
ConstExpr 0
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
IdentifierScope "top-level"
Invariant no
InitialValue []
DataTypeIdx 0
ComplexSignal no
SigLabel ""
SigConnected all
NumReusedBlockOutputs 0
AcceleratorPadding 0
}
NumGlobalBlockOutputs 5
NumLocalBlockOutputs 8
NumExternalBlockOutputs 0
NumConstBlockOutputs 0
NumConstOutputExpr 1
GlobalBlockOutput {
Identifier Product
LogicalSrc B0
SigSrc [0, -1, 5, 0]
}
GlobalBlockOutput {
Identifier Gain
LogicalSrc B1
SigSrc [0, -1, 7, 0]
}
GlobalBlockOutput {
Identifier Zero_Order_Hold
LogicalSrc B2
SigSrc [0, -1, 8, 0]
}
GlobalBlockOutput {
Identifier A_D_Buffer
LogicalSrc B3
SigSrc [0, -1, 9, 0]
}
GlobalBlockOutput {
Identifier Kalman_Filter
LogicalSrc B4
Width 3
SigSrc [0, -1, 11, 0]
}
LocalBlockOutput {
Identifier Real_Imag_to_Complex
LogicalSrc B5
SigDeclSysIdx 0
ComplexSignal yes
SigSrc [0, -1, 12, 0]
}
LocalBlockOutput {
Identifier Sine_Wave
LogicalSrc B6
SigDeclSysIdx 0
SigSrc [0, -1, 0, 0]
}
LocalBlockOutput {
Identifier Sine_Wave1
LogicalSrc B7
SigDeclSysIdx 0
SigSrc [0, -1, 1, 0]
}
LocalBlockOutput {
Identifier Sine_Wave2
LogicalSrc B8
SigDeclSysIdx 0
SigSrc [0, -1, 2, 0]
}
LocalBlockOutput {
Identifier Sum
LogicalSrc B9
SigDeclSysIdx 0
SigSrc [0, -1, 3, 0]
}
LocalBlockOutput {
Identifier Complex_to_Magnitude_Angle
LogicalSrc B10
SigDeclSysIdx 0
SigSrc [0, -1, 13, 0]
}
LocalBlockOutput {
Identifier temp11
LogicalSrc B11
SigDeclSysIdx 0
SigSrc [0, -1, 6, 0]
}
LocalBlockOutput {
Identifier temp12
LogicalSrc B12
SigDeclSysIdx 0
SigSrc [0, -1, 15, 0]
}
ConstOutputExpr {
Identifier Rad2Degrees
LogicalSrc B13
ConstExpr 1
SigSrc [0, -1, 14, 0]
}
}
DWorks {
DWorkDefaults {
RecordType DWork
Width 1
MemoryMapIdx [-1,-1,-1]
StorageClass Auto
CustomStorageClassVersion 0
StorageTypeQualifier ""
HasObject 0
DataTypeIdx 0
ComplexSignal no
Origin "DWORK"
UsedAs "DWORK"
InitialValue []
AcceleratorPadding 0
}
NumDWorks 5
DWork {
Identifier A_D_Buffer_DSTATE
Origin "DSTATE"
UsedAs "DSTATE"
SigSrc [0, -1, 9, 0]
}
DWork {
Identifier Kalman_Filter_DSTATE
Width 15
Origin "DSTATE"
UsedAs "DSTATE"
InitialValue Vector(15)
[0.0, 0.0, 0.0, 0.49576486081545806, 0.079591287753978404, ...
9.0608303140587169e-029, 0.057599999999999998, 0.0, 0.0, 0.0, ...
0.057599999999999998, 0.0, 0.0, 0.0, 0.057599999999999998]
SigSrc [0, -1, 11, 0]
}
DWork {
Identifier Display_Analog_Digital_Si_PWORK
DataTypeIdx 11
Origin "PWORK"
SigSrc [0, -1, 17, 0]
}
DWork {
Identifier Estimated_Amplitude_Phase_PWORK
DataTypeIdx 11
Origin "PWORK"
SigSrc [0, -1, 18, 0]
}
DWork {
Identifier Step_MODE
DataTypeIdx 10
Origin "MODE"
SigSrc [0, -1, 4, 0]
}
}
SubsystemModeVector {
ModeVector [-1]
}
ContStates {
NumContStates 0
}
NonsampledZCs {
NonsampledZCDefaults {
Width 1
}
NumNonsampledZCs 1
NonsampledZC {
Identifier Step_NSZC
SigSrc [0, -1, 4]
Direction [1]
}
}
ZCEvents {
NumZCEvents 0
}
BlockDefaults {
RecordType Block
InMask no
AlgebraicLoopId 0
PortBasedSampleTimes no
ContStates [0,0,0]
ModeVector [0,-1]
RWork [0,-1]
IWork [0,-1]
PWork [0,-1]
DiscStates [0,-1]
NumDWork 0
NumNonsampledZCs 0
ZCEvents [0,0]
RollRegions []
ModelEventSystemsToCall []
NumDataInputPorts 0
NumControlInputPorts 0
NumDataOutputPorts 0
Parameters [0,0]
NumParameterGroups 0
Description []
ReducedBlocksConnected []
TLCExprCompliant 0
CustomStorageClassCompliant 1
EnforceIntegerDowncast 1
HaveBlockComment 0
InFixptMode 0
}
ParameterDefaults {
RecordType BlockParameter
MemoryMapIdx [-1,-1,-1]
OriginalDataTypeIdx 0
DataTypeIdx 0
ComplexSignal no
Width 1
Dimensions [1, 1]
Tunable on
StorageClass Auto
NeedParenthesis 1
StringTransformed ""
Value [0.0]
}
DataInputPortDefaults {
RecordType DataInputPort
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
SystemToCall [-1, -1]
ComplexSignal no
FrameData no
RecurseOnInput 0
HaveGround no
BufferDstPort -1
AllowScalarExpandedExpr 0
}
HiddenDataInputPortDefaults {
RecordType DataInputPort
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
SystemToCall [-1, -1]
ComplexSignal no
FrameData no
RecurseOnInput 0
HaveGround no
BufferDstPort -1
AllowScalarExpandedExpr 0
}
ControlInputPortDefaults {
RecordType ControlInputPort
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
FrameData no
RecurseOnInput 0
HaveGround no
BufferDstPort -1
}
HiddenControlInputPortDefaults {
RecordType ControlInputPort
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
FrameData no
RecurseOnInput 0
HaveGround no
BufferDstPort -1
}
DataOutputPortDefaults {
RecordType DataOutputPort
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
OutputExpression 0
TrivialOutputExpression 0
FrameData no
Dimensions [-1,-1]
}
CanonicalInputArgDefaults {
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
}
CanonicalInputArgDefDefaults {
Identifier ""
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
StorageClass Auto
}
CanonicalOutputArgDefaults {
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
}
CanonicalOutputArgDefDefaults {
Identifier ""
SignalSrc []
SignalOffset [0]
Width 1
DataTypeIdx 0
ComplexSignal no
StorageClass Auto
}
CanonicalDWorkArgDefaults {
SignalSrc []
}
CanonicalDWorkArgDefDefaults {
FirstSignalSrc []
}
ModelParameters {
NumParameters 35
NumInrtP 35
NumConstPrms 0
NumExportedGlobal 0
NumImportedExtern 0
NumImportedExternPointer 0
NumCustomStorageClass 0
ParameterDefaults {
RecordType ModelParameter
MemoryMapIdx [-1,-1,-1]
HasObject 0
DataTypeIdx 0
OriginalDataTypeIdx 0
ComplexSignal 0
Width 1
Dimensions [1, 1]
Tunable yes
RollVarDeclared 0
Transformed no
StorageClass Auto
CustomStorageClassVersion 0
TypeQualifier ""
IsSfcnSizePrm 0
SystemScoping [0, 0]
Value [0.0]
AcceleratorPadding 0
}
Parameter {
Identifier Sine_Wave_Amp
LogicalSrc P0
Value [1.0]
SystemScoping [0, 1]
ReferencedBy Matrix(1,4)
[[0, -1, 0, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave_Bias
LogicalSrc P1
ReferencedBy Matrix(1,4)
[[0, -1, 0, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave_Freq
LogicalSrc P2
Value [376.99111843077515]
ReferencedBy Matrix(1,4)
[[0, -1, 0, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave_Phase
LogicalSrc P3
ReferencedBy Matrix(1,4)
[[0, -1, 0, 3];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave1_Amp
LogicalSrc P4
ReferencedBy Matrix(1,4)
[[0, -1, 1, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave1_Bias
LogicalSrc P5
ReferencedBy Matrix(1,4)
[[0, -1, 1, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave1_Freq
LogicalSrc P6
Value [753.98223686155029]
ReferencedBy Matrix(1,4)
[[0, -1, 1, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave1_Phase
LogicalSrc P7
ReferencedBy Matrix(1,4)
[[0, -1, 1, 3];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave2_Amp
LogicalSrc P8
ReferencedBy Matrix(1,4)
[[0, -1, 2, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave2_Bias
LogicalSrc P9
ReferencedBy Matrix(1,4)
[[0, -1, 2, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave2_Freq
LogicalSrc P10
Value [1130.9733552923256]
ReferencedBy Matrix(1,4)
[[0, -1, 2, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Sine_Wave2_Phase
LogicalSrc P11
ReferencedBy Matrix(1,4)
[[0, -1, 2, 3];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Step_Time
LogicalSrc P12
ReferencedBy Matrix(1,4)
[[0, -1, 4, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Step_Y0
LogicalSrc P13
ReferencedBy Matrix(1,4)
[[0, -1, 4, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Step_YFinal
LogicalSrc P14
Value [1.0]
ReferencedBy Matrix(1,4)
[[0, -1, 4, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Analog_Filter_A
LogicalSrc P15
Value []
Width 0
Dimensions [0, 1]
ReferencedBy Matrix(1,4)
[[0, -1, 6, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Analog_Filter_C
LogicalSrc P16
Value []
Width 0
Dimensions [1, 0]
ReferencedBy Matrix(1,4)
[[0, -1, 6, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Analog_Filter_D
LogicalSrc P17
Value [1.0]
ReferencedBy Matrix(1,4)
[[0, -1, 6, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Analog_Filter_X0
LogicalSrc P18
Value []
Width 0
Dimensions [0, 0]
ReferencedBy Matrix(1,4)
[[0, -1, 6, 3];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Gain_Gain
LogicalSrc P19
Value [1.0]
ReferencedBy Matrix(1,4)
[[0, -1, 7, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P1_Size
LogicalSrc P20
Value [1.0, 1.0]
Width 2
Dimensions [1, 2]
IsSfcnSizePrm 1
ReferencedBy Matrix(1,4)
[[0, -1, 9, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P1
LogicalSrc P21
Value [1.0]
ReferencedBy Matrix(1,4)
[[0, -1, 9, 1];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P2_Size
LogicalSrc P22
Value [1.0, 1.0]
Width 2
Dimensions [1, 2]
IsSfcnSizePrm 1
ReferencedBy Matrix(1,4)
[[0, -1, 9, 2];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P2
LogicalSrc P23
Value [1920.0]
ReferencedBy Matrix(1,4)
[[0, -1, 9, 3];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P3_Size
LogicalSrc P24
Value [1.0, 1.0]
Width 2
Dimensions [1, 2]
IsSfcnSizePrm 1
ReferencedBy Matrix(1,4)
[[0, -1, 9, 4];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P3
LogicalSrc P25
ReferencedBy Matrix(1,4)
[[0, -1, 9, 5];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P4_Size
LogicalSrc P26
Value [1.0, 1.0]
Width 2
Dimensions [1, 2]
IsSfcnSizePrm 1
ReferencedBy Matrix(1,4)
[[0, -1, 9, 6];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier A_D_Buffer_P4
LogicalSrc P27
Value [1.0]
ReferencedBy Matrix(1,4)
[[0, -1, 9, 7];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Kalman_Filter_P1_Size
LogicalSrc P28
Value [3.0, 1.0]
Width 2
Dimensions [1, 2]
IsSfcnSizePrm 1
ReferencedBy Matrix(1,4)
[[0, -1, 11, 0];]
OwnerSysIdx [0, -1]
}
Parameter {
Identifier Kalman_Filter_P1
LogicalSrc P29
Value Matrix(3,1)
[[0.0]; [0.0]; [0.0];]
Width 3
Dimensions [3, 1]