mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-12 09:21:49 +08:00
19 lines
372 B
Python
19 lines
372 B
Python
import SimPEG
|
|
from SimPEG.EM.Base import BaseEMSurvey
|
|
from SimPEG import sp
|
|
from SimPEG.Utils import Zero, Identity
|
|
from RxDC import BaseRx
|
|
from SrcDC import BaseSrc
|
|
|
|
class Survey(BaseEMSurvey):
|
|
rxPair = BaseRx
|
|
srcPair = BaseSrc
|
|
|
|
def __init__(self, srcList, **kwargs):
|
|
self.srcList = srcList
|
|
BaseEMSurvey.__init__(self, srcList, **kwargs)
|
|
|
|
|
|
|
|
|