Tloc in time rx

This commit is contained in:
rowanc1
2014-05-01 09:47:11 -07:00
parent 52cee71b9b
commit 14a411a129
+2 -1
View File
@@ -57,6 +57,7 @@ class BaseTimeRx(BaseRx):
"""SimPEG Receiver Object"""
times = None #: Times when the receivers were active.
projTLoc = 'N'
def __init__(self, locs, times, rxType, **kwargs):
self.times = times
@@ -81,7 +82,7 @@ class BaseTimeRx(BaseRx):
return self._Ps[(mesh, timeMesh)]
Ps = mesh.getInterpolationMat(self.locs, self.projGLoc)
Pt = timeMesh.getInterpolationMat(self.times, 'N')
Pt = timeMesh.getInterpolationMat(self.times, self.projTLoc)
P = sp.kron(Pt, Ps)
if self.storeProjections: