comparison +scheme/Heat2dVariable.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 eb2f9233acc3
children a9e8c9d71307 459eeb99130f
comparison
equal deleted inserted replaced
688:eb2f9233acc3 689:60eb7f46d8d9
243 return_op = obj.e_r{j}; 243 return_op = obj.e_r{j};
244 end 244 end
245 case 'd' 245 case 'd'
246 switch boundary 246 switch boundary
247 case {'w','W','west','West','s','S','south','South'} 247 case {'w','W','west','West','s','S','south','South'}
248 return_op = obj.d_l{j}; 248 return_op = obj.d1_l{j};
249 case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'} 249 case {'e', 'E', 'east', 'East','n', 'N', 'north', 'North'}
250 return_op = obj.d_r{j}; 250 return_op = obj.d1_r{j};
251 end 251 end
252 otherwise 252 otherwise
253 error(['No such operator: operatr = ' op]); 253 error(['No such operator: operatr = ' op]);
254 end 254 end
255 255