question

10Dulkar avatar image
0 Likes"
10Dulkar asked Felix Möhlmann commented

Network Node: No Passing isnt working

Hello, i created network nodes and there are alternate one way aisles going from North to South and South to north. I dont want forktruck to pass each other while they are in the same aisle. I made each node non-passing but still the fork trucks are passing eac hother. Can you please help. Also they are not maintaining the spacing between each transporter even after setting the spacing in the network node.

@Matthew Gillespie 1669867601747.png

FlexSim 22.1.4
network nodes
1669867601747.png (441.7 KiB)
1669867614184.png (793.0 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
0 Likes"
Joerg Vogel answered Felix Möhlmann commented

You can limit the number of travelers at a network node.

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

10Dulkar avatar image 10Dulkar commented ·

can i use this code to change the maxtravellers to 1.

for ( int j=1; j<=Group("Network_Node").length;j++){
treenode netNode = Group("Network_Node")[j];
var connects = connectionsout(netNode).subnodes;
for (int i = 1; i <= connects.length; i++) {
treenode connection = connects[i];
if ( connection.find("connectionType").value>=1){

connection.find("maxinactive").value = 1;
}
}
}

I tried this but its not working.

0 Likes 0 ·
Felix Möhlmann avatar image Felix Möhlmann 10Dulkar commented ·

"maxinactive" is a node under variables, not connections.

if(connection.find("connectionType").value>=1)
{
   netNode.find(">variables/maxinactive").value = 1;
}
0 Likes 0 ·