Storing a portion of a signal for real time processing in Simulink
1 次查看(过去 30 天)
显示 更早的评论
I would like to perform sine to square wave conversion in my simulink model for feedback control of an LC circuit. I already have a little alogrithm I wrote that performs this wave form conversion after a simulation has run, but I'm now trying to do it in my simulation to create input waveforms for a circuit based on LQG control.
What I'm trying to do is store all the values of a sine wave in between it's two zero crossings, and then sending that array of data into a Matlab function block. My thought was to start storing data when the current value changes sign from the previous value, and then stop storing data and begin processing when another sign change occurs.
How do I go about storing multiple values of a signal coming out of a block before processing them?
0 个评论
回答(1 个)
Bora Eryilmaz
2022-12-16
编辑:Bora Eryilmaz
2022-12-16
The typical approach to convert a sine wave to square wave is to use a Schmitt Trigger. Simscape library has a block for this, which also explains the method:
However, Simulink itself does not have a matching block. It is easy to implement in code or using Simulink blocks. You don't need to store previous sine wave values (except perhaps the immediate previous value) to be able to do that.
2 个评论
Bora Eryilmaz
2022-12-19
编辑:Bora Eryilmaz
2022-12-19
Perhaps a low pass filter before the Schmitt Trigger can also help a bit by getting rid of fast power supply transients... But typically, the hysteresis is there to handle noise fluctuations in the signal.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!