chrono icon indicating copy to clipboard operation
chrono copied to clipboard

Pychrono: ChElementTetra_4 not implemented

Open MRiabov opened this issue 1 year ago • 1 comments

Sup Chrono, I'm trying to create my first project in which I mesh an existing part and sim it.

It seems Pychrono does not have ChElementTetra_4 class implemented. There is a class of chrono.Tetrahedron, but it is a more general one and I can't even create mesh.


Additionally, I would also like to point out that there are no FEA tutorials in which we mesh a custom part, not that I've found them at least, both in C++ and in Python.

I could create mesh manually from nodes (from gmsh export), but should I? To my knowledge of FEA theory, math changes significantly as shapes change, so they should be all standardized. In this case, how to create tetrahedron mesh? Is ChElementTetra_4 even meant to be used?

Cheers.

MRiabov avatar Sep 10 '24 23:09 MRiabov

The correct class name for the tetrahedral element available in Chrono is ChElementTetraCorot_4. This is properly wrapped and available in PyChrono. I just added a simple demo illustrating this. Note that this demo is not available in a PyChrono conda package yet.

Chrono does not provide meshing capabilities. You will have to do this with a third-party package.

rserban avatar Sep 11 '24 06:09 rserban