Hi,
I am trying to solve a problem in elastohydrodynamic lubrication using Fenics, and I am trying to figure out if the following system can be implemented in Fenics.
The configuration is shown in figure above has the following formulation.
Equation 1 :Elasticity equation
with \sigma=C:\epsilon where C is the elastic stiffness. In this the unknown is the displacement field U
Equation 2 : Advection Diffusion type equation on {\Omega_c}.This is a 1D formulation
This equation is also a free boundary problem with BCs P=0 on the extents of \Omega_c and laso a constraint P>=0 on f \Omega_c which needs a penalty formulation.The parameters P , H refer to pressure and the film thickness, which are both unknown apriori. The film thickness typically uses the trial solution
where H_0 is unknown(we need to take an initial assumption) W is the deflection of the top boundary that comes from the solution of Eqn 1.
Equation 3 : This is a force balance constraint which can be written as
this is the equation that allows that needs to be solved for H_0.
For the other bounds of the domain, the traction free BC is imposed on \partial \Omega_4 and
\partial \Omega_5 , and the boundaries \partial \Omega_1 ,\partial \Omega_2 and \partial \Omega_3 are all fixed
I was able to look at the literature in this area, and one popular apporoach to solve this found in
the thesis attached,(https://laur.lau.edu.lb:8443/xmlui/handle/10725/6860), where the authors pose this to be a set of weak forms in Galerkin:
Find (P,U,H_0) such that one has
I am curious as to know if such a system can be solved in Fenics, instead of writing my own solver in MATLAB or python. Could anyone help me a bit as to how to go about modeling this?