Parallel version of upwind scheme

조회 수: 2 (최근 30일)
Oleg Kravchenko
Oleg Kravchenko 2019년 2월 21일
댓글: Oleg Kravchenko 2019년 2월 23일
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
Walter Roberson
Walter Roberson 2019년 2월 21일
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
Oleg Kravchenko 2019년 2월 23일
Dear Walter,
Thank you for reply.
I thought that number is a scalar, but it could be a vector of matrix if it's necessary for sure. Suppose is a constant value for simplicity.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 FPGA, ASIC, and SoC Development에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by