changeset 684:fcf004066ea9 feature/poroelastic

Add property lim to grid/Cartesian to make periodic discr easier.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 08 Feb 2018 16:40:48 -0800
parents 50e77b15d841
children b035902869a8
files +grid/Cartesian.m
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
diff -r 50e77b15d841 -r fcf004066ea9 +grid/Cartesian.m
--- a/+grid/Cartesian.m	Thu Feb 08 16:02:20 2018 -0800
+++ b/+grid/Cartesian.m	Thu Feb 08 16:40:48 2018 -0800
@@ -5,6 +5,7 @@
         m % Number of points in each direction
         x % Cell array of vectors with node placement for each dimension.
         h % Spacing/Scaling
+        lim % Cell array of left and right boundaries for each dimension.
     end
 
     % General d dimensional grid with n points
@@ -27,6 +28,7 @@
             end
 
             obj.h = [];
+            obj.lim = [];
         end
         % n returns the number of points in the grid
         function o = N(obj)