changeset 940:31186559236d feature/utux2D

Add forgotten type argument in call to interfaceStandard in Schrodinger2d and LaplCurv.
author Martin Almquist <malmquist@stanford.edu>
date Tue, 04 Dec 2018 14:42:36 -0800
parents 46f5dc61d90b
children cd74e177d256
files +scheme/LaplaceCurvilinear.m +scheme/Schrodinger2d.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/+scheme/LaplaceCurvilinear.m	Tue Dec 04 14:25:03 2018 -0800
+++ b/+scheme/LaplaceCurvilinear.m	Tue Dec 04 14:42:36 2018 -0800
@@ -285,7 +285,7 @@
 
             switch type.interpolation
             case {'none', ''}
-                [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary);
+                [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type);
             case {'op','OP'}
                 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type);
             otherwise
--- a/+scheme/Schrodinger2d.m	Tue Dec 04 14:25:03 2018 -0800
+++ b/+scheme/Schrodinger2d.m	Tue Dec 04 14:42:36 2018 -0800
@@ -208,7 +208,7 @@
 
             switch type.interpolation
             case {'none', ''}
-                [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary);
+                [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type);
             case {'op','OP'}
                 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type);
             otherwise