test counting, put dummies in for grid3D calcs

This commit is contained in:
Rowan Cockett
2015-02-10 12:42:35 -08:00
parent 72c8dfb3ef
commit 5c85f13cb6
2 changed files with 46 additions and 0 deletions
+8
View File
@@ -375,6 +375,10 @@ class TreeMesh(BaseMesh):
return np.c_[Ex, Ey][P, :]
@property
def gridEz(self):
pass
@property
def gridFx(self):
if self.dim == 2:
@@ -385,6 +389,10 @@ class TreeMesh(BaseMesh):
if self.dim == 2:
return self.gridEx
@property
def gridFz(self):
pass
def _push(self, attr, rows):
self.isNumbered = False
rows = np.atleast_2d(rows)