Add beams inside mechanical at fastener holes automatically

Member, Moderator, Employee Posts: 323
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭
edited March 2024 in Structures

Say we have multiple fastener holes (defined say as named selections), how can we then add automatically beams inside mechanical?

Best Answer

  • Member, Moderator, Employee Posts: 323
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭
    edited March 2024 Answer ✓

    Below is the code for the automatic beam creation inside mechanical:

    It needs to have a cross section folder, and named selections created - each named selection is of the 2 edges that are to be connected by the beam. Beam will be connected to these 2 edges via 2 fixed joints (MPC rigid). Finally a Bolt-Pretension is added to the new beam.

    1. model = ExtAPI.DataModel.Project.Model
    2. analysis=model.Analyses[0]
    3. ns=model.NamedSelections.Children
    4. construction_geometry = model.AddConstructionGeometry() # add folder
    5. # add line object
    6. for n in ns: # get named sel. hole edge pair needs to be there (so 2 edges)
    7. nId=n.Location.Ids
    8. a = construction_geometry.AddConstructionLine()
    9. pointlist=[]
    10. for edge in nId:
    11. e = ExtAPI.DataModel.GeoData.GeoEntityById(edge)
    12. if str(e.CurveType) =="GeoCurveCircle":
    13. ce=e.Centroid # get centre of hole
    14. #print(ce)
    15. pointlist.append((ce[0],ce[1],ce[2])) # beam points at the centre
    16. points=a.CreatePoints(pointlist)
    17. for i in range(0,len(points)-1):
    18. edge_collection_5 = a.CreateStraightLines([points[i],points[i+1]], [(0,1)]) # create the points and add beam
    19. beam=a.AddToGeometry() # create beam
    20. geobeam=beam.Bodies[0] #
    21. treebody=ExtAPI.DataModel.Project.Model.Geometry.GetBody(geobeam) # get tree body beam
    22. cross_sec=ExtAPI.DataModel.GetObjectsByType(DataModelObjectCategory.CrossSections)[0].AddCircularCrossSection()
    23. cross_sec.Radius = Quantity(float(e.Radius), "m")
    24. treebody.CrossSectionSelection=cross_sec
    25. connections = Model.Connections
    26. connectiongroup = connections.AddConnectionGroup()
    27. j=0
    28. for edge in nId: # create mpc rigid connections
    29. joint = connectiongroup.AddJoint()
    30. selection = ExtAPI.SelectionManager.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)
    31. selection.Ids=[geobeam.Vertices[j].Id]
    32. joint.MobileLocation = selection
    33. selection = ExtAPI.SelectionManager.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)
    34. selection.Ids=[edge]
    35. joint.ReferenceLocation = selection
    36. j=j+1
    37. bopr=analysis.AddBoltPretension()
    38. bopr.SetDefineBy(1,BoltLoadDefineBy.Load)
    39. load = Quantity(1000,'N')
    40. bopr.Preload.Output.Field.Output.SetDiscreteValue(0,load)
    41. selection = ExtAPI.SelectionManager.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)
    42. selection.Ids=[geobeam.Edges[0].Id]
    43. bopr.Location=selection
    44.  
    45.  
This discussion has been closed.