Mercurial > repos > public > sbplib
comparison +scheme/LaplaceCurvilinear.m @ 936:a205264664cd feature/utux2D
Remove default values from LaplaceCurvilinear.interfaceStandard
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 04 Dec 2018 12:54:33 +0100 |
parents | 1bf200417957 |
children | 97291e1bd57c |
comparison
equal
deleted
inserted
replaced
935:1bf200417957 | 936:a205264664cd |
---|---|
292 error('Unknown type of interpolation: %s ', type.interpolation); | 292 error('Unknown type of interpolation: %s ', type.interpolation); |
293 end | 293 end |
294 end | 294 end |
295 | 295 |
296 function [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type) | 296 function [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type) |
297 | |
298 default_arg('type', struct); | |
299 default_field(type, 'tuning', 1.2); | |
300 tuning = type.tuning; | 297 tuning = type.tuning; |
301 | 298 |
302 % u denotes the solution in the own domain | 299 % u denotes the solution in the own domain |
303 % v denotes the solution in the neighbour domain | 300 % v denotes the solution in the neighbour domain |
304 [e_u, d_u, gamm_u, H_b_u, I_u] = obj.get_boundary_ops(boundary); | 301 [e_u, d_u, gamm_u, H_b_u, I_u] = obj.get_boundary_ops(boundary); |