I need to solve a hyperelastic problem in the form seen in the FEniCS tutorial.
\Pi = \int_{\Omega} \psi(u) \, {\rm d} x - \int_{\Omega} B \cdot u \, {\rm d} x - \int_{\partial\Omega} T \cdot u \, {\rm d} s.
The problem I have with this variational formulation is that it considers that the traction force is applied to the reference area. Since the Neumann boundary conditions in my code are in the form of external pressures, I will need the traction force to be applied to the deformed area, not the undeformed one. I just wanted to ask how do I need to modify the equation above to be compatible with my simulations.
You would need to use Nanson’s formula (as derived clearly in a Wikipedia article) to obtain \mathbf{n}da, where \mathbf{n} is the deformed normal (i.e., the direction in which a pressure traction would act) and da is the measure for integration over the deformed surface. In the notation of the linked Wikipedia article, “dA” would correspond to ds in a total Lagrangian implementation (like the hyperelasticity demo), and \mathbf{N} would be FacetNormal(mesh).
Also, you would have to add the traction term directly to the residual to get a problem like
I have a question please, I wasn’t able to derive this part :
How was the second term derived on the current configuration, since the derivation was done on Π defined on the original configuration, unless we have the property ∫_{∂Ω{(t)}} \pmb t⋅\pmb v da = ∫_{∂Ω_0} \pmb T⋅\pmb v dA ? (in which case we don’t need a transformation ?)
What I could find is \pmb T = \pmb P . \pmb N = J ∣ \pmb F ^{-T} \pmb N ∣ \pmb t on ∂Ω_0 (also same formula is found in Cardiovascular Mathematics, 2009 ) using also Nanson’s formula, giving eventually
D_v Π − ∫_{∂Ω_0} J ∣ \pmb F ^{-T} \pmb N ∣ \pmb t dA = 0 .
Do you find the same formula ? (But that assumes that D_v Π − ∫_{∂Ω_0} \pmb T⋅\pmb v dA=0 and not D_v Π − ∫_{∂Ω} \pmb t⋅\pmb v da=0
I appreciate the help. Thank you in advance. @kamensky