This file is indexed.

/usr/share/octave/packages/bim-1.1.5/bim3a_laplacian.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
## 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}} = bim3a_laplacian (@var{mesh}, @var{epsilon}, @var{kappa})
##
## Build the standard finite element stiffness matrix for a diffusion
## problem. 
##
## The equation taken into account is:
##
## - (@var{epsilon} * @var{kappa} ( u' ))' = f
## 
## where @var{epsilon} is an element-wise constant scalar function,
## while @var{kappa} is a piecewise linear conforming scalar function.
##
## @seealso{bim3a_rhs, bim3a_reaction, bim2a_laplacian, bim3a_laplacian}
## @end deftypefn

function [A] = bim3a_laplacian (mesh,epsilon,kappa)

  ## Check input
  if nargin != 3
    error("bim3a_laplacian: wrong number of input parameters.");
  elseif !(isstruct(mesh)     && isfield(mesh,"p") &&
	   isfield (mesh,"t") && isfield(mesh,"e"))
    error("bim3a_laplacian: first input is not a valid mesh structure.");
  endif

  p      = mesh.p;
  t      = mesh.t;
  nnodes = columns(p);
  nelem  = columns(t);

  ## Turn scalar input to a vector of appropriate size
  if isscalar(epsilon)
    epsilon  = epsilon * ones(nelem,1);
  endif
  if isscalar(kappa)
    kappa = kappa*ones(nnodes,1);
  endif

  if !( isvector(epsilon) && isvector(kappa) )
    error("bim3a_laplacian: coefficients are not valid vectors.");
  elseif (numel (epsilon) != nelem)
    error("bim3a_laplacian: length of epsilon is not equal to the number of elements.");
  elseif (numel (kappa) != nnodes)
    error("bim2a_laplacian: length of kappa is not equal to the number of nodes.");
  endif

  ## Local contributions
  Lloc = zeros(4,4,nelem);

  epsilonareak = reshape (epsilon .* mesh.area',1,1,nelem);
  shg = mesh.shg(:,:,:);
  
  ## Computation
  for inode = 1:4
    for jnode = 1:4
      ginode(inode,jnode,:) = mesh.t(inode,:);
      gjnode(inode,jnode,:) = mesh.t(jnode,:);
      Lloc(inode,jnode,:)   = sum( kappa(inode) * shg(:,inode,:) .* shg(:,jnode,:),1) .* epsilonareak;
    endfor
  endfor

  ## Assembly
  A = sparse(ginode(:),gjnode(:),Lloc(:));

endfunction

%!shared mesh,epsilon,kappa,nnodes,nelem
% x = y = z = linspace(0,1,4);
% [mesh] = msh3m_structured_mesh(x,y,z,1,1:6);
% [mesh] = bim3c_mesh_properties(mesh);
% nnodes = columns(mesh.p);
% nelem  = columns(mesh.t);
% epsilon = ones(columns(mesh.t),1);
% kappa   = ones(columns(mesh.p),1);
%!test
% [A] = bim3a_laplacian(mesh,epsilon,kappa);
% assert(size(A),[nnodes, nnodes]);
%!test
% [A1] = bim3a_laplacian(mesh,3*epsilon,kappa);
% [A2] = bim3a_laplacian(mesh,epsilon,3*kappa);
% assert(A1,A2);
%!test
% [A1] = bim3a_laplacian(mesh,epsilon,kappa);
% [A2] = bim3a_laplacian(mesh,1,1);
% assert(A1,A2);