comparison +scheme/Elastic2dVariable.m @ 689:60eb7f46d8d9 feature/poroelastic

Bugfix get_boundary_op in Elastic2d and Heat2d
author Martin Almquist <malmquist@stanford.edu>
date Thu, 15 Feb 2018 16:38:36 -0800
parents e8fc3aa1faf6
children 37d5d69b1a0d 459eeb99130f
comparison
equal deleted inserted replaced
688:eb2f9233acc3 689:60eb7f46d8d9
401 return_op = obj.e_r{j}; 401 return_op = obj.e_r{j};
402 end 402 end
403 case 'd' 403 case 'd'
404 switch boundary 404 switch boundary
405 case {'w','W','west','West','s','S','south','South'} 405 case {'w','W','west','West','s','S','south','South'}
406 return_op = obj.d_l{j}; 406 return_op = obj.d1_l{j};
407 case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'} 407 case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'}
408 return_op = obj.d_r{j}; 408 return_op = obj.d1_r{j};
409 end 409 end
410 otherwise 410 otherwise
411 error(['No such operator: operatr = ' op]); 411 error(['No such operator: operatr = ' op]);
412 end 412 end
413 413