How to model a variable RL branch?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi, I would like to implementing a current controlled variable RL branch using integrator. I have one using i(t) = integ( v(t) - i(t)*R ) / L, but this would develop an algebraic loop, which I want to avoid. Any ideas?

댓글 수: 0
답변 (1개)
Sebastian Castro
2017년 4월 26일
This is the right approach, but as you said it does come with an algebraic loop. You can resolve this loop by adding in a Transfer Fcn block to act as a low-pass filter. In fact, several Simscape Power Systems blocks (e.g. PV Array) already do this under the hood.
The transfer function will typically take the form 1/(Ns+1) where N is associated with the time constant of the filter. You want to pick this value to be small enough that it doesn't filter out your system dynamics, but large enough that it doesn't slow down your simulation with high-frequency components.
Sebastian
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulation Setup에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!