question

Omar Aguilera Rico avatar image
0 Likes"
Omar Aguilera Rico asked Matthew Gillespie commented

Assign virtual distance by code

Hello everyone. Is it possible to assign the virtual distance between a path NN1 to NN2 per code? Try doing it with setvarnum () but do not succeed. Any idea how I can do this? What I want to do is that the virtual distance depends on a global table. I appreciate the support. captura.png

FlexSim HC 5.3.4
virtual distance
captura.png (12.7 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

Phil BoBo avatar image
2 Likes"
Phil BoBo answered Matthew Gillespie commented
  1. treenode NN = model().find("NN2");
  2. int connectionNum = 2;
  3. double newValue = Table("GlobalTable1")[1][1];
  4.  
  5. setsdtvalue(connectionsout(NN).subnodes[connectionNum], "userDistance", newValue);
  6. optimizenetwork();
· 4
5 |100000

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