I am trying to construct a QUAD mesh for a FEM model of this geometry. In order to do that I avoided quad remesh command since I understood it is impossible to maintain continuity between separated surfaces and also include specific points in the mesh. That is why I use paneling tools to construct the mesh.
I achieved a good result, but I do not think this is the most efficient way to do this with the script I did. Maybe someone has another idea of how to achieve a good result. @DanielPiker
For a relatively simple model like this, I would implement a manual meshing process that allows you to control the mesh subdivisions and adjust them to your needs.
If you’re looking for an automated process and have a Rhino 7 license, you can also mesh your geometry with the QRemesh (Quad Remesh) component, but I feel like that’s overkill for this and it gives you less control over the tesselation than my definition in this case.
Instead dividing by count, you could also divide by length or distance, if your segments vary in size/length/circumference. This way you would to get a more regular tessellation in that direction.
Just one last thing…The connector points I attached should be on a quad vertex, since it has to be continuity between the nodes and the mesh. I think this is the difficult part…
That was really good scripting. It is exactly what I was looking for!
PD: I would be nice to have a component as powerful as Triremesh (capable of adding curves, points) but for the quads, since the actual one has a lot of limitations