Skip to content

Commit

Permalink
from SimPEG.EM import mu_0
Browse files Browse the repository at this point in the history
  • Loading branch information
lheagy committed Jan 29, 2016
1 parent 967dc83 commit 1457e51
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion SimPEG/EM/FDEM/FDEM.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def Jtvec(self, m, v, u=None):
raise Exception('Must be real or imag')

ATinv.clean()

return Utils.mkvc(Jtv)

def getSourceTerm(self, freq):
Expand Down
2 changes: 1 addition & 1 deletion SimPEG/EM/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# from EM import *
import TDEM
import FDEM
import Base
import Analytics
import Utils
from scipy.constants import mu_0, epsilon_0
4 changes: 2 additions & 2 deletions SimPEG/Examples/EM_FDEM_1D_Inversion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from SimPEG import *
import SimPEG.EM as EM
from scipy.constants import mu_0
from SimPEG.EM import mu_0


def run(plotIt=True):
Expand Down Expand Up @@ -59,7 +59,7 @@ def run(plotIt=True):
prb.Solver = MumpsSolver
except ImportError, e:
prb.Solver = SolverLU

prb.pair(survey)

std = 0.05
Expand Down
2 changes: 1 addition & 1 deletion SimPEG/Examples/EM_TDEM_1D_Inversion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from SimPEG import *
import SimPEG.EM as EM
from scipy.constants import mu_0
from SimPEG.EM import mu_0


def run(plotIt=True):
Expand Down

0 comments on commit 1457e51

Please sign in to comment.