-
Hi, Could anyone show me how to get rotation results out from the model? I am interested in rotation results between two nodes. Thanks! BR |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There are a couple ways to do it, but it's a bit tedious right now. I have not built out a "slope" method for the You could use the Or, another way is to get the rotation at the start of the member, and then add the result of numerically integrating the moment diagram divided it by E*I for the member up to the point of interest. |
Beta Was this translation helpful? Give feedback.
-
Without diving too deep into it, that method you wrote looks about right. 0.1% sounds pretty accurate. Keep in mind these slopes are measured in radians, and the numbers are very small, so we may be starting to butt up against precision tracking limits in python. Torque is a different animal altogether. There are no built-in functions in the segment class to help you with that. You'd have to make some assumptions about the internal rotation as a function of loads and end rotations. That depends on the shape of the cross section. AISC Design Guide 9 is a testament to how complex those relationships can be. I was always taught that in design the first rule of torsion is to eliminate it. |
Beta Was this translation helpful? Give feedback.
Without diving too deep into it, that method you wrote looks about right. 0.1% sounds pretty accurate. Keep in mind these slopes are measured in radians, and the numbers are very small, so we may be starting to butt up against precision tracking limits in python. Torque is a different animal altogether. There are no built-in functions in the segment class to help you with that. You'd have to make some assumptions about the internal rotation as a function of loads and end rotations. That depends on the shape of the cross section. AISC Design Guide 9 is a testament to how complex those relationships can be. I was always taught that in design the first rule of torsion is to eliminate it.