mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-10 23:57:43 +08:00
Create DataTDEM1D class
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
from SimPEG import Utils
|
||||
from SimPEG.Data import BaseData
|
||||
|
||||
|
||||
class DataTDEM1D(BaseData):
|
||||
"""
|
||||
docstring for DataTDEM1D
|
||||
"""
|
||||
|
||||
txLoc = None #: txLoc
|
||||
txType = None #: txType
|
||||
rxLoc = None #: rxLoc
|
||||
rxType = None #: rxType
|
||||
timeCh = None #: timeCh
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
BaseData.__init__(self, **kwargs)
|
||||
Utils.setKwargs(self, **kwargs)
|
||||
@@ -0,0 +1 @@
|
||||
from BaseTDEM import DataTDEM1D
|
||||
@@ -1,2 +1,3 @@
|
||||
# from EM import *
|
||||
import Utils
|
||||
import Utils
|
||||
import TDEM
|
||||
Reference in New Issue
Block a user