Facing resource Acquirer, how to set serveral resources to acquire
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
season
el 23 de Jul. de 2025
Comentada: season
el 24 de Jul. de 2025
When using .m generate the block--resource Acquirer, I need set serveral resources to acquire. I use
set_param(acquirerPath, 'ResourceName', 'Crane','Resourceamount', '2');
but it only receives one resoure. If in next line I use
set_param(acquirerPath, 'ResourceName', 'Station','Resourceamount', '1');
it will replace the previous line.
0 comentarios
Respuesta aceptada
Laurent Royer
el 23 de Jul. de 2025
Try
set_param(acquirerPath, "ResourceName", "Crane|Station", "ResourceAmountSource", "Dialog|Dialog", "ResourceAmount", "2|1");
Más respuestas (0)
Ver también
Categorías
Más información sobre Discrete-Event Simulation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!