Mercurial > repos > public > sbplib
comparison +scheme/Wave2d.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 | 706d1c2b4199 |
children | 5afc774fb7c4 |
comparison
equal
deleted
inserted
replaced
1041:25d0efdb0f75 | 1043:c12b84fe9b00 |
---|---|
219 function N = size(obj) | 219 function N = size(obj) |
220 N = prod(obj.m); | 220 N = prod(obj.m); |
221 end | 221 end |
222 | 222 |
223 end | 223 end |
224 | |
225 methods(Static) | |
226 % Calculates the matrcis need for the inteface coupling between boundary bound_u of scheme schm_u | |
227 % and bound_v of scheme schm_v. | |
228 % [uu, uv, vv, vu] = inteface_couplong(A,'r',B,'l') | |
229 function [uu, uv, vv, vu] = interface_coupling(schm_u,bound_u,schm_v,bound_v) | |
230 [uu,uv] = schm_u.interface(bound_u,schm_v,bound_v); | |
231 [vv,vu] = schm_v.interface(bound_v,schm_u,bound_u); | |
232 end | |
233 end | |
234 end | 224 end |