comparison +scheme/Schrodinger.m @ 979:7a5e770974ed feature/timesteppers

Merge with default
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 07 Jan 2019 16:26:00 +0100
parents 706d1c2b4199
children 337c4d1dcef5 c12b84fe9b00
comparison
equal deleted inserted replaced
933:34b3d092a4d0 979:7a5e770974ed
88 otherwise 88 otherwise
89 error('No such boundary condition: type = %s',type); 89 error('No such boundary condition: type = %s',type);
90 end 90 end
91 end 91 end
92 92
93 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary) 93 function [closure, penalty] = interface(obj, boundary, neighbour_scheme, neighbour_boundary, type)
94 % u denotes the solution in the own domain 94 % u denotes the solution in the own domain
95 % v denotes the solution in the neighbour domain 95 % v denotes the solution in the neighbour domain
96 [e_u,d_u,s_u] = obj.get_boundary_ops(boundary); 96 [e_u,d_u,s_u] = obj.get_boundary_ops(boundary);
97 [e_v,d_v,s_v] = neighbour_scheme.get_boundary_ops(neighbour_boundary); 97 [e_v,d_v,s_v] = neighbour_scheme.get_boundary_ops(neighbour_boundary);
98 98