diff +scheme/Divergence.m @ 1124:c2d281633e14 feature/poroelastic

Divergence and Gradient do not work for multi-block. Not sure how to fix, left error message for now.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 11 May 2019 17:52:08 -0700
parents 8984b12feba6
children
line wrap: on
line diff
--- a/+scheme/Divergence.m	Sat May 11 16:36:33 2019 -0700
+++ b/+scheme/Divergence.m	Sat May 11 17:52:08 2019 -0700
@@ -98,12 +98,7 @@
         %          -- tuning:           penalty strength, defaults to 1.2
         %          -- interpolation:    type of interpolation, default 'none'
         function [closure, penalty] = interface(obj,boundary,neighbour_scheme,neighbour_boundary,type)
-
-            [m, n] = size(obj.D);
-            closure = sparse(m, n);
-
-            [m, n] = size(neighbour_scheme.D);
-            penalty = sparse(m, n);
+            error('Not implemented')
         end
 
         function N = size(obj)