Hello,
I am currently working on an elastic model of one-dimensional Cosserat-rods. Applying different loads onto the rod it can deform in space. Thus, dim=1, spacedim=3.
Now I'm struggling with a quite basic problem:
Currently I make the triangulation of the straight rod with:
Triangulation<dim,spacedim> triangulation;
GridGenerator::hyper_cube(triangulation,0,length_of_rod);
triangulation.refine_global(n);
The triangulation takes the shape of a straight line with expansion direction x and the length "length_of_rod".
Now I would like to obtain a triangulation with a different shape than the straight line. Is there a possibility to make triangulations of one dimensional curves in three dimensional space? In my special case, I would like the curve to be a quarter circle.
If you have any ideas please let me know.
Thank you in advance,
Ludwig