3D Beam element nodes deflection and stress calculation
3D Beam element nodes deflection and stress calculation
(OP)
Hi all,
I am wirting a c++ program to calculate 3D beam elements deflection and stress, like the following picture:

I have defined the stiffness matrix and calculate by the formula [stiffness matrix][d]=[F].
There are 6 dof in each node including 3 deflection and 3 rotation.
My program can solve the [d] for each node, and my question is how to use the [d] to find out the stress in each node? I have found many document about FEA but cannot find a concept about this. Hope anyone can help me.
I am wirting a c++ program to calculate 3D beam elements deflection and stress, like the following picture:

I have defined the stiffness matrix and calculate by the formula [stiffness matrix][d]=[F].
There are 6 dof in each node including 3 deflection and 3 rotation.
My program can solve the [d] for each node, and my question is how to use the [d] to find out the stress in each node? I have found many document about FEA but cannot find a concept about this. Hope anyone can help me.





RE: 3D Beam element nodes deflection and stress calculation
In your case the structure is statically determinate, so you have the [F] already, but in a non-determinate structure you need to calculate the [d] first, so you can get the [F] for each member.
Doug Jenkins
Interactive Design Services
http://newtonexcelbach.wordpress.com/
RE: 3D Beam element nodes deflection and stress calculation
for [stiffness matrix][d]=[F],like the picture example, my calculation is:
1. each beam matrix has 12 [d] and 12 [F],
2. combine the matrix to form a global matrix, result in 48 [d] and 48 [F],
3. solve the 48 [d] by the known 48 [F],
"You use the [d] to calculate the [F} at each node, then use that to calculate the stresses at any point on the cross-section."
Do you mean when I get the 48 [d], I should substitute each 12 [d] in each beam matrix to solve each 12 [F], and then calculate the stress?
If it is true, how to use the [F] to calculate the stress? Could you show me the formula as I am so confused by the stress formula of FEA indeed..
RE: 3D Beam element nodes deflection and stress calculation
A bending moment about the horizontal axis
A shear force in the vertical direction
Axial force, horizontal shear force, bending about the vertical axis, and torsion should all be zero.
So you calculate the stresses in the section due to the bending moment (for the axial stresses) and due to the shear force (for the shear stresses) using the normal beam analysis procedures.
Doug Jenkins
Interactive Design Services
http://newtonexcelbach.wordpress.com/
RE: 3D Beam element nodes deflection and stress calculation
this is what I am confused. Node 3 has no any external force, so how can I know the bending moment,shear force, axial force and torsion in the node 3.
RE: 3D Beam element nodes deflection and stress calculation
read up on the finite element method, internal strain energy. these concepts allow you to determine internal stresses from displacements. I suspect it has something to do with inverting the matrix you have for determining displacements.
another day in paradise, or is paradise one day closer ?
RE: 3D Beam element nodes deflection and stress calculation
https://newtonexcelbach.wordpress.com/2014/01/22/f...
it should answer all your questions.
Doug Jenkins
Interactive Design Services
http://newtonexcelbach.wordpress.com/
RE: 3D Beam element nodes deflection and stress calculation
Thanks Jenkins, the link is so informative and I really need some time to understand all of it.