How do i write the code for navierstokes equation in matlab/comsol?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bartholomew Osegbe
el 10 de Mayo de 2018
Respondida: Bartholomew Osegbe
el 13 de Mayo de 2018
The idea is to write the code for the navierstokes equation with the laplacian velocity and pressure term
1 comentario
KSSV
el 10 de Mayo de 2018
You want it in comsol? So this is not the forum. You want in MATLAB? What have you attempted?
Respuestas (4)
Precise Simulation
el 10 de Mayo de 2018
The incompressible Navier-Stokes equations is also available as a built-in pre-defined Navier-Stokes physics mode in the FEATool FEM Matlab toolbox. In this case the equations are in 2D defined as
rho_ns*u' - miu_ns*(2*ux_x + uy_y + vx_y) + rho_ns*(u*ux_t + v*uy_t) + p_x = Fx_ns
rho_ns*v' - miu_ns*(vx_x + uy_x + 2*vy_y) + rho_ns*(u*vx_t + v*vy_t) + p_y = Fy_ns
ux_t + vy_t = 0
the Navier-Stokes equations in axisymmetry (2D cylindrical coordinates) and 3D are defined similarly.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!