Mercurial > repos > public > sbplib
diff +grid/Cartesian.m @ 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 | 3da69d57e684 |
children | 0ef96fcdc028 |
line wrap: on
line diff
--- 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)