Skip to content

UniteNodes #368

Answered by heetrojivadiya
bhnizar asked this question in Q&A
May 19, 2024 · 2 comments · 4 replies
Discussion options

You must be logged in to vote

Yes, the ToDo#8140 is created for it and currently it is in review. When it will be ready then we will let you know.

If you just want to find identical nodes then you can use below script for your model.

from RFEM.Tools.GetObjectNumbersByType import GetAllObjects
from RFEM.initModel import Model

Model(False, 'ombrière')
objects, imports = GetAllObjects()

nodes = []
for item in objects:
    dict = {}
    if 'Node(' in item:
        item = eval(item.replace('Node(params=', '').replace(')\n', ''))
        dict['no'] = item.get('no')
        dict['x'] = round(item.get('global_coordinate_1'), 3)
        dict['y'] = round(item.get('global_coordinate_2'), 3)
        dict['z'] = round(item.get('…

Replies: 2 comments 4 replies

Comment options

You must be logged in to vote
1 reply
@bhnizar
Comment options

Comment options

You must be logged in to vote
3 replies
@heetrojivadiya
Comment options

@bhnizar
Comment options

@heetrojivadiya
Comment options

Answer selected by heetrojivadiya
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants