comparison +scheme/Utux2d.m @ 1043:c12b84fe9b00

Remove static method `interface_coupling` that shouldn't have existed in the first place
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 22 Jan 2019 16:50:05 +0100
parents cab047de7f5d
children 5afc774fb7c4
comparison
equal deleted inserted replaced
1041:25d0efdb0f75 1043:c12b84fe9b00
293 function N = size(obj) 293 function N = size(obj)
294 N = obj.m; 294 N = obj.m;
295 end 295 end
296 296
297 end 297 end
298
299 methods(Static)
300 % Calculates the matrices needed for the inteface coupling between boundary bound_u of scheme schm_u
301 % and bound_v of scheme schm_v.
302 % [uu, uv, vv, vu] = inteface_coupling(A,'r',B,'l')
303 function [uu, uv, vv, vu] = interface_coupling(schm_u,bound_u,schm_v,bound_v)
304 [uu,uv] = schm_u.interface(bound_u,schm_v,bound_v);
305 [vv,vu] = schm_v.interface(bound_v,schm_u,bound_u);
306 end
307 end
308 end 298 end