From 6d56ebef52dd9a0c7f040c41a026ea1be6a9cc91 Mon Sep 17 00:00:00 2001 From: Lindsey Heagy Date: Thu, 10 Dec 2015 19:42:22 -0800 Subject: [PATCH] typo fix --- SimPEG/EM/FDEM/SrcFDEM.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SimPEG/EM/FDEM/SrcFDEM.py b/SimPEG/EM/FDEM/SrcFDEM.py index de848253..8209008c 100644 --- a/SimPEG/EM/FDEM/SrcFDEM.py +++ b/SimPEG/EM/FDEM/SrcFDEM.py @@ -334,7 +334,7 @@ class PrimSecSigma(BaseSrc): def S_eDeriv(self, prob, v, adjoint = False): MeSigmaDeriv = prob.MeSigmaDeriv if adjoint is not True: - return MeSigmaDeriv(Utils.mkvc(self.ePrimary)) * v # TODO: This is really sloppy and will not work if more than one freq - return MeSigmaDeriv(Utils.mkvc(self.ePrimary)).T * v + return MeSigmaDeriv(Utils.mkvc(self._ePrimary)) * v # TODO: This is really sloppy and will not work if more than one freq + return MeSigmaDeriv(Utils.mkvc(self._ePrimary)).T * v