From a697833b9f0c79ad5fab10f2ec44172386561153 Mon Sep 17 00:00:00 2001 From: Lindsey Date: Mon, 2 Mar 2015 14:49:06 -0800 Subject: [PATCH] changed todo for constant mu to anisotropic mu --- simpegEM/Base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simpegEM/Base.py b/simpegEM/Base.py index 459a4e1e..2b005540 100644 --- a/simpegEM/Base.py +++ b/simpegEM/Base.py @@ -50,14 +50,14 @@ class BaseEMProblem(Problem.BaseProblem): @property def MeMuI(self): - # Assuming isotropic mu! + # TODO: Assuming isotropic mu if getattr(self, '_MeMuI', None) is None: self._MeMuI = self.mesh.getEdgeInnerProduct(self.mu, invMat=True) return self._MeMuI @property def MeMu(self): - #TODO: assuming constant mu + #TODO: Assuming isotropic mu if getattr(self, '_MeMu', None) is None: self._MeMu = self.mesh.getEdgeInnerProduct(self.mu) return self._MeMu