rbmatlab 0.10.01
|
00001 function diffusivity = diffusivity_zero(glob, params) 00002 % function diffusivity = diffusivity_zero(glob, params) 00003 % 00004 % function computing the diffusivity pointwise evaluation in the point 00005 % sequences indicated by global coordinates in the columns of the matrix glob. 00006 % 00007 % generated fields of diffusivity: 00008 % epsilon: upper bound on diffusivity value 00009 % K: vector with diffusivity values 00010 00011 % glob column check 00012 if params.debug 00013 if ~isempty(glob) && size(glob,1) < size(glob,2) 00014 warning('coordinates in variable glob are given row-wise, but expected them to be column-wise'); 00015 if params.debug > 2 00016 keyboard; 00017 end 00018 end 00019 end 00020 diffusivity.K = 0; 00021 diffusivity.epsilon = 0; 00022 00023 %| \docupdate