Solving state space equation using matlab function block in simulink
显示 更早的评论
Hi, Im trying to model a synchronous machine. My present situation is, i know the A, B, C, D values and my input signal is coming from other blocks which are voltages, speed etc. State variable in my case is flux. I need to find this flux value so as to find derive current, torque etc. So how to solve this state space equation to get the state variable. I tried to read many examples but im not able to find the one I need. Any help is appreciable
回答(1 个)
Sebastian Castro
2015-8-18
0 个投票
- Sebastian
5 个评论
leonn alexander
2015-8-18
Sebastian Castro
2015-8-18
That block takes in the A, B, C, D matrices as MATLAB matrices -- not much to it!
Also yes, if y = x, then your C and D matrices are 1 and 0 respectively, as you said. For example, if your A matrix is 4x4, your C matrix is the 4-dimension identity matrix: In MATLAB, eye(4).
Mahmoud Aly
2025-7-18
If the state space matrix are function of variable which is varying, what is the best way to solve the state?
Sam Chak
2025-7-18
Hi @Mahmoud Aly
For single-variable systems such as
, you can use the Fcn block to apply the nonlinear function
to its input (state variable x and input signal u). After that, connect the Fcn block to an Integrator block, which implies the output
. Before clicking the Run button, specify the initial value in the Integrator block.
. Before clicking the Run button, specify the initial value in the Integrator block.For multivariate systems,
, with the state vector
and input vector
, you can use n sets of Fcn and Integrator pairs, or one MATLAB Function block and an Integrator block.
and input vector
, you can use n sets of Fcn and Integrator pairs, or one MATLAB Function block and an Integrator block.
Paul
2025-7-18
类别
在 帮助中心 和 File Exchange 中查找有关 Modeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!