Borrar filtros
Borrar filtros

How can I detect a sign change without detection of 0 holding (Simulink)

13 visualizaciones (últimos 30 días)
Nick
Nick el 14 de Abr. de 2016
Comentada: Nick el 18 de Abr. de 2016
Hi,
I want to detect sign changes with Simulink blocks. By using the common libary, I also detect when the signal jumps from positive to 0, hold 0 and rises back to the positive area, which is not beneficial in my case. Do you know a way how to detect sign changes with real zero passings?
Thanks.

Respuestas (1)

Anish Mitra
Anish Mitra el 18 de Abr. de 2016
You can make use of the "Detect" blocks in the Simulink>Logic and Bit Operations library.
>> web(fullfile(docroot, 'simulink/slref/detectfallnegative.html'))
These blocks are for Fixed Step solvers. If the logic needs to be implemented using Variable Step solvers, then you can use a Memory block to construct the logic. Essentially this would mean taking the product of the signal, and the signal delayed by 1 (using a Memory block, not a delay). If the sign of the product is negative, it means that there is a zero crossing at that particular time step.
Hope this helps.
Anish
  1 comentario
Nick
Nick el 18 de Abr. de 2016
Hi Anisha,
thank you for your suggestion. In case there are two zero sample points in a row, this detection won't work.
I solved this problem by saving the last non-zero value and thought there might be a better solution (a block from the libary).
Cheers, Nick.

Iniciar sesión para comentar.

Categorías

Más información sobre Array and Matrix Mathematics 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!

Translated by