comparison +multiblock/Laplace.m @ 750:43e64f5b388e feature/grids

Add missing semicolon in multiblock.Laplace
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 04 Jun 2018 17:48:19 +0200
parents ec0a594bea9f
children e05465aa2e25
comparison
equal deleted inserted replaced
749:1de60c4d462d 750:43e64f5b388e
41 function op = getBoundaryOperator(obj, opName, boundary) 41 function op = getBoundaryOperator(obj, opName, boundary)
42 op = getBoundaryOperator(obj.mbDiffOp, opName, boundary); 42 op = getBoundaryOperator(obj.mbDiffOp, opName, boundary);
43 end 43 end
44 44
45 function [closure, penalty] = boundary_condition(obj,boundary,type) % TODO: Change name to boundaryCondition 45 function [closure, penalty] = boundary_condition(obj,boundary,type) % TODO: Change name to boundaryCondition
46 [closure, penalty] = boundary_condition(obj.mbDiffOp, boundary, type) 46 [closure, penalty] = boundary_condition(obj.mbDiffOp, boundary, type);
47 end 47 end
48 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary) 48 function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary)
49 error('Not implemented') 49 error('Not implemented')
50 end 50 end
51 end 51 end