diff --git a/SimPEG/EM/FDEM/SrcFDEM.py b/SimPEG/EM/FDEM/SrcFDEM.py index 327fca86..8704b712 100644 --- a/SimPEG/EM/FDEM/SrcFDEM.py +++ b/SimPEG/EM/FDEM/SrcFDEM.py @@ -710,10 +710,10 @@ class PrimSecMappedSigma(BaseSrc): BaseSrc.__init__(self, rxList, freq=freq, **kwargs) @property - def _ProjPrimary(self): - if getattr(self, '__ProjPrimary', None) is None: - self.__ProjPrimary = self.primaryProblem.mesh.getInterpolationMatCartMesh(meshs, locType='F', locTypeTo='E') - return self.__ProjPrimary + def _ProjPrimary(self, prob): + # if getattr(self, '__ProjPrimary', None) is None: + return self.primaryProblem.mesh.getInterpolationMatCartMesh(prob.mesh, locType='F', locTypeTo='E') + # return self.__ProjPrimary def _primaryFields(self, prob):