rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
diffusivity_zero.m
1 function diffusivity = diffusivity_zero(glob, params)
2 % function diffusivity = diffusivity_zero(glob, 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: vector with diffusivity values
10 
11 % glob column check
12 if params.debug
13  if ~isempty(glob) && size(glob,1) < size(glob,2)
14  warning('coordinates in variable glob are given row-wise, but expected them to be column-wise');
15  if params.debug > 2
16  keyboard;
17  end
18  end
19 end
20 diffusivity.K = 0;
21 diffusivity.epsilon = 0;
22 
23 %| \docupdate