Closed ozupiece closed 4 years ago
Hi, Yes, you should use GetInternalForce() method on Tetrahedron element:
var tetra = model.Elements[0] as Tetrahedral;
var stress = tetra.GetInternalForce(LoadCombination.DefaultLoadCombination);
but please keep in mind that the result of code of Tetrahedral element is not validated yet. i mean we should first make sure that the tetrahedral code works properly and exactly like other implementations of Tetrahedral, then use it. So there is not warranty that result are even usable, maybe you get a very wrong result...
Regards
Thank you for your reply and warning. I will try to make comparison between the result and beam element's result.
Kind Regards
Hello @ozupiece , Do you know any formulation for interna force of tetrahedron element?
Hi,
Please tell me how to get Internal Force value in Tetrahedral elements. Developer told me about getting displacement. I try to change the code to get Internal Force value but I can't do because I'm beginner at C#. I guess that I should use 'GetInternalForce' method... The code is as follows.