I am trying to solver some simplified fluid-structure coupling, considering the displacement field $u$ in the (linearly elastic) solid domain $\Omega_s$, and the displacement potential $\varphi$ Euler equation in the fluid domain $\Omega_f$. These quatities are coupled at the interface $\Gamma$ of the two (non-overlapping) domains, accounting for the continuity of the normal displacement ($u\cdot n=\nabla\varphi\cdot n$) and normal stress ($\sigma(u)\cdot(n) = \rho_f \omega^2 \phi n$).
Basically, the eigenproblem writes as :
Find $u$ and $\varphi$ in the respective function spaces such as
$$ k_s(u, v) = \lambda (m_s(u, v) + c(\varphi, v) \,\forall v,$$
and
$$ m_f(\varphi, \psi) = c(\psi, u)\,\forall\psi$$
with
- $m_s(u,v)=\int_{\Omega_s} \rho_s u\cdot v$ the solid mass operator
- $k_s(u, v)=\int_{\Omega_s} \sigma(u):\varepsilon(v)$ the solid stiffness operator
- $m_f(\varphi,\psi)=\int_{\Omega_f } \rho_f \nabla \varphi\cdot\nabla\psi$ the fluid mass operator
- $c(\psi, u)=\int_\Gamma \rho_f \psi (u\cdot n)$ the coupling operator
I am struggling with this last operator as it involves two different fields on two different domains and meshes. By now I am wondering what would be the best approach to that problem ? I have been considering the Multimesh approach, without success...