From bfb5e045fc0b405be627eb378cbcd022d493c871 Mon Sep 17 00:00:00 2001 From: SEOGI KANG Date: Fri, 14 Nov 2014 13:23:18 -0800 Subject: [PATCH] FIx bug for loop source --- simpegEM/TDEM/SurveyTDEM.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpegEM/TDEM/SurveyTDEM.py b/simpegEM/TDEM/SurveyTDEM.py index e4901663..86bc2b5a 100644 --- a/simpegEM/TDEM/SurveyTDEM.py +++ b/simpegEM/TDEM/SurveyTDEM.py @@ -96,7 +96,7 @@ class TxTDEM(Survey.BaseTx): else: raise NotImplementedError('Non-symmetric cyl mesh not implemented yet!') elif mesh._meshType is 'TENSOR': - MVP = Sources.MagneticLoopVectorPotential(self.loc, mesh, ['Ex','Ey','Ez']) + MVP = Sources.MagneticLoopVectorPotential(self.loc, mesh, ['Ex','Ey','Ez'], self.radius) else: raise Exception('Unknown mesh for CircularLoop')