SIMULINK BUG, or Am I missing something in DATA STORE MEMORY block?
Mostrar comentarios más antiguos
I have a Simulink model with the following problem:
At the top-level I have one data store memory block A, with one respective read and write block. And even though after the reading, the value travels thru a S-Function at the same level, 3 different Switch-Case Action Subsystems each one with different S-Functions, returns to top-level, and passes thru a Merge block, the writing of the new value is correct.
Now, inside just 1 of the 3 Switch-Case Action Subsystems I have another data store memory block B, also with one respective read and write block inside the subsystem too, same level. After the reading, the value travels thru the S-Function, together with the value from memory block A.
The value for block A is always correct. However, there is no reading from block B.
I already tried:
1-Changing the data type, in the memory block and the S-Function.
2-Double check in sample time.
3-Different initial value.
4-Set ports connected to Merge block as SS_REUSABLE_AND_GLOBAL.
5-Diffent computers (x32 and x64).
6-Put B at the same top-level with A.
7-The same problem still exists in a smaller model too.
But still not reading from block B. Is there something missing?
Anyone please. I am stuck with this for a week.
Thanks.
-Ele
Respuestas (2)
Nirmal Gunaseelan
el 22 de Mayo de 2013
0 votos
Looks to me like an access issue. How about you make B as a global data store? This is just to make sure that your conditionally executed subsystem has and provides access to B outside itself.
4 comentarios
Eleazar
el 27 de Mayo de 2013
Nirmal Gunaseelan
el 29 de Mayo de 2013
It looks like a block execution order issue - the s-fcn that writes into the data stores are probably in the wrong order. Can you try switching on block execution order to see if all the ordering is as you expect? This can be done by Display menu -> Blocks -> Sorted Execution order being checked.
Once that is done, you could try setting block priority to ensure that the order you want is honored.
Eleazar
el 30 de Mayo de 2013
Kaustubha Govind
el 30 de Mayo de 2013
Eleazar: Would it be simpler if you try to debug this by modifying your S-function to not perform file read/write access (because that may be a C-language related issue)? This might help you determine if it is really a file I/O issue or a Simulink issue.
Muruganandham Subramanian
el 30 de Mayo de 2013
0 votos
How you are reading the value for DSR B (data store read)?? from workspace?? Is DSR B depends on DSR A output?, If it depends, check DSR memory used inside the subsytem, passing right value to DSR B ?
1 comentario
Eleazar
el 31 de Mayo de 2013
Categorías
Más información sobre Block and Blockset Authoring en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!