Forum Message

 

 

We have moved the forum to https://forum.ngsolve.org . This is an archived version of the topics until 05/05/23. All the topics were moved to the new forum and conversations can be continued there. This forum is just kept as legacy to not invalidate old links. If you want to continue a conversation just look for the topic in the new forum.

Notice

The forum is in read only mode.

Principal Stresses in Elasticity

More
2 years 7 months ago #3986 by NV
In structural engineering we are often interested in minimum and maximum principal stress. In NGSolve we are able to calculate the eigenstress by something like (assuming stresses to be a 3x3 matrix valued coefficient function):
Code:
eig_stresses = stresses.eig()
Then the first 9 entries of correspond to the stress eigenvectors and
Code:
eig_stresses[9], eig_stresses[10], eig_stresses[11]
are the eigenvalues. However, it seemed to be that the order of the eigenvalues is not fixed. Is there an efficient procedure to order them into maximal, middle and minimal principal values?
In 2D I could use
Code:
max_princ = IfPos(eig_stresses[4]-eig_stresses[5],eig_stresses[4],eig_stresses[5])
but in 3D this is very inefficient due to the need of multiple comparisons.


Best regards,
Nils
More
2 years 7 months ago #3988 by mneunteufel
Hi Nils,

using staggered IfPos commands the comparisons can be written relatively compact for the 3D case:

Code:
max_princ = IfPos(eig_stresses[9]-eig_stresses[10], IfPos(eig_stresses[9]-eig_stresses[11],eig_stresses[9],eig_stresses[11]), IfPos(eig_stresses[10]-eig_stresses[11],eig_stresses[10],eig_stresses[11])) min_princ = IfPos(eig_stresses[9]-eig_stresses[10], IfPos(eig_stresses[10]-eig_stresses[11],eig_stresses[11],eig_stresses[10]), IfPos(eig_stresses[9]-eig_stresses[11],eig_stresses[11],eig_stresses[9])) middle_princ = eig_stresses[9]+eig_stresses[10]+eig_stresses[11] - max_princ - min_princ

Best,
Michael
More
2 years 6 months ago #3993 by NV
Replied by NV on topic Principal Stresses in Elasticity
Thanks for your help Michael.
Your solution works but for larger 3D models it is very slow.

It would be great if there is a solution which works faster and is implemented in the ngsolve environment. E.g. having .eig() already sorted or another option method .sortedEig()
More
2 years 6 months ago #3994 by mrambausek
Did you try to compile 'max_princ', eg. via
Code:
max_princ.Compile()
or the actual expression in which max_princ is used ('Compile' works recursively)?

If this is not done, the full Eigensystem will be re-evaluated multiple times with the same outcome, which is quite inefficient.
The following user(s) said Thank You: Nils
More
2 years 6 months ago #3996 by Nils
Thank you very much Matthias.
I did not set the .Compile() in the Draw function, now it's much faster.
Time to create page: 0.177 seconds