Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hi, I`m trying to get tangent stiffness matrix of 6 nodes triangular finite element. Beginning part of code contains symbolic calculation and very simple operations such as getting one element of vector or transpose are very very slow. So I can`t to continue.Thanks in advance for any advice. File is attached.
Hi.
It is not slow for me.
At the beginning of the file - it is better to define the variables and constants in any way - and then reset them all - as shown below -
It takes 20 sec to recalculate worksheet for N.nd=6
and what`s about you?
You are calling B N.nd times just to pick out one of the six results and transpose it. Its sure more efficient to call B.n just once and work on the result.
This modification should do the job approx. N.nd times faster 😉
Many thanks my dear Werner, I`m so inattentive, I`m sorry.
Ok, but what if I have such situation
EDIT: How to prevent lazy evaluation and calculate all B.(n) before this procedure?