question

Wang Z2 avatar image
0 Likes"
Wang Z2 asked Joerg Vogel answered

create rack with code in user command

user-command.fsm

I use the code to create racks in script console,and it works.

But when I use the same code in User command,it doesn't work.

I don't know why.

  1. /**Custom Code*/
  2.  
  3. int number = 60;// 列数
  4. int numBays = number/3;
  5. int numLevels = 12;// 层数
  6. double bayWidth = 0.54; // 单列宽
  7. double levelHeight = 0.5;// 单层高
  8. treenode libraryRack = library().find("?Rack");
  9. Object firstRack = createinstance(libraryRack, model());//创建货架
  10.  
  11. function_s(libraryRack, "BasicRefreshTable", firstRack, numLevels, numBays, levelHeight, bayWidth);//创建规定尺寸的货架
  12.  
  13. for(int i = 2; i <=3 ; i++) {
  14. Object obj = createcopy(firstRack, model(), 1, 0, 1, 0); // 复制货架
  15. obj.name = "Rack1" + numtostring(i);
  16. obj.location.x = 1*(i-1)+(i-1)*numBays*bayWidth;
  17. obj.location.y = 0;
  18. }
FlexSim 18.2.2
user command
user-command.fsm (16.4 KiB)
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

Joerg Vogel avatar image
1 Like"
Joerg Vogel answered

It took me some time but it is so obvious:

  1. command1();

and not just

  1. command1;
5 |100000

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