From 14a411a129346907102e7c0d1f4ceec9ae0b989d Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Thu, 1 May 2014 09:47:11 -0700 Subject: [PATCH] Tloc in time rx --- SimPEG/Survey.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SimPEG/Survey.py b/SimPEG/Survey.py index 34b803d5..1ddcb3e9 100644 --- a/SimPEG/Survey.py +++ b/SimPEG/Survey.py @@ -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: