Is there a specific reason why in this Fenics example for Navier Stokes equations, in the 3d step of the splitting scheme, the variational equations have been multiplied by the time step \Delta t
L3= dot(u_, v)*dx - k*dot(nabla_grad(p_ - p_n), v)*dx
?
Note that in the code \Delta t is equal to k
.
Is this because keeping \Delta t in the denominator introduces some numerical instability?
Thank you