Mercurial > repos > public > sbplib
comparison +scheme/LaplaceCurvilinear.m @ 935:1bf200417957 feature/utux2D
Fix doc for LaplaceCurvilinear.interface
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 04 Dec 2018 12:53:59 +0100 |
parents | 1c61d8fa9903 |
children | a205264664cd |
comparison
equal
deleted
inserted
replaced
934:dd95470d4baf | 935:1bf200417957 |
---|---|
274 end | 274 end |
275 | 275 |
276 % type Struct that specifies the interface coupling. | 276 % type Struct that specifies the interface coupling. |
277 % Fields: | 277 % Fields: |
278 % -- tuning: penalty strength, defaults to 1.2 | 278 % -- tuning: penalty strength, defaults to 1.2 |
279 % -- interpolation: struct of interpolation operators (empty for conforming grids) | 279 % -- interpolation: type of interpolation, default 'none' |
280 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,type) | 280 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,type) |
281 | 281 |
282 defaultType.tuning = 1.2; | 282 defaultType.tuning = 1.2; |
283 defaultType.interpolation = 'none'; | 283 defaultType.interpolation = 'none'; |
284 default_struct('type', defaultType); | 284 default_struct('type', defaultType); |