Retrieval of just plastic section modulus in composite section #432
-
I've been using this library to provide section properties for structural engineers at my company. Works great, but I've been asked to provide JUST the plastic section modulus rather than the plastic moment for whatever reason. This is easy enough to do when we have a shape with one material, but it's not immediately obvious to me how to get this number when we have composite sections with multiple materials, as the .get_mp() returns the plastic section modulus mulitplied by some yield strength. How is this yield strength calculated? My initial guess was that this yield strength is some effective number for the shape based on how much of each material is used and their respective yield strengths, but there's no obvious way to retrieve this number like there is with the effective young's modulus through .get_e_eff()... but maybe I'm missing something. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @mag06998, if you are interested in some reading here are some relevant links in the documentation:
I'll answer the second part of your question first - performing a plastic analysis of a composite section in In simplistic terms, the calculation essentially involves multiplying the areas of each material by its yield strength to get a plastic force for each material. The centroid of these forces is then calculated (plastic centroid). Finally, the resultant moment these forces exert about the plastic centroid is determined, which is the plastic moment returned by This leads to the first part of your question - there is no definition of a plastic section modulus for a composite section as this is purely a geometric property. Perhaps some kind of effective plastic section modulus could be contrived based on weighting the areas based on the yield strengths, but I would be interested in understanding what the application of this would be as I have never come across the need for this in my experience. It feels like the answer to this part of the question really relies on what the use of this value is for. If you are purely interested in the plastic section modulus of the shape/geometry, then I would suggest not supplying material properties at all (essentially analysing a homogenous section). I hope the above is helpful, happy to discuss this further if you have more to add :) |
Beta Was this translation helpful? Give feedback.
Hi @mag06998, if you are interested in some reading here are some relevant links in the documentation:
I'll answer the second part of your question first - performing a plastic analysis of a composite section in
sectionproperties
assumes that all the material in the cross-section is experiencing a stress equal to its yield strength - this is consistent with the theory (note non-linear behaviour is not considered as per the documentation). As such there is no effective yield strength, it is not calculated - it is supplied by you, the user, for each material you define.In simplistic…