question

Maria B17 avatar image
0 Likes"
Maria B17 asked Jason Lightfoot commented

Add new process in Multiprocessor with Flexscript

I'm setting up an automatic reading of a customized document with FlexScript, and part of the work involves assigning the numbers from a global table to the processors.

I have cases where a single station performs more than 2 processes and I would like to use the multiprocessor for this.

but I couldn't find anything that helps me add more than one process to the multi processor and assign their values via flexscript, could you help me?

FlexSim 24.0.0 beta
flexscriptmultiprocessorprocesstimenewprocess
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Matthew Gillespie avatar image
1 Like"
Matthew Gillespie answered Jason Lightfoot commented

There isn't a single function to do this yet, but you could use something like this:

  1. treenode multiprocessor = Model.find("MultiProcessor1");
  2. treenode optable = getvarnode(multiprocessor, "optable");
  3.  
  4. // Add new operation variable
  5. treenode newOperation = optable.first.copy(optable);
  6. int num = newOperation.rank;
  7. string processName = "Process" + num;
  8. newOperation.name = processName;
  9.  
  10. // Add new state to the MultiProcessor state profile
  11. treenode profile = applicationcommand("enumeratestatelist", multiprocessor, 1);
  12. treenode newProfile = profile.subnodes.add();
  13. newProfile.dataType = DATATYPE_NUMBER;
  14. newProfile.name = processName;
  15. newProfile.rank = newOperation.rank;
  16. applicationcommand("commitstatelist", multiprocessor, 1, profile);
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.