.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/geometries/4_pinchout.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_geometries_4_pinchout.py: Model 4 - Pinchout ================== .. GENERATED FROM PYTHON SOURCE LINES 8-11 Forcing GemPy to create a layer of varying thickness. We start by importing the necessary dependencies: .. GENERATED FROM PYTHON SOURCE LINES 13-14 Importing GemPy .. GENERATED FROM PYTHON SOURCE LINES 14-19 .. code-block:: python3 import gempy as gp import pandas as pd pd.set_option('precision', 2) .. GENERATED FROM PYTHON SOURCE LINES 20-22 Creating the model by importing the input data and displaying it: .. GENERATED FROM PYTHON SOURCE LINES 24-32 .. code-block:: python3 data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/' path_to_data = data_path + "/data/input_data/jan_models/" geo_data = gp.create_data('pinchout', extent=[0, 1000, 0, 1000, 0, 1000], resolution=[50, 50, 50], path_o=path_to_data + "model4_orientations.csv", path_i=path_to_data + "model4_surface_points.csv") .. rst-class:: sphx-glr-script-out Out: .. code-block:: none Active grids: ['regular'] .. GENERATED FROM PYTHON SOURCE LINES 33-35 .. code-block:: python3 geo_data.get_data() .. raw:: html
X Y Z smooth surface G_x G_y G_z
surface_points 0 0 200 300 2.00e-06 rock1 NaN NaN NaN
1 0 800 300 2.00e-06 rock1 NaN NaN NaN
2 500 200 375 2.00e-06 rock1 NaN NaN NaN
3 500 800 375 2.00e-06 rock1 NaN NaN NaN
4 1000 200 450 2.00e-06 rock1 NaN NaN NaN
5 1000 800 450 2.00e-06 rock1 NaN NaN NaN
6 0 200 700 2.00e-06 rock2 NaN NaN NaN
7 0 800 700 2.00e-06 rock2 NaN NaN NaN
8 500 200 625 2.00e-06 rock2 NaN NaN NaN
9 500 800 625 2.00e-06 rock2 NaN NaN NaN
10 1000 200 550 2.00e-06 rock2 NaN NaN NaN
11 1000 800 550 2.00e-06 rock2 NaN NaN NaN
orientations 3 500 500 375 1.00e-02 rock1 -0.15 1.00e-12 0.99
4 500 200 375 1.00e-02 rock1 -0.15 1.00e-12 0.99
5 500 800 375 1.00e-02 rock1 -0.15 1.00e-12 0.99
0 500 500 625 1.00e-02 rock2 0.15 1.00e-12 0.99
1 500 200 625 1.00e-02 rock2 0.15 1.00e-12 0.99
2 500 800 625 1.00e-02 rock2 0.15 1.00e-12 0.99


.. GENERATED FROM PYTHON SOURCE LINES 36-38 Setting and ordering the units and series: .. GENERATED FROM PYTHON SOURCE LINES 40-44 .. code-block:: python3 gp.map_stack_to_surfaces(geo_data, {"Strat_Series": ('rock2', 'rock1'), "Basement_Series": ('basement')}) .. raw:: html
surface series order_surfaces color id
0 rock1 Strat_Series 1 #015482 1
1 rock2 Strat_Series 2 #9f0052 2
2 basement Basement_Series 1 #ffbe00 3


.. GENERATED FROM PYTHON SOURCE LINES 45-47 .. code-block:: python3 gp.plot_2d(geo_data, direction=['y']) .. image:: /examples/geometries/images/sphx_glr_4_pinchout_001.png :alt: Cell Number: mid Direction: y :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 48-50 Calculating the model: .. GENERATED FROM PYTHON SOURCE LINES 52-54 .. code-block:: python3 interp_data = gp.set_interpolator(geo_data, theano_optimizer='fast_compile') .. rst-class:: sphx-glr-script-out Out: .. code-block:: none Setting kriging parameters to their default values. Compiling theano function... Level of Optimization: fast_compile Device: cpu Precision: float64 Number of faults: 0 Compilation Done! Kriging values: values range 1732.05 $C_o$ 71428.57 drift equations [3, 3] .. GENERATED FROM PYTHON SOURCE LINES 55-57 .. code-block:: python3 sol = gp.compute_model(geo_data) .. GENERATED FROM PYTHON SOURCE LINES 58-60 Displaying the result in x and y direction: .. GENERATED FROM PYTHON SOURCE LINES 62-65 .. code-block:: python3 gp.plot_2d(geo_data, cell_number=[25], direction=['x'], show_data=True) .. image:: /examples/geometries/images/sphx_glr_4_pinchout_002.png :alt: Cell Number: 25 Direction: x :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 66-67 sphinx_gallery_thumbnail_number = 3 .. GENERATED FROM PYTHON SOURCE LINES 67-70 .. code-block:: python3 gp.plot_2d(geo_data, cell_number=[25], direction=['y'], show_data=True) .. image:: /examples/geometries/images/sphx_glr_4_pinchout_003.png :alt: Cell Number: 25 Direction: y :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 71-71 .. code-block:: python3 gp.save_model(geo_data) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none True .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 5.397 seconds) .. _sphx_glr_download_examples_geometries_4_pinchout.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 4_pinchout.py <4_pinchout.py>` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: 4_pinchout.ipynb <4_pinchout.ipynb>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_