필터 지우기
필터 지우기

Why sum block outputs value half of the input?

조회 수: 1 (최근 30일)
shubham aadhe
shubham aadhe 2020년 8월 3일
댓글: shubham aadhe 2020년 8월 3일
Hello,
I am new to simulink and trying to understand why this system always gives the output half of the input.
If you calculate the the output
it should be 1 - 0 = 1
next step, 1 - 1 = 0
next step, 1 - 0 = 1
and so on.
How to understand the current behavior of the system?
  댓글 수: 2
Roger J
Roger J 2020년 8월 3일
Looks like you have an algebraic loop. See the following
https://www.mathworks.com/matlabcentral/answers/95310-what-are-algebraic-loops-in-simulink-and-how-do-i-solve-them#answer_104662
To get the alternating 1 and zero, try adding a delay before the ”-” input on your adder.
shubham aadhe
shubham aadhe 2020년 8월 3일
Thank you Roger.
I got my concept cleared.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2020년 8월 3일
There is no implied delay between blocks, and you have configured a continuous solver.
Your system is equivalent to asking
solve(1-x==x)
which has a solution of 1/2
You need to break the algebraic loop, by using one of the methods of introducing a delay between the output of the difference and the time the difference gets fed back as input. Look in blogs.mathworks.com for the topic of breaking algebraic loops

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 General Applications에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by