필터 지우기
필터 지우기

please help me to this error "Derivative of state '1' in block 'ex/Integrator1' at time 1.3765443114784894 is not finite. The simulation will be stopped. There may be a sing

조회 수: 1 (최근 30일)

답변 (1개)

Sam Chak
Sam Chak 2023년 11월 26일
Hi, your system is unstable and it grows without bound, thus making the simulation stops. Check the formulas of each Gain block. This is a linear system, so you can check its stability before simulating the system.
  댓글 수: 1
DOMIDE
DOMIDE 2023년 11월 27일
this is my code in matlab: R1=6.8e+3;
R2=6.8e+3;
R3=4.7e+3;
C1=68e-9;
C2=10e-9;
u=5;
and these are my derivatives depending on x1 and x2
x1' = (-1/C1)*(1/R1-1/R3) *x1 + (-1/C1)*(1/R2-1/R3) ;1/(C2*R3) * x2 + 1/(C1 * R1) *u
x2'=1/(R3*C2)* x1 -1/(R3*C2)* x2
y=x1-x2
how will I have to make the connections?

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

카테고리

Help CenterFile Exchange에서 Power and Energy Systems에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by