Extract a 1D profile from 2D and plot it#

Section author: Feliks Kiszkurno (Helmholtz Centre for Environmental Research GmbH - UFZ)

For this example we load a 2D meshseries from within the meshplotlib examples. In the meshplotlib.setup we can provide a dictionary to map names to material ids. First, let’s plot the material ids (cell_data). Per default in the setup, this will automatically show the element edges.

0. Setup and imports#

import matplotlib.pyplot as plt
import numpy as np

import ogstools.meshplotlib as mpl
from ogstools import examples
from ogstools.meshlib import sample_polyline
from ogstools.meshplotlib import lineplot, plot_profile
from ogstools.propertylib import Scalar, properties

mpl.setup.reset()
mpl.setup.combined_colorbar = False
plt.rcdefaults()
# mpl.setup.length.output_unit = "km"

1. Single fracture#

Define profile line by providing a list of points in an X, Y, Z coordinates and loading an example data set:

ms_HT = examples.load_meshseries_HT_2D_XDMF()

profile_HT = np.array([[4, 2, 0], [4, 18, 0]])
ms_HT_sp, ms_HT_kp = sample_polyline(
    ms_HT.read(-1),
    ["pressure", "temperature"],
    profile_HT,
)

It has returned a DataFrame containing all information about profile and numpy array with position of the “knot-points”. Let’s investigate the DataFrame first:

ms_HT_sp.head(10)
x y z pressure temperature dist dist_in_segment
0 4.0 2.00 0.0 0.498440 79.850025 0.00 0.00
1 4.0 2.16 0.0 0.498725 79.850031 0.16 0.16
2 4.0 2.32 0.0 0.499150 79.850021 0.32 0.32
3 4.0 2.48 0.0 0.499663 79.849999 0.48 0.48
... ... ... ... ... ... ... ...
6 4.0 2.96 0.0 0.501203 79.849934 0.96 0.96
7 4.0 3.12 0.0 0.501717 79.849913 1.12 1.12
8 4.0 3.28 0.0 0.502230 79.849891 1.28 1.28
9 4.0 3.44 0.0 0.502936 79.849931 1.44 1.44

10 rows × 7 columns



We can see the spatial coordinates of points on the profile (“x”, “y”, “z” - columns), distances from the beginning of the profile (“dist”) and within current segment (“dist_in_segment”). Note, that since we defined our profile on only two points, there is only one segment, hence in this special case columns dist and dist_in_segment are identical. At the end of the DataFrame we can can find two columns with the properties that we are interested in: “temperature” and “pressure”. Each occupies one column, as those are scalar values. Using columns “dist”, “pressure” and “temperature” we can easily plot the data:

fig, ax = plt.subplots(1, 1, figsize=(7, 5))
ax = lineplot(
    x="dist",
    y=["pressure", "temperature"],
    mesh=ms_HT.read(-1),
    profile_points=profile_HT,
    ax=ax,
    twinx=True,
    fontsize=15,
)
fig.tight_layout()
plot sample mesh line

What happens when we are interested in vector property? We can see it in the following example using Darcy velocity:

ms_HT_sp, ms_HT_kp = sample_polyline(
    ms_HT.read(-1),
    "darcy_velocity",
    profile_HT,
)
ms_HT_sp.head(5)
x y z darcy_velocity_0 darcy_velocity_1 dist dist_in_segment
0 4.0 2.00 0.0 1.169737e-93 -2.231183e-94 0.00 0.00
1 4.0 2.16 0.0 1.196810e-93 -2.421097e-94 0.16 0.16
2 4.0 2.32 0.0 1.237164e-93 -2.637041e-94 0.32 0.32
3 4.0 2.48 0.0 1.285968e-93 -2.869550e-94 0.48 0.48
4 4.0 2.64 0.0 1.334773e-93 -3.102060e-94 0.64 0.64


Now we have two columns for the property. Darcy velocity is a vector, therefore “sample_over_polyline” has split it into two columns and appended the property name with increasing integer. Note, that this suffix has no physical meaning and only indicates order. It is up to user to interpret it in a meaningful way. By the OpenGeoSys conventions, “darcy_velocity_0” will be in the x-direction and “darcy_velocity_1” in y-direction.

2. Elder benchmark#

In this example we will provide a Scalar object from the propertylib to define the property of interest. “sample_over_polyline” will automatically convert the data from “data_unit” to “output_unit”:

profile_CT = np.array(
    [
        [47.0, 1.17, 72.0],  # Point A
        [-4.5, 1.17, -59.0],  # Point B
    ]
)

ms_CT = examples.load_meshseries_CT_2D_XDMF()

si = Scalar(
    data_name="Si", data_unit="", output_unit="%", output_name="Saturation"
)
ms_CT_sp, ms_CT_kp = sample_polyline(
    ms_CT.read(11),
    si,
    profile_CT,
)

