question

Omar Aguilera Rico avatar image
0 Likes"
Omar Aguilera Rico asked Braydn T commented

Collisions when creating resources using PF

In the picture 1.png you can see that line 47 and 49 are deactivated, and in the tree of each operator if you write the information, but as a string and I need you to write it as a node. So far the solution that I found was the one shown in photo 2.png where you can see that line 47 and 49 are already active, but in the tree of each operator you no longer write all the information in some only places me 0x0 . How can i fix this? Is there a command that converts you from string to node? What I'm trying to achieve is that when more operators are created in Process Flow they detect the members with which they can collide, but by default FlexSim does not add the members in the collision tab, so I made the code shown in the script to help me but I found the problem that I mentioned earlier. When running it like the photo 2 that is the correct one that must be a node the collisionobjects marks me an error.

Only the Operator1_3 if you post the collisions keeping the information on your label "Colisiones".

FlexSim 19.1.1
collision problemmembers
1.png (173.4 KiB)
2.png (175.3 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

Logan Gold avatar image
1 Like"
Logan Gold answered Braydn T commented

@Omar Aguilera Rico

treenode.find() (or Object.find()) is what is mainly used to convert strings to nodes. You have to pass in the path to the node you want a reference to, relative to the treenode/Object.

For your model, you will probably want to use getvarnode() to get a reference to a variable node in an Object (like the Operator's collisionobjects node). The following example code will get the collisionobjects node of Operator1 in your model and store it in a variable:

  1. Object operator1 = Model.find("Operator1");
  2. treenode collisionObjects = getvarnode(operator1, "collisionobjects");

The other important thing to know is that all the subnodes of collisionobjects are coupling nodes (their datatype is DATATYPE_COUPLING). Each coupling node in the tree is a pointer node that is pointing to a different node in the tree. And the second node is pointing back to the first node. With coupling nodes, when one of the nodes is removed, the other node is also removed so you don't have leftover nodes with a 0x0 reference.

Here is example code that is similar to what FlexSim uses when you add a new Collision Member to a Task Executer in its Collision tab (with updated dot syntax):

  1. treenode operator1 = Model.find("Operator1"); // Change this to reference the first Task Executer (TE)
  2. treenode operator2 = Model.find("Operator1_2"); // Change this to reference the second TE
  3. treenode op1CollisionObjects = getvarnode(operator1, "collisionobjects"); // Get collisionobjects node on first TE
  4. treenode op1NewCollObj = op1CollisionObjects.subnodes.add(); // Add new collisionobjects subnode
  5. op1NewCollObj.dataType = DATATYPE_COUPLING; // Set new subnode's datatype to be coupling
  6. op1NewCollObj.name = getname(operator2); // Name new subnode to name of second TE
  7. treenode op2CollisionObjects = getvarnode(operator2, "collisionobjects"); // Get collisionobjects node on second TE
  8. treenode op2NewCollObj = op2CollisionObjects.subnodes.add(); // Add new collisionobjects subnode
  9. op2NewCollObj.dataType = DATATYPE_COUPLING; // Set new subnode's datatype to be coupling
  10. op2NewCollObj.name = getname(operator1); // Name new subnode to name of first TE
  11. nodejoin(op1NewCollObj, op2NewCollObj); // Join both subnodes together to complete the bidirectional coupling

It looks like you're trying to reference the two different Operators using for loops in your model, so you should be able to add this example code to your logic after getting a reference to both Operators. Just be sure to change the first two lines to however you are referencing those two Operators. The rest of the code should work after that without needing to modify it.

· 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.