This file is indexed.

/usr/share/octave/packages/bim-1.1.5/bim2a_advection_upwind.m is in octave-bim 1.1.5-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
## Copyright (C) 2006,2007,2008,2009,2010  Carlo de Falco, Massimiliano Culpo
##
## This file is part of:
##     BIM - Diffusion Advection Reaction PDE Solver
##
##  BIM is free software; you can redistribute it and/or modify
##  it under the terms of the GNU General Public License as published by
##  the Free Software Foundation; either version 2 of the License, or
##  (at your option) any later version.
##
##  BIM is distributed in the hope that it will be useful,
##  but WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##  GNU General Public License for more details.
##
##  You should have received a copy of the GNU General Public License
##  along with BIM; If not, see <http://www.gnu.org/licenses/>.
##
##  author: Carlo de Falco     <cdf _AT_ users.sourceforge.net>
##  author: Massimiliano Culpo <culpo _AT_ users.sourceforge.net>

## -*- texinfo -*-
##
## @deftypefn {Function File} @
## {[@var{A}]} = @
## bim2a_advection_upwind (@var{mesh}, @var{beta})
##
## Build the UW stabilized stiffness matrix for an advection problem. 
## 
## The equation taken into account is:
##
## div (@var{beta} u) = f
##
## where @var{beta} is an element-wise constant vector function.
##
## Instead of passing the vector field @var{beta} directly one can pass
## a piecewise linear conforming scalar function  @var{phi} as the last
## input.  In such case @var{beta} = grad @var{phi} is assumed.
##
## If @var{phi} is a single scalar value @var{beta} is assumed to be 0
## in the whole domain.
## 
## @seealso{bim2a_rhs, bim2a_reaction, bim2c_mesh_properties}
## @end deftypefn

function A = bim2a_advection_upwind (mesh, beta)

  ## Check input
  if nargin != 2
    error("bim2a_advection_upwind: wrong number of input parameters.");
  elseif !(isstruct(mesh)     && isfield(mesh,"p") &&
	   isfield (mesh,"t") && isfield(mesh,"e"))
    error("bim2a_advection_upwind: first input is not a valid mesh structure.");
  endif
  
  nnodes = columns(mesh.p);
  nelem  = columns(mesh.t);
  
  alphaareak = reshape (mesh.area, 1, 1, nelem);
  shg        = mesh.shg(:,:,:);
  
  ## Build local Laplacian matrix	
  Lloc = zeros(3,3,nelem);	
  
  for inode = 1:3
    for jnode = 1:3
      ginode(inode,jnode,:) = mesh.t(inode,:);
      gjnode(inode,jnode,:) = mesh.t(jnode,:);
      Lloc(inode,jnode,:)   = sum( shg(:,inode,:) .* shg(:,jnode,:),1) .* alphaareak;
    endfor
  endfor
  
  x = mesh.p(1,:);
  x = x(mesh.t(1:3,:));
  y = mesh.p(2,:);
  y = y(mesh.t(1:3,:));
  
  if all(size(beta)==1)
    v12 = 0;
    v23 = 0;
    v31 = 0; 
  elseif all(size(beta)==[2,nelem])
    v12 = beta(1,:) .* (x(2,:)-x(1,:)) + beta(2,:) .* (y(2,:)-y(1,:));
    v23 = beta(1,:) .* (x(3,:)-x(2,:)) + beta(2,:) .* (y(3,:)-y(2,:));
    v31 = beta(1,:) .* (x(1,:)-x(3,:)) + beta(2,:) .* (y(1,:)-y(3,:)); 
  elseif all(size(beta)==[nnodes,1])
    betaloc = beta(mesh.t(1:3,:));
    v12     = betaloc(2,:)-betaloc(1,:);
    v23     = betaloc(3,:)-betaloc(2,:);
    v31     = betaloc(1,:)-betaloc(3,:); 
  else
    error("bim2a_advection_upwind: coefficient beta has wrong dimensions.");
  endif
  
  [bp12, bm12] = deal (- (v12 - abs (v12))/2, (v12 + abs (v12))/2);
  [bp23, bm23] = deal (- (v23 - abs (v23))/2, (v23 + abs (v23))/2);
  [bp31, bm31] = deal (- (v31 - abs (v31))/2, (v31 + abs (v31))/2);
  
  bp12 = reshape(bp12,1,1,nelem).*Lloc(1,2,:);
  bm12 = reshape(bm12,1,1,nelem).*Lloc(1,2,:);
  bp23 = reshape(bp23,1,1,nelem).*Lloc(2,3,:);
  bm23 = reshape(bm23,1,1,nelem).*Lloc(2,3,:);
  bp31 = reshape(bp31,1,1,nelem).*Lloc(3,1,:);
  bm31 = reshape(bm31,1,1,nelem).*Lloc(3,1,:);
  
  Sloc(1,1,:) = (-bm12-bp31);
  Sloc(1,2,:) = bp12;
  Sloc(1,3,:) = bm31;
  
  Sloc(2,1,:) = bm12;
  Sloc(2,2,:) = (-bp12-bm23); 
  Sloc(2,3,:) = bp23;
  
  Sloc(3,1,:) = bp31;
  Sloc(3,2,:) = bm23;
  Sloc(3,3,:) = (-bm31-bp23);
  
  A = sparse(ginode(:), gjnode(:), Sloc(:));


endfunction