diff --git a/SimPEG/EM/FDEM/SrcFDEM.py b/SimPEG/EM/FDEM/SrcFDEM.py index 55d0990f..4590205d 100644 --- a/SimPEG/EM/FDEM/SrcFDEM.py +++ b/SimPEG/EM/FDEM/SrcFDEM.py @@ -630,3 +630,21 @@ class PrimSecSigma(BaseSrc): return prob.MeSigmaDeriv(self.ePrimary(prob)) * v +class PrimSecSigmaProblem(BaseSrc): + + def __init__(self, rxList, freq, primaryProblem, primarySurvey, map2meshs = None ,**kwargs): + + self.primaryProblem = primaryProblem + self.primarySurvey = primarySurvey + self.map2meshs = map2meshs + + BaseSrc.__init__(self, rxList, freq=freq, **kwargs) + + + def ePrimary(self, prob): + + def ePrimaryDeriv(self, prob, v, adjoint=False): + + + + diff --git a/docs/warnings.txt b/docs/warnings.txt new file mode 100644 index 00000000..e69de29b