i was wondering if there are any specific documantion/information i can find in order to analyze fibers in fenics?
any specific functions or something
till now i modeled a hyperelastic non linear, non homogenius rod and now my professor want to apply my code on fibers, he told me that he thinks that there are specific function for fibers
tried to search something online but didnt found anything specific. would be happy to hear is there is something like that or not
As far as I know, there is no built-in function in FEniCS to define fibers in a hyperelastic material model. You need to define it in your code based on your specific strain energy function.
It is relatively straightforward to define anisotropic hyperelastic constitutive models accounting for fibers, you just need to decide on a specific model
can you advise on how to create a cylinder like model?
i tried to use cylinder = Circle(Point(0.2, 0.2), 0.05), but it has no length
and this one is not working for me even with mshr library
cylinder = Cylinder(Point(0, 0, -1), Point(0, 0, 1), 0.5, 0.5)
geometry = cylinder
maybe its not updated
Speaking of fibers in a hyperelastic material model, you should have a continuum model defining the constitutive equations. For example, in collagen fibers in biological tissue, you need to define the orientation and concentration of the fibers. There might be other parameters in the model (e.g., the rate of uncrimping collagen fibers etc.).
You may want to have a look at this paper where one of these models has been implemented in FEniCS.