Identifying pipe joints

You can identify the joints in a section of pipes. I have a sub list of pipe elements and what I need is to authenticate if any union is connected. Is this possible and how can I do it?
For example, I have a list of sublists with pipe elements. The ideas that I can identify if there are connections between the pipe element, is this possible and how could it be?

Hi @cri.fernandezc i think OpenMep and Mepover have some nodes there could help you here…

1 Like

Hi,
union or pipe connections are essentially fittings so a few ways of doing this.

  1. Check Pipeupstream components. (heavy operation depending on how many elements you have in your file) .Pipes with joins will return a fitting and those that are not will return empty/null

2.Check Pipe System Name/Abbriviation/Type/Classification. usually when pipes are connected the fittings auto inherit the connecting pipes system Name/Abbriviation/Type/Classification. Those pipes that return a value are those that are connected and those that are null or undefined are not connected.

  1. Check overall pipe fitting against Pipe System Network. (very heavy operation)

the Pipingsystem all elements in network node gives you both pipes + connections for the whole project. (MEPover). Using this information you can check against the overall fitting in the project. In this example i have 398 fittings but only 394 are part of a ‘connected system’. using indexing you can isolate these.

Hope this helps.

DA

1 Like

Hi,

I believe this is what you are looking for in simple terms.
After filtering for Pipe Fittings you can filter for the name of your family if needed.


Hope this helps.

2 Likes