⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upwindfirstfirst.m

📁 level set matlab code
💻 M
字号:
function [ derivL, derivR ] = upwindFirstFirst(grid, data, dim, generateAll)
% upwindFirstFirst: first order upwind approx of first derivative.
%
%   [ derivL, derivR ] = upwindFirstFirst(grid, data, dim, generateAll)
%
% Computes a first order directional approximation to the first derivative.
%
% The generateAll option is used for debugging, and possibly by
%   higher order weighting schemes.  Under normal circumstances
%   the default (generateAll = false) should be used.
%
% In fact, since there is only one first order approximation in each
%   direction, this argument is completely ignored by this particular function.
%
% parameters:
%   grid	Grid structure (see processGrid.m for details).
%   data        Data array.
%   dim         Which dimension to compute derivative on.
%   generateAll Ignored by this function (optional, default = 0).
%
%   derivL      Left approximation of first derivative (same size as data).
%   derivR      Right approximation of first derivative (same size as data).

% Copyright 2004 Ian M. Mitchell (mitchell@cs.ubc.ca).
% This software is used, copied and distributed under the licensing 
%   agreement contained in the file LICENSE in the top directory of 
%   the distribution.
%
% Ian Mitchell, 5/12/03
% modified to avoid permuting, Ian Mitchell, 5/27/03
% modified into upwind form, Ian Mitchell, 1/22/04

%---------------------------------------------------------------------------
if((dim < 0) | (dim > grid.dim))
  error('Illegal dim parameter');
end

dxInv = 1 / grid.dx(dim);

% How big is the stencil?
stencil = 1;

% Add ghost cells.
gdata = feval(grid.bdry{dim}, data, dim, stencil, grid.bdryData{dim});

%---------------------------------------------------------------------------
% Create cell array with array indices.
sizeData = size(gdata);
indices1 = cell(grid.dim, 1);
for i = 1 : grid.dim
  indices1{i} = 1:sizeData(i);
end
indices2 = indices1;

%---------------------------------------------------------------------------
% Where does the actual data lie in the dimension of interest?
indices1{dim} = 2 : size(gdata, dim);
indices2{dim} = indices1{dim} - 1;

% This array includes one extra entry in dimension of interest.
deriv = dxInv * (gdata(indices1{:}) - gdata(indices2{:}));

%---------------------------------------------------------------------------
% Take leftmost grid.N(dim) entries for left approximation.
indices1{dim} = 1 : size(deriv, dim) - 1;
derivL = deriv(indices1{:});

% Take rightmost grid.N(dim) entries for right approximation.
indices1{dim} = 2 : size(deriv, dim);
derivR = deriv(indices1{:});

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -