rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
diffusivity_tensor_zero.m
1 function diffusivity = diffusivity_tensor_zero(glob,U,params)
2 % function diffusivity = diffusivity_tensor_zero(glob,U,params)
3 %
4 % function computing the diffusivity pointwise evaluation in the point
5 % sequences indicated by global coordinates in the columns of the matrix glob.
6 %
7 % generated fields of diffusivity:
8 % epsilon: upper bound on diffusivity value
9 % K : diffusivity tensor, i.e. a sparse square matrix of size
10 % '2*dim x 2*dim'
11 
12 % glob column check
13 if params.debug
14  if ~isempty(glob) && size(glob,1) < size(glob,2)
15  warning('coordinates in variable glob are given row-wise, but expected them to be column-wise');
16  if params.debug > 2
17  keyboard;
18  end
19  end
20 end
21 
22 diffusivity.K = 0;
23 diffusivity.epsilon = 0;
24 
25 %| \docupdate