Mercurial > repos > public > sbplib
comparison +scheme/Schrodinger2d.m @ 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 |
comparison
equal
deleted
inserted
replaced
939:46f5dc61d90b | 940:31186559236d |
---|---|
206 defaultType.interpolation = 'none'; | 206 defaultType.interpolation = 'none'; |
207 default_struct('type', defaultType); | 207 default_struct('type', defaultType); |
208 | 208 |
209 switch type.interpolation | 209 switch type.interpolation |
210 case {'none', ''} | 210 case {'none', ''} |
211 [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary); | 211 [closure, penalty] = interfaceStandard(obj,boundary,neighbour_scheme,neighbour_boundary,type); |
212 case {'op','OP'} | 212 case {'op','OP'} |
213 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type); | 213 [closure, penalty] = interfaceNonConforming(obj,boundary,neighbour_scheme,neighbour_boundary,type); |
214 otherwise | 214 otherwise |
215 error('Unknown type of interpolation: %s ', type.interpolation); | 215 error('Unknown type of interpolation: %s ', type.interpolation); |
216 end | 216 end |