diff +grid/Curvilinear.m @ 188:c5ca9bbfed41 feature/grids

Added methods to hande boundaries to Grid. Added failing tests and method stubs.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 04 Mar 2016 17:19:18 +0100
parents f7bb2a94d291
children 7c1d3fc33f90
line wrap: on
line diff
--- a/+grid/Curvilinear.m	Fri Mar 04 17:18:20 2016 +0100
+++ b/+grid/Curvilinear.m	Fri Mar 04 17:19:18 2016 +0100
@@ -80,6 +80,16 @@
             end
             h = obj.logic.h;
         end
+
+        % Return the names of all boundaries in this grid.
+        function bs = getBoundaryNames(obj)
+            bs = [];
+        end
+
+        % Return coordinates for the given boundary
+        function b = getBoundary(obj, name)
+            b = [];
+        end
     end
 end