As before we can see the profile parameters and properties values in a DataFrame:

ms_CT_sp.head(5)
x y z Si dist dist_in_segment
0 47.000 1.17 72.00 79.601252 0.000000 0.000000
1 46.485 1.17 70.69 73.478046 1.407595 1.407595
2 45.970 1.17 69.38 70.034378 2.815191 2.815191
3 45.455 1.17 68.07 67.833706 4.222786 4.222786
4 44.940 1.17 66.76 67.245709 5.630382 5.630382


This time we will prepare more complicated plot showing both mesh data and the profile.

fig, ax = plot_profile(
    ms_CT.read(11),
    si,
    profile_CT,
    resolution=100,
    profile_plane=[0, 2],  # This profile is in XZ plane, not XY!
)
fig, ax = mpl.update_font_sizes(label_axes="none", fig=fig)
fig.tight_layout()
plot sample mesh line

3. THM#

It is also possible to obtain more than one property at the same time using more complex profiles. They can be constructed by providing more than 2 points. With those points:

profile_THM = np.array(
    [
        [-1000.0, -175.0, 6700.0],  # Point A
        [-600.0, -600.0, 6700.0],  # Point B
        [100.0, -300.0, 6700.0],  # Point C
        [910.0, -590.0, 6700.0],  # Point D
    ]
)

profile_THM = np.array(
    [
        [-1000.0, -175.0, 6700.0],  # Point A
        [-600.0, -600.0, 6700.0],  # Point B
        [100.0, -300.0, 6700.0],  # Point C
        [3500, -900.0, 6700.0],  # Point D
    ]
)

the profile will run as follows:

\[\text{AB} \rightarrow \text{BC} \rightarrow \text{CD}\]

Point B will at the same time be the last point in the first segment AB and first one in second segment BC, however in the returned array, it will occur only once. For this example we will use a different dataset:

meshseries_THM = examples.load_meshseries_THM_2D_PVD()
ms_THM_sp, dist_at_knot = sample_polyline(
    meshseries_THM.read(-1),
    [properties.pressure, properties.temperature],
    profile_THM,
    resolution=100,
)

Again, we can investigate the returned DataFrame, but this time we will have a look at its beginning:

ms_THM_sp.head(5)
x y z pressure temperature dist dist_in_segment
0 -1000.000000 -175.000000 6700.0 2.230181 8.832194 0.000000 0.000000
1 -969.230769 -207.692308 6700.0 2.551761 8.828883 44.894683 44.894683
2 -938.461538 -240.384615 6700.0 2.873396 8.825926 89.789366 89.789366
3 -907.692308 -273.076923 6700.0 3.195135 8.825316 134.684048 134.684048
4 -876.923077 -305.769231 6700.0 3.516919 8.821331 179.578731 179.578731


and end:

ms_THM_sp.tail(10)
x y z pressure temperature dist dist_in_segment
92 3075.000000 -825.000000 6700.0 0.0 32.327025 4366.176575 3020.968388
93 3122.222222 -833.333333 6700.0 0.0 35.663869 4414.128454 3068.920267
94 3169.444444 -841.666667 6700.0 0.0 40.358542 4462.080333 3116.872146
95 3216.666667 -850.000000 6700.0 0.0 44.984874 4510.032212 3164.824025
... ... ... ... ... ... ... ...
98 3358.333333 -875.000000 6700.0 0.0 34.045579 4653.887850 3308.679663
99 3405.555556 -883.333333 6700.0 0.0 31.436554 4701.839729 3356.631542
100 3452.777778 -891.666667 6700.0 0.0 28.867132 4749.791608 3404.583421
101 3500.000000 -900.000000 6700.0 0.0 26.706150 4797.743487 3452.535300

10 rows × 7 columns



Note, that unlike in the first example, here the columns “dist” and “dist_in_segment” are not identical, as this time profile consists of multiple segments. Following figure illustrates the difference:

plt.rcdefaults()
fig, ax = plt.subplots(1, 1, figsize=(7, 3))
ax.plot(ms_THM_sp["dist"], label="dist")
ax.plot(ms_THM_sp["dist_in_segment"], label="dist_in_segment")
ax.set_xlabel("Point ID / -")
ax.set_ylabel("Distance / m")
ax.legend()
fig.tight_layout()
plot sample mesh line

Orange line returns to 0 twice. It is because of how the overlap of nodal points between segments is handled. Nodal point always belongs to the segment it starts: point B is included in segment BC but not AB and point C in CD but not in in BC. Following figure shows the profile on the mesh:

plt.rcdefaults()

fig, ax = plot_profile(
    meshseries_THM.read(-1),
    [properties.pressure, properties.temperature],
    profile_THM,
    resolution=100,
)
fig, ax = mpl.update_font_sizes(label_axes="none", fig=fig)
fig.tight_layout()
plot sample mesh line

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