comparison +scheme/Utux.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 6d2167719557
children 5afc774fb7c4
comparison
equal deleted inserted replaced
1041:25d0efdb0f75 1043:c12b84fe9b00
75 function N = size(obj) 75 function N = size(obj)
76 N = obj.m; 76 N = obj.m;
77 end 77 end
78 78
79 end 79 end
80
81 methods(Static)
82 % Calculates the matrices needed for the inteface coupling between boundary bound_u of scheme schm_u
83 % and bound_v of scheme schm_v.
84 % [uu, uv, vv, vu] = inteface_coupling(A,'r',B,'l')
85 function [uu, uv, vv, vu] = interface_coupling(schm_u,bound_u,schm_v,bound_v)
86 [uu,uv] = schm_u.interface(bound_u,schm_v,bound_v);
87 [vv,vu] = schm_v.interface(bound_v,schm_u,bound_u);
88 end
89 end
90 end 80 end