First moment of area at given point #495
-
I was wondering if it is possible to get the first moments of area (for example Sx(y)) at a given distance from the centroidal axis (or at a given point in the section). I would expect it to be in this package, but could not find it anywhere sadly. Thanks for the help in advance :D Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hi Luuk, thanks for the question! Could you elaborate on what you are trying to calculate? Do you want the first moments of the entire section taken about an arbitrary point? Or are you looking for the first moments of area of part of the section? Maybe also some context for how you use this value in design/engineering would help :) Cheers, |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Thank you for your comprehensive explanation :D I chose for the centering and splitting the cross-section, then a check if the point of interest is above or below the centroid to calculate the first moment of area from the top or bottom part, clever way of calculating it like this! Great package, I use it a lot in my master thesis project, thank you and keep up the good work! Luuk |
Beta Was this translation helpful? Give feedback.
Hi Luuk, first of all I would suggest refining your mesh - you should achieve much better results with an appropriately refined mesh. Also, see the example on retrieving stresses, where I do essentially the same thing that you are doing however achieve much better curves due to the improved mesh.
I would also make sure you are retrieving the stress in the direction of the shear force and not the resultant shear stress (see the above example) - I'm happy to review your code and help you arrive at a better solution if you'd like.
Lastly, if I'm not mistaken, the
S(y)
in the formula above is the first moment of area of the section that is only abovey
(i.e. delete the rest of the section bel…