diff --git a/simpegEM/TDEM/TDEM_b.py b/simpegEM/TDEM/TDEM_b.py index 2e8da6ca..e96525f2 100644 --- a/simpegEM/TDEM/TDEM_b.py +++ b/simpegEM/TDEM/TDEM_b.py @@ -37,7 +37,7 @@ class ProblemTDEM_b(BaseTDEMProblem): def getRHS(self, tInd, F): dt = self.timeSteps[tInd] - B_n = np.concatenate([F[tx,'b',tInd] for tx in self.survey.txList], axis=1) + B_n = np.c_[[F[tx,'b',tInd] for tx in self.survey.txList]].T RHS = (1.0/dt)*self.MfMui*B_n return RHS