Reputation: 11
I want to run different models in different computers synchronously using real time Simulink. Is there any way that I can make a connection between two computers and transfer data in between them and run the simulations in parallel?
Upvotes: 1
Views: 1438
Reputation: 13876
The only way I can think of is to use the UDP Send and UDP Receive blocks to transfer data between the two models. However, be aware that:
There are also TCP/IP send and receive blocks in the Instrument Control Toolbox. These are more restrictive than their UDP counterparts, but ensure better integrity of the data transfer.
Upvotes: 3