When I have node or objective. I want to export that each node connect with which objective or each objective connect with where node. example
Queue1and2 connect with node 1 : Export data wanna see NN1, Queue 1, Queue2
When I have node or objective. I want to export that each node connect with which objective or each objective connect with where node. example
Queue1and2 connect with node 1 : Export data wanna see NN1, Queue 1, Queue2
Hi @Pert P, was Kavika F's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.
If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always unaccept and comment back to reopen your question.
Hey @Pert P, you can do that with an Object Property Table. In the Toolbox, create an Object Property Table; this will include all objects in your model. Then you can edit the columns that you see and copy the table into an excel spreadsheet (I don't think there's a built-in export yet).
You can also do it with FlexScript if you want:
print("Starting script..."); treenode model = model(); print("Model:", model); for (int i = 3; i < model.subnodes.length+1; i++) { treenode child = model.subnodes[i]; string childName = child.name.slice(1); print("child " + string.fromNum(i) + ":", childName); treenode childConnections = Model.find(childName).find(">connections"); for (int j = 1; j < childConnections.subnodes.length+1; j++) { treenode connectionType = childConnections.find(childConnections.subnodes[j].name); string type = ""; switch (j) { case 1: { type = "in"; break; } case 2: { type = "out"; break; } case 3: { type = "center"; break; } default: { type = "BROKE"; break; } } print("type:", type, "\tsize:", connectionType.subnodes.length); for (int k = 1; k < connectionType.subnodes.length+1; k++) { treenode connection = connectionType.subnodes[k]; print("", connection.value); } } }
Result:
(I recommend using the built-in Property Table though)
8 People are following this question.
How to have a forklift stop at a network node for sometime not loading/unloading
Process flow creating task executer flow item + network nodes
In network node model, Task Executors, the task executors do not decelerate.
How to prevent task executors merging on a single network node from overlapping?
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved