In the Altair manual guide, there is no Beam Class but Beamsection class and i try to use ent.Element but it return me error saying "Failed to create this type of Element, here is the code in my input :
beam = model.elementtype(config ="bar2", type ="BEAM")
beam = ent.Element(model)
beam.node1 = ent.Node(model, 10634192)
beam.node2 = ent.Node(model, 10634205)
beam.vector = [0,1,0]
beam.directionnode = ent.Node(model, 10634206)
beam.LSD_LOCAL = 1
beam.LSD_RT1 = 0
beam.LSD_RR1 = 0
beam.LSD_RT2 = 0
beam.LSD_RR2 = 0
RuntimeError: Failed to create entity of type Element
Thanks a lot for answering !!!