Fixed bugs. Added notebooks with halfspace and layer examples.

Code is working (returning results with in couple of % for a 1D analytic solution) but test need to be "automated".
This commit is contained in:
Gudni Karl Rosenkjaer
2015-03-02 14:58:53 -08:00
parent fbf4370a78
commit 52618bac35
10 changed files with 2318 additions and 318 deletions
+2 -2
View File
@@ -26,12 +26,12 @@ for loc in rx_loc:
rxList.append(simpegmt.SurveyMT.RxMT(simpeg.mkvc(loc,2).T,rxType))
# Source list
srcList =[]
for freq in np.logspace(3,-1,5):
for freq in np.logspace(3,-3,7):
srcList.append(simpegmt.SurveyMT.srcMT(freq,rxList))
# Survey MT
survey = simpegmt.SurveyMT.SurveyMT(srcList)
## Setup the problem objec
## Setup the problem object
problem = simpegmt.ProblemMT.MTProblem(M)
problem.pair(survey)