-
Hello @kinnala, I am trying to implement the Folgar-Tucker-Model (in 2D) which is a phenomenological model describing the evolution of fiber orientation distributions. With the rate-of-deformation tensor In 2 dimensions, the symmetric fiber orientation tensor (a second order tensor) with trace equal to 1 has only two independent entries, The fourth order tensor is approximated by the so called linear closure: I derived the coupled system for Which discretized becomes: The coupling Term with I've created a simple rectangular mesh with height
The velocity is defined as: which is a simple shear flow with the upper plate moving with velocity
I found several other discussion here, e.g. #616 or #1028 where for each unknown an own basis is used. Therefore, I created two basis, one for each unknown, with a TriP1 Element:
The velocities are projected to the mesh and then interpolated at the quadrature points:
The bilinear form is defined as:
which gets assembled to:
I hope my question becomes clear to you. If not I am happy to extend this question. PS: I just started with this project, so I might come along with some more questions :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Here you have the same mesh and the same element for both Basis objects so their contents will be exactly the same and it does not matter at all which order you use them or which one you use for projections. In fact, if you want to save memory, define only one basis and use it everywhere. However, were you decide to use different element for basis["a12"] and basis["a11"] then it becomes important. |
Beta Was this translation helpful? Give feedback.
Here you have the same mesh and the same element for both Basis objects so their contents will be exactly the same and it does not matter at all which order you use them or which one you use for projections. In fact, if you want to save memory, define only one basis and use it everywhere. However, were you decide to use different element for basis["a12"] and basis["a11"] then it becomes important.