-
|
Hi, I recently came across SuanPan and it seems like a great platform. I've been experimenting with modeling a reinforced concrete cross-section, following the example provided here: I'm trying to extend that example to include prestressing steel. In OpenSees, there's a material model called InitStressMaterial (https://openseespydoc.readthedocs.io/en/latest/src/InitStressMaterial.html) that wraps a uniaxial material with an initial stress state which can be useful for this kind of problems. Is there anything similar available in SuanPan, or perhaps another material model or workaround for modeling prestress? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Currently there is no similar thing to achieve this.
I plan to add a Just like conventional loads, the initial strain will be applied gradually following the curve defined by the attached amplitude. What do you think about this? |
Beta Was this translation helpful? Give feedback.
Currently there is no similar thing to achieve this.
But I think this is a good thing to add.
InitStressMaterialperforms a local iteration to convert initial stress to initial strain and adds it to the underlying material.InitStrainMaterialdirectly applies the initial strain to the underlying material.The main problem of this approach is that, no matter how large the initial strain is, it is applied in one step, it could be excessively large such that the underlying material cannot converge, or the error is large.
And the displacement is not synced with the material at the beginning of this 'initial' state.
Furthermore, do you mind sharing your experience with
InitStressMaterial?I pr…