Mercurial > repos > public > sbplib
comparison +multiblock/stitchSchemes.m @ 120:8eb4e39df8a5
Changed variable name to make it clear boundary penatlies are currently skipped.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 18 Dec 2015 11:27:11 +0100 |
parents | 5c569cbef49e |
children | 419ec303e97d |
comparison
equal
deleted
inserted
replaced
119:c56437d097de | 120:8eb4e39df8a5 |
---|---|
67 bc = bound{i}.(fn{j}); | 67 bc = bound{i}.(fn{j}); |
68 if isempty(bc) | 68 if isempty(bc) |
69 continue | 69 continue |
70 end | 70 end |
71 | 71 |
72 t = schms{i}.boundary_condition(fn{j},bc{:}); | 72 [closure, ~] = schms{i}.boundary_condition(fn{j},bc{:}); |
73 D{i,i} = D{i,i}+t; | 73 D{i,i} = D{i,i}+closure; |
74 end | 74 end |
75 end | 75 end |
76 | 76 |
77 % Interface penalty terms | 77 % Interface penalty terms |
78 for i = 1:n_blocks | 78 for i = 1:n_blocks |