Sergio wrote
What is the correct way to express the Brinkman equations for steady state and incompressible flow in FEATool Multiphysics's equation syntax?
Simply remove the terms with time derivative (single quoted) from the equations
u'/
v':
u-equation: - miu_br*(2*ux_x + uy_y + vx_y) + miu_br/kap_br*u_t + p_x = Fx_br
v-equation: - miu_br*(vx_x + uy_x + 2*vy_y) + miu_br/kap_br*v_t + p_y = Fy_br
continuity-equation: ux_t + vy_t = 0
Note, that if you use the stationary solver in FEATool Multiphysics this term will be ignored/omitted in the FEA discretization so there is usually no need to manually remove it (unless you want to use the time-dependent solver to solve a stationary problem).