comparison +scheme/Scheme.m @ 568:12ee11893453 feature/grids

Add todo about method name change
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 01 Sep 2017 10:52:56 +0200
parents 08b6281ba2a9
children 459eeb99130f
comparison
equal deleted inserted replaced
550:e860670e72f1 568:12ee11893453
23 % neighbour_scheme is an instance of Scheme that should be 23 % neighbour_scheme is an instance of Scheme that should be
24 % interfaced to. 24 % interfaced to.
25 % neighbour_boundary is a string specifying which boundary to 25 % neighbour_boundary is a string specifying which boundary to
26 % interface to. 26 % interface to.
27 % penalty may be a cell array if there are several penalties with different weights 27 % penalty may be a cell array if there are several penalties with different weights
28 [closure, penalty] = boundary_condition(obj,boundary,type) 28 [closure, penalty] = boundary_condition(obj,boundary,type) % TODO: Change name to boundaryCondition
29 [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary) 29 [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary)
30 30
31 % TODO: op = getBoundaryOperator()?? 31 % TODO: op = getBoundaryOperator()??
32 % makes sense to have it available through a method instead of random properties 32 % makes sense to have it available through a method instead of random properties
33 33