Modifying state in S-function
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello guys,
I am working with Level- 2 M files S-functions and I have a problem trying to modify the state.
As in a switching controller ( state jumps) I want to assign manually the value of the state after a certain condition.
So I tried to do something like
block.ContStates.Data = mynewthing;
but it looks like this is completely ignored by the simulation. I have know idea of making it work.
I have seen a class called SimState and function a function called SetSimState in the s-function template but I don't know how to use it and I am having trouble finding documentation on it.
Does someone know how to do this?
Thanks!
0 comentarios
Respuestas (1)
Titus Edelhofer
el 13 de Jul. de 2011
Hi Thiago,
you cannot directly set the continues states, they are computed by numerical integration. You can only compute the derivative (see function Derivatives in MATLAB\toolbox\simulink\blocks\msfuntmpl.m). If you would have discrete continuous states, then take a look at the function Update, where you set the discrete state (DWork) to whatever you want ...
Titus
2 comentarios
Titus Edelhofer
el 25 de Jul. de 2011
It depends on what is "continuous" for you: a continuous state is the x in some differential equation like x' = 2*x. This state does not switch (only the differential equation might switch, but this can be done). If you have something like x = g(x, y), where y is the input and x is the x of the timepoint before, you can do this (see my answer above). Simulink can model both in one system ...
Ver también
Categorías
Más información sobre Configure Block Features for MATLAB S-Functions en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!