You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I am trying to model a diagonal beam that has two supports, one of them is in the edge of the element and the other one is a little bit before the lower end, something like this, but where elements 1 and 2 are the same continuos element:
Is this possible right now?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
If the two elements were not considered the same body as standard, defining the loads would be a lot harder.
If you want to consider the two elements as separate elements that are each supported at the same point (support 2), you could achieve this by adding a spring to your first or second element.
like this:
from anastruct import SystemElements
ss = SystemElements()
ss.add_element([[0,0],[10,0]], spring= [0,1]) # [start node, end node], 1 indicates its released, 0 means stiff
ss.add_element([[10,0],[12,0]])
ss.add_support_hinged([1,2])
ss.q_load(element_id=1, q=-10)
ss.solve()
ss.show_displacement()
Hi! I am trying to model a diagonal beam that has two supports, one of them is in the edge of the element and the other one is a little bit before the lower end, something like this, but where elements 1 and 2 are the same continuos element:
Is this possible right now?
Thanks in advance!
The text was updated successfully, but these errors were encountered: