Mercurial > repos > public > sbplib
comparison +scheme/Laplace1d.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 |
---|---|
131 function N = size(obj) | 131 function N = size(obj) |
132 N = obj.grid.size(); | 132 N = obj.grid.size(); |
133 end | 133 end |
134 | 134 |
135 end | 135 end |
136 | |
137 methods(Static) | |
138 % Calculates the matrcis need for the inteface coupling between boundary bound_u of scheme schm_u | |
139 % and bound_v of scheme schm_v. | |
140 % [uu, uv, vv, vu] = inteface_couplong(A,'r',B,'l') | |
141 function [uu, uv, vv, vu] = interface_coupling(schm_u,bound_u,schm_v,bound_v) | |
142 [uu,uv] = schm_u.interface(bound_u,schm_v,bound_v); | |
143 [vv,vu] = schm_v.interface(bound_v,schm_u,bound_u); | |
144 end | |
145 end | |
146 end | 136 end |