Added time string printing

This commit is contained in:
GudniRos
2015-04-06 12:33:29 -07:00
parent 028714b27d
commit 69966eae60
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -108,8 +108,9 @@ class MTProblem(Problem.BaseProblem):
# RHS, CalcFields = self.getRHS(freq,m_back), self.calcFields
F = FieldsMT(self.mesh, self.survey)
startTime = time.time()
def solveAtFreq(self,F,freq):
startTime = time.time()
print 'Starting work for {:.3e}'.format(freq)
sys.stdout.flush()
A = self.getA(freq)
+1
View File
@@ -1,5 +1,6 @@
from SimPEG import Survey, Utils, Problem, np, sp, mkvc
from scipy.constants import mu_0
import sys
class RxMT(Survey.BaseRx):