Shear force in two directions plus a torque (bidirectional shear and torsion) #510
-
I am a python beginner, the question may be a little stupid, please forgive me. I want to know if "Section_properties" can output a three-dimensional envelope similar to biaxial bending as "Concrete_properties", because I have difficulty in trying to output the relationship between the shear force and the torque of the reinforced concrete section in "Concrete_properties", so I try to use "Section_properties" . |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I currently have an approach where I take a range of However, the maximum shear stress of the section seems to be different from the ultimate stress found in 'Concrete_properties.' How should I determine the maximum shear stress that a section can withstand? Can simplified formulas from codes be used to calculate the ultimate shear capacity of the section?" Sincere respect! |
Beta Was this translation helpful? Give feedback.
Hi @ZhichengT, sorry have only just got around to having a look at this. I think there are a couple of things going on here.
You are getting stress concentrations near the interface of materials, I would suggest changing
n_points
from 4 to 16 to improve this.The overall shear distribution is not really changing a whole lot between the two analysis cases - this is expected as longitudinal reinforcement does not really add much to the shear capacity. Below is are two plots comparing the concrete shear stress, setting
stress_limits=(0.0,2.3)
. Everything above 2.3 MPa will be shown in white. You can see that the shear stress distribution is very similar between the two plots (only some l…