From 9336b821da9957c10140d4723732ee5beb688cad Mon Sep 17 00:00:00 2001 From: Rowan Cockett Date: Wed, 22 Jun 2016 11:16:51 -0600 Subject: [PATCH] Delete MagSurveyIE.py --- simpegPF/MagSurveyIE.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 simpegPF/MagSurveyIE.py diff --git a/simpegPF/MagSurveyIE.py b/simpegPF/MagSurveyIE.py deleted file mode 100644 index f0a0a678..00000000 --- a/simpegPF/MagSurveyIE.py +++ /dev/null @@ -1,18 +0,0 @@ -from BaseMag import BaseMagSurvey - -class MagSurveyIE(BaseMagSurvey): - """Base Magnetics Survey""" - - rxLoc = None #: receiver locations - rxType = None #: receiver type - - def __init__(self, **kwargs): - Survey.BaseSurvey.__init__(self, **kwargs) - - def setBackgroundField(self, Inc, Dec, Btot): - - Bx = Btot*np.cos(Inc/180.*np.pi)*np.sin(Dec/180.*np.pi) - By = Btot*np.cos(Inc/180.*np.pi)*np.cos(Dec/180.*np.pi) - Bz = -Btot*np.sin(Inc/180.*np.pi) - - self.B0 = np.r_[Bx,By,Bz] \ No newline at end of file