How to initialize a bus with a unit delay block?
조회 수: 4 (최근 30일)
이전 댓글 표시
I'm trying to initialize a bus from a unit delay block. I have created the following bus:
and defined a structure in the base workspace with the following code:
clear state
state = struct;
state.JulianDate = 2458773.91667;
state.Position = [6547.177196; 1754.310842; 0] * 1e3;
state.Velocity = [-1.744249; 6.509626; 3.659120] * 1e3;
state.Orientation = [0; 0; 0; 1];
state.AngularVelocity = [0; 0; 0];
If I use this structure for the "Initial condition" parameter of the unit delay block in the following model
where State In and State Out are explicitly set to be "Data Type: Bus: State", I get the following error:
I've followed the instructions on this page: https://www.mathworks.com/help/simulink/ug/specifying-initial-conditions-for-bus-signals.html but apparently I didn't get it right. What am I missing ?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Sources에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!