mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-18 12:40:30 +08:00
EdgeInnerProducts now working for LOM
Fixed DiffOps bug in CURL Fixed bug in OrderTest --> must remember to do cumSum, and not just supply dx to ndgrid test_massMatrices now tests uniformLOM
This commit is contained in:
@@ -168,9 +168,9 @@ class DiffOperators(object):
|
||||
def fget(self):
|
||||
if(self._edgeCurl is None):
|
||||
# The number of cell centers in each direction
|
||||
n1 = np.size(self.hx)
|
||||
n2 = np.size(self.hy)
|
||||
n3 = np.size(self.hz)
|
||||
n1 = self.nCx
|
||||
n2 = self.nCy
|
||||
n3 = self.nCy
|
||||
|
||||
# Compute lengths of cell edges
|
||||
L = self.edge
|
||||
|
||||
Reference in New Issue
Block a user