.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/fdomain/dipole_vs_bipole.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_fdomain_dipole_vs_bipole.py: Point dipole vs finite length dipole ==================================== Comparison of a 800 m long bipole with a dipole at its centre. .. GENERATED FROM PYTHON SOURCE LINES 8-13 .. code-block:: Python import empymod import numpy as np import matplotlib.pyplot as plt plt.style.use('ggplot') .. GENERATED FROM PYTHON SOURCE LINES 15-17 Define models ------------- .. GENERATED FROM PYTHON SOURCE LINES 17-33 .. code-block:: Python name = 'Example Model' # Model name depth = [0, 300, 1000, 1200] # Layer boundaries res = [2e14, 0.3, 1, 50, 1] # Anomaly resistivities resBG = [2e14, 0.3, 1, 1, 1] # Background resistivities aniso = [1, 1, 1.5, 1.5, 1.5] # Layer anis. (same for anomaly and background) # Modelling parameters verb = 2 # Spatial parameters zsrc = 250 # Src-depth zrec = 300 # Rec-depth fx = np.arange(5, 101)*100 # Offsets fy = np.zeros(fx.size) # 0s .. GENERATED FROM PYTHON SOURCE LINES 34-36 Plot models ~~~~~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 36-69 .. code-block:: Python pdepth = np.repeat(np.r_[-100, depth], 2) pdepth[:-1] = pdepth[1:] pdepth[-1] = 2*depth[-1] pres = np.repeat(res, 2) presBG = np.repeat(resBG, 2) pani = np.repeat(aniso, 2) # Create figure fig = plt.figure(figsize=(7, 5), facecolor='w') fig.subplots_adjust(wspace=.25, hspace=.4) plt.suptitle(name, fontsize=20) # Plot Resistivities ax1 = plt.subplot(1, 2, 1) plt.plot(pres, pdepth, 'r') plt.plot(presBG, pdepth, 'k') plt.xscale('log') plt.xlim([.2*np.array(res).min(), 2*np.array(res)[1:].max()]) plt.ylim([1.5*depth[-1], -100]) plt.ylabel('Depth (m)') plt.xlabel(r'Resistivity $\rho_h\ (\Omega\,\rm{m})$') # Plot anisotropies ax2 = plt.subplot(1, 2, 2) plt.plot(pani, pdepth, 'k') plt.xlim([0, 2]) plt.ylim([1.5*depth[-1], -100]) plt.xlabel(r'Anisotropy $\lambda (-)$') ax2.yaxis.tick_right() plt.show() .. image-sg:: /gallery/fdomain/images/sphx_glr_dipole_vs_bipole_001.png :alt: Example Model :srcset: /gallery/fdomain/images/sphx_glr_dipole_vs_bipole_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 70-75 Frequency response for f = 1 Hz ------------------------------- Compute ~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 75-90 .. code-block:: Python # Dipole inpdat = {'src': [0, 0, zsrc, 0, 0], 'rec': [fx, fy, zrec, 0, 0], 'depth': depth, 'freqtime': 1, 'aniso': aniso, 'htarg': {'pts_per_dec': -1}, 'verb': verb} fEM = empymod.bipole(**inpdat, res=res) fEMBG = empymod.bipole(**inpdat, res=resBG) # Bipole inpdat['src'] = [-400, 400, 0, 0, zsrc, zsrc] inpdat['srcpts'] = 10 fEMbp = empymod.bipole(**inpdat, res=res) fEMBGbp = empymod.bipole(**inpdat, res=resBG) .. rst-class:: sphx-glr-script-out .. code-block:: none :: empymod END; runtime = 0:00:15.137246 :: 1 kernel call(s) :: empymod END; runtime = 0:00:00.002371 :: 1 kernel call(s) :: empymod END; runtime = 0:00:00.022215 :: 10 kernel call(s) :: empymod END; runtime = 0:00:00.021082 :: 10 kernel call(s) .. GENERATED FROM PYTHON SOURCE LINES 91-93 Plot ~~~~ .. GENERATED FROM PYTHON SOURCE LINES 93-119 .. code-block:: Python fig = plt.figure(figsize=(8, 6), facecolor='w') fig.subplots_adjust(wspace=.25, hspace=.4) fig.suptitle(name+': src-x, rec-x; f = 1 Hz', fontsize=16, y=1) # Plot Amplitude ax1 = plt.subplot(2, 2, 1) plt.semilogy(fx/1000, fEMBG.amp(), label='BG') plt.semilogy(fx/1000, fEM.amp(), label='Anomaly') plt.semilogy(fx/1000, fEMBGbp.amp(), '--', label='BG bipole') plt.semilogy(fx/1000, fEMbp.amp(), '--', label='Anomaly bipole') plt.legend(loc='best') plt.title(r'Amplitude ($V/(A\ $m$^2$))') plt.xlabel('Offset (km)') # Plot Phase ax2 = plt.subplot(2, 2, 2) plt.title(r'Phase ($^\circ$)') plt.plot(fx/1000, fEMBG.pha(deg=True), label='BG') plt.plot(fx/1000, fEM.pha(deg=True), label='Anomaly') plt.plot(fx/1000, fEMBGbp.pha(deg=True), '--', label='BG bipole') plt.plot(fx/1000, fEMbp.pha(deg=True), '--', label='Anomaly bipole') plt.xlabel('Offset (km)') plt.show() .. image-sg:: /gallery/fdomain/images/sphx_glr_dipole_vs_bipole_002.png :alt: Example Model: src-x, rec-x; f = 1 Hz, Amplitude ($V/(A\ $m$^2$)), Phase ($^\circ$) :srcset: /gallery/fdomain/images/sphx_glr_dipole_vs_bipole_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 120-122 .. code-block:: Python empymod.Report() .. raw:: html
Fri Mar 01 20:15:50 2024 UTC
OS Linux CPU(s) 2 Machine x86_64
Architecture 64bit RAM 7.5 GiB Environment Python
File system ext4
Python 3.11.6 (main, Feb 1 2024, 16:47:41) [GCC 11.4.0]
numpy 1.26.4 scipy 1.12.0 numba 0.59.0
empymod 2.3.0 IPython 8.22.1 matplotlib 3.8.3


.. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 16.544 seconds) **Estimated memory usage:** 157 MB .. _sphx_glr_download_gallery_fdomain_dipole_vs_bipole.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: dipole_vs_bipole.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: dipole_vs_bipole.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_