comparison +scheme/LaplaceCurvilinear.m @ 940:31186559236d feature/utux2D

Add forgotten type argument in call to interfaceStandard in Schrodinger2d and LaplCurv.
author Martin Almquist <malmquist@stanford.edu>
date Tue, 04 Dec 2018 14:42:36 -0800
parents 97291e1bd57c
children 706d1c2b4199
comparison
equal deleted inserted replaced
939:46f5dc61d90b 940:31186559236d
283 defaultType.interpolation = 'none'; 283 defaultType.interpolation = 'none';
284 default_struct('type', defaultType); 284 default_struct('type', defaultType);
285 285
286 switch type.interpolation 286 switch type.interpolation
287 case {'none', ''} 287 case {'none', ''}
288 [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary); 288 [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type);
289 case {'op','OP'} 289 case {'op','OP'}
290 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type); 290 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type);
291 otherwise 291 otherwise
292 error('Unknown type of interpolation: %s ', type.interpolation); 292 error('Unknown type of interpolation: %s ', type.interpolation);
293 end 293 end