Parallel version of upwind scheme
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dear all, I came up to the naive question which is contradictive, i.e.
How to parallelize upwind scheme?
Suppose, we have the following implementation of upwind
for k = 1:kFin % time-loop
% space-loop
un(2:nx) = u(2:nx) - cfl*(u(2:nx) - u(1:nx-1));
% BC
un(1) = un(nx);
% update
u = un;
end % for
So, how to parallelize it via parfor or spmd or else?
Is it possible for such schemes?
2 comentarios
Walter Roberson
el 21 de Feb. de 2019
Is cfl a scalar, or is it a row vector with (nx-1) columns, or is it a square 2D array with (nx-1) rows and columns ?
Respuestas (0)
Ver también
Categorías
Más información sobre Parallel for-Loops (parfor) en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!