Parallel version of upwind scheme
Show older comments
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 Comments
Walter Roberson
on 21 Feb 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 ?
Oleg Kravchenko
on 23 Feb 2019
Answers (0)
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!