02. Model property mapping#

Physical rock properties (and their units) can be a tricky thing. And emg3d is no difference in this respect. It was first developed for oil and gas, having resistive bodies in mind. You will therefore find that the documentation often talks about resistivity (Ohm.m). However, internally the computation is carried out in conductivities (S/m), so resistivities are converted into conductivities internally. For the simple forward model this is not a big issue, as the output is simply the electromagnetic field. However, moving over to optimization makes things more complicated, as the gradient of the misfit function, for instance, depends on the parametrization.

Since emg3d v0.12.0 it is therefore possible to define a emg3d.models.Model in different ways, thanks to different maps, defined with the parameter mapping. Currently implemented are six different maps:

  • 'Resistivity': \(\rho\) (Ohm.m), the default;

  • 'LgResistivity': \(\log_{10}(\rho)\);

  • 'LnResistivity': \(\log_e(\rho)\);

  • 'Conductivity': \(\sigma\) (S/m);

  • 'LgConductivity': \(\log_{10}(\sigma)\);

  • 'LnConductivity': \(\log_e(\sigma)\).

We take here the model from 05. Total vs primary/secondary field and map it once as 'LgResistivity' and once as 'LgConductivity', and verify that the resulting electric field is the same.

import emg3d
import numpy as np
import matplotlib.pyplot as plt
plt.style.use('bmh')

Survey#

src = [0, 0, -1950, 0, 0]   # x-dir. source at the origin, 50 m above seafloor
off = np.arange(5, 81)*100  # Offsets
rec = [off, off*0, -2000]   # In-line receivers on the seafloor
res = [0.3, 1]              # 1D resistivities (Ohm.m): [water, background]
freq = 1.0                  # Frequency (Hz)

Mesh#

We create quite a coarse grid (100 m minimum cell width), to have reasonable fast computation times.

grid = emg3d.construct_mesh(
        frequency=freq,
        min_width_limits=100.0,
        properties=[res[0], res[1], res[1], res[0]],
        center=(src[0], src[1], -2000),
        domain=([-100, 8100], [-500, 500], [-3500, -1500]),
        center_on_edge=True,
        verb=0,
)
grid
TensorMesh 73,728 cells
MESH EXTENT CELL WIDTH FACTOR
dir nC min max min max max
x 96 -3,303.39 11,303.39 100.00 996.95 1.39
y 24 -3,703.39 3,703.39 100.00 996.95 1.39
z 32 -7,512.73 240.89 100.00 1,344.36 1.45


Define resistivities#

# Layered_background
res_x = np.ones(grid.n_cells)*res[0]            # Water resistivity
res_x[grid.cell_centers[:, 2] < -2000] = res[1]  # Background resistivity

# Include the target
xx = (grid.cell_centers[:, 0] >= 0) & (grid.cell_centers[:, 0] <= 6000)
yy = abs(grid.cell_centers[:, 1]) <= 500
zz = (grid.cell_centers[:, 2] > -3500)*(grid.cell_centers[:, 2] < -3000)

res_x[xx*yy*zz] = 100.  # Target resistivity

Create LgResistivity and LgConductivity models#

# Create log10-res model
model_lg_res = emg3d.Model(
        grid, property_x=np.log10(res_x), mapping='LgResistivity')

# Create log10-con model
model_lg_con = emg3d.Model(
        grid, property_x=np.log10(1/res_x), mapping='LgConductivity')

# Plot the models
fig, axs = plt.subplots(1, 2, figsize=(9, 6), constrained_layout=True)

# log10-res
f0 = grid.plot_slice(model_lg_res.property_x, v_type='CC',
                     normal='Y', ax=axs[0], clim=[-2, 2])
axs[0].set_title('Resistivity (Ohm.m); log10-scale')
axs[0].set_xlim([-1000, 8000])
axs[0].set_ylim([-4000, -1500])

# log10-con
f1 = grid.plot_slice(model_lg_con.property_x, v_type='CC',
                     normal='Y', ax=axs[1], clim=[-2, 2])
axs[1].set_title('Conductivity (S/m); log10-scale')
axs[1].set_xlim([-1000, 8000])
axs[1].set_ylim([-4000, -1500])

fig.colorbar(f0[0], ax=axs, orientation='horizontal', fraction=0.1)
Resistivity (Ohm.m); log10-scale, Conductivity (S/m); log10-scale

Compute electric fields#

source = emg3d.TxElectricDipole(coordinates=src)
solver_opts = {
    'source': source,
    'frequency': freq,
    'verb': 1,
}

efield_lg_res = emg3d.solve_source(model_lg_res, **solver_opts)
efield_lg_con = emg3d.solve_source(model_lg_con, **solver_opts)

# Extract responses at receiver locations.
rec_lg_res = efield_lg_res.get_receiver((*rec, 0, 0))
rec_lg_con = efield_lg_con.get_receiver((*rec, 0, 0))
:: emg3d :: 8.9e-07; 1(4); 0:00:02; CONVERGED
:: emg3d :: 8.9e-07; 1(4); 0:00:02; CONVERGED

Compare the two results#

fig, ax = plt.subplots(1, 1, constrained_layout=True)
fig.suptitle('Comparison')

# Log_10(resistivity)-model.
ax.plot(off/1e3, rec_lg_res.real, 'C0', label='Real[log10(ρ)]-model')
ax.plot(off/1e3, rec_lg_res.imag, 'C1-', label='Imag[log10(ρ)]-model')

# Log_10(conductivity)-model.
ax.plot(off/1e3, rec_lg_con.real, 'C2-.', label='Real[log10(σ)]-model')
ax.plot(off/1e3, rec_lg_con.imag, 'C3-.', label='Imag[log10(σ)]-model')

ax.set_xlabel('Offset (km)')
ax.set_ylabel('Ex (V/m)')
ax.set_yscale('symlog', linthresh=1e-17)
ax.legend()
Comparison
Wed Feb 11 20:46:06 2026 UTC
OS Linux (Ubuntu 24.04) CPU(s) 16 Machine x86_64
Architecture 64bit RAM 93.6 GiB Environment Python
File system ext4
Python 3.13.12 | packaged by conda-forge | (main, Feb 5 2026, 05:53:46) [GCC 14.3.0]
numpy 2.3.5 scipy 1.17.0 numba 0.63.1
emg3d 1.8.7 empymod 2.6.0 xarray 2026.1.0
discretize 0.12.0 h5py 3.15.1 matplotlib 3.10.8
tqdm 4.67.3
Intel(R) oneAPI Math Kernel Library Version 2025.3-Product Build 20251007 for Intel(R) 64 architecture applications


Total running time of the script: (0 minutes 4.914 seconds)

Estimated memory usage: 271 MB

Gallery generated by Sphinx-Gallery