A 2D GREAT cell benchmark suite simulated using hydro-mechanical variational phase-field process

This page is based on a Jupyter notebook.

import os(click to toggle)
import os
import shutil
import sys
import xml.etree.ElementTree as ET
from pathlib import Path
from subprocess import run

import matplotlib as mpl
import matplotlib.pyplot as plt
import meshio
import numpy as np
import ogstools as ot
from matplotlib import colormaps

mechanics_path = Path(
    "..", "..", "LIE", "Mechanics", "GreatCelljupyterNotebook"
).resolve()
sys.path.insert(0, str(mechanics_path))
# Local modules
from mesh_generator import (  # noqa: E402
    mesh_GreatCell_Borehole_VPF,
    plot_contourf_with_annotations,
)
from ogs_model_runner import SingleOGSModel  # noqa: E402
from Plotter import Plotter  # noqa: E402
def truncated_cmap(name, minval=0.3, maxval=0.9, n=6):(click to toggle)
def truncated_cmap(name, minval=0.3, maxval=0.9, n=6):
    base = colormaps.get_cmap(name)
    return lambda i: base(minval + (maxval - minval) * i / (n - 1))


mpl.rcdefaults()
mpl.rcParams.update(
    {
        "text.usetex": False,
        "font.family": "serif",
        "font.serif": ["DejaVu Serif"],
        "axes.labelsize": 26,
        "axes.titlesize": 24,
        "legend.fontsize": 18,
        "xtick.labelsize": 18,
        "ytick.labelsize": 18,
    }
)
ot.plot.setup.show_region_bounds = False(click to toggle)
ot.plot.setup.show_region_bounds = False

out_dir = Path(os.environ.get("OGS_TESTRUNNER_OUT_DIR", "_out"))
if not out_dir.exists():
    out_dir.mkdir(parents=True)

Great cell

$\texttt{HM}_{3d}$: Fracture Nucleation from Borehole under Poly-Axial Stress

The $\texttt{HM}_{3d}$ benchmark simulates fracture nucleation directly from a borehole in an intact rock sample subjected to poly-axial stress conditions.

Fluid is injected at a rate of:

$$ Q_0 = 2 \times 10^{-7} \times 2\pi r \quad \text{m}^2/\text{s}, \quad \text{with } r = 0.005\,\text{m}. $$

This test provides insight into fluid-driven fracture processes under realistic in situ conditions and is especially useful for validating coupled hydro-mechanical models.

For full details, visit the GREAT Cell benchmark page: www.opengeosys.org/docs/benchmarks/small-deformations/greatcellm/

To run this benchmark, you need to have OGS built with PETSc and PIP support. The following steps outline the process:

  1. Configure & build OGS with PETSc & PIP

    cmake -S ogs-source -B build-folder --preset release-petsc \
      -DOGS_USE_PETSC=ON \
      -DOGS_USE_PIP=ON
  2. Run the benchmark

    cd build-folder/release-petsc
    ctest -R nb-HMPhaseField/GreatCell
  3. Verify output files

    ls build-folder/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCell

Material Properties

The material properties are provided in the following dictionary. The computational model incorporates two distinct elastic materials within its domain: a central circle ($r=0.097$ m) of rock surrounded by a rubber sheath in a 2D configuration.

materials = {(click to toggle)
materials = {
    "Gneiss": {
        "young_sample": 83.9e9,  # Young's modulus (Pa)
        "nu_sample": 0.21,  # Poisson's ratio
        "biot": 0.6,  # Biot coefficient
        "porosity": 0.001,  # Porosity
        "permeability": 1e-19,  # Permeability (m²)
        "density_solid": 2750,  # Solid density (kg/m³)
        "k_n": 200e9,  # Normal stiffness (Pa/m)
        "k_t": 100e9,  # Tangential stiffness (Pa/m)
        "c_f": 4.4e-10,  # Fluid compressibility (Pa⁻¹)
        "k_s": 4.82e10,  # Solid bulk modulus (Pa)
        "S_f": 4.4e-10,  # Specific storage (Pa⁻¹)
        "t_np": 10e6,  # Peak normal traction (Pa)
        "Gc": 59.375,  # Fracture toughness (J/m²)
        "w_init": 1e-6,  # initial fracture width (m)
        "fluid": {
            "density": 1000.0,  # Fluid density (kg/m³)
            "viscosity": 1e-3,  # Fluid viscosity (Pa·s)
            "injectionFlowRate_Inlet": 3.75e-7,  # Injection flow rate (m³/s)
            "p_outlet": 3.45e6,  # Outlet pressure (Pa)
        },
        "rubber_sheath": {
            "young_modulus": 83.9e9,  # Young's modulus (Pa)
            "poisson_ratio": 0.21,  # Poisson's ratio
            "porosity": 0.001,  # Porosity
            "permeability": 1e-19,  # Permeability (m²)
            "density": 2750,  # Density (kg/m³)
            "biot": 0.6,  # Biot coefficient
        },
    },
    # "Greywacke": {
    #     "young_sample": 26.87e9,  # Young's modulus (Pa)
    #     "nu_sample": 0.27,  # Poisson's ratio
    #     "biot": 0.8,  # Biot coefficient
    #     "porosity": 0.005,  # Porosity
    #     "permeability": 2.58e-19,  # Permeability (m²)
    #     "density_solid": 2650,  # Solid density (kg/m³)
    #     "k_n": 100e9,  # Normal stiffness (Pa/m)
    #     "k_t": 50e9,  # Tangential stiffness (Pa/m)
    #     "c_f": 4.4e-10,  # Fluid compressibility (Pa⁻¹)
    #     "k_s": 1.95e10,  # Solid bulk modulus (Pa)
    #     "S_f": 4.4e-10,  # Specific storage (Pa⁻¹)
    #     "t_np": 10e6,  # Peak normal traction (Pa)
    #     "Gc": 35.65,  # Fracture toughness (J/m²)
    #     "w_init": 1e-6,  # initial fracture width (m)
    #     "fluid": {
    #         "density": 1000.0,  # Fluid density (kg/m³)
    #         "viscosity": 1.0e-3,  # Fluid viscosity (Pa·s)
    #         "injectionFlowRate_Inlet": 3.75e-7,  # 1.75e-7,  # Injection flow rate (m³/s)
    #         "p_outlet": 3.45e6,  # Outlet pressure (Pa)
    #     },
    #     "rubber_sheath": {
    #         "young_modulus": 26.87e9,  # Young's modulus (Pa)
    #         "poisson_ratio": 0.27,  # Poisson's ratio
    #         "porosity": 0.005,  # Porosity
    #         "permeability": 2.58e-19,  # Permeability (m²)
    #         "density": 2650,  # Density (kg/m³)
    #         "biot": 0.8,  # Biot coefficient
    #     },
    # },
}

material_names = list(materials.keys())

To run the benchmark with Greywacke, uncomment the “Greywacke” section in the materials dictionary above, also it suggested to use finer mesh size h=0.001 for Greywacke.


Loads

Table: Load Conditions

Marker PEE1 Angle to $\sigma_2$ PEE1 & 1a PEE2 & 2a PEE3 & 3a PEE4 & 4a PEE5 & 5a PEE6 & 6a PEE7 & 7a PEE8 & 8a
A 10.0 6.64 4.46 1.17 1.0 3.82 7.80 9.95
B 45.0° 7.80 9.95 10.0 6.64 4.46 1.17 1.0 3.82
C 90° 1.0 3.82 7.80 9.95 10.0 6.64 4.46 1.17

All loads are in MPa. DSS loads are averages of adjacent PEEs.

Schematic loading conditions

loads = {(click to toggle)
loads = {
    "A": [
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
        1.0e6,
        3.82e6,
        7.80e6,
        9.95e6,
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
        1.0e6,
        3.82e6,
        7.80e6,
        9.95e6,
    ],
    "B": [
        7.80e6,
        9.95e6,
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
        1.0e6,
        3.82e6,
        7.80e6,
        9.95e6,
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
        1.0e6,
        3.82e6,
    ],
    "C": [
        1.0e6,
        3.82e6,
        7.80e6,
        9.95e6,
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
        1.0e6,
        3.82e6,
        7.80e6,
        9.95e6,
        10.0e6,
        6.64e6,
        4.46e6,
        1.17e6,
    ],
}
angles_degrees = [(click to toggle)
angles_degrees = [
    0,
    -22.5,
    -45,
    -67.5,
    -90,
    -112.5,
    -135,
    -157.5,
    -180,
    -202.5,
    -225,
    -247.5,
    -270,
    -292.5,
    -315,
    -337.5,
]
angles_radians = np.deg2rad(angles_degrees)
circle_radius = 6
circle_x = circle_radius * np.cos(angles_radians)
circle_y = circle_radius * np.sin(angles_radians)


fig, axs = plt.subplots(1, 3, figsize=(21, 7), facecolor="none")

for idx, (label, values) in enumerate(loads.items()):
    ax = axs[idx]
    ax.set_aspect("equal")
    ax.axis("off")

    formatted_values = [rf"${v / 1e6:.1f}$" for v in values]
    scaled_values = [v / 2 for v in values]

    circle = plt.Circle(
        (0, 0),
        circle_radius,
        color="black",
        fill=False,
        linestyle="--",
        linewidth=2,
    )
    ax.add_artist(circle)

    top_points_x, top_points_y = [], []

    for i, (x, y, value) in enumerate(
        zip(circle_x, circle_y, scaled_values, strict=False)
    ):
        unit_vector = np.array([x, y]) / circle_radius
        line_end = np.array([x, y]) + unit_vector * value / 1e6

        top_points_x.append(line_end[0])
        top_points_y.append(line_end[1])

        ax.annotate(
            "",
            xytext=line_end,
            xy=(x, y),
            arrowprops={
                "arrowstyle": "-|>",
                "color": "blue",
                "lw": 2,
                "mutation_scale": 15,
                "fill": True,
            },
        )

        angle_offset = 1.2 * unit_vector
        angle_label = f"{-angles_degrees[i]}°"
        ax.text(
            x - angle_offset[0],
            y - angle_offset[1],
            angle_label,
            fontsize=12,
            ha="center",
            va="center",
            color="m",
        )

        value_offset = 0.5 * unit_vector
        ax.text(
            line_end[0] + 3.0 * value_offset[0],
            line_end[1] + 1.8 * value_offset[1],
            formatted_values[i],
            fontsize=18,
            ha="center",
            weight="bold",
        )

    top_points_x.append(top_points_x[0])
    top_points_y.append(top_points_y[0])
    ax.plot(
        top_points_x,
        top_points_y,
        color="green",
        linestyle="-.",
        lw=2,
        marker="o",
        markersize=6,
        markerfacecolor="lightgreen",
        markeredgewidth=1.0,
        markeredgecolor="black",
    )

    ax.set_xlim([-12, 12])
    ax.set_ylim([-12, 12])

    ax.text(
        0,
        0,
        f"Load {label}",
        fontsize=32,
        ha="center",
        va="center",
        family="serif",
    )

plt.tight_layout()
output_path = Path(out_dir, "loads_A_B_C_schematic_with_angles.png")
plt.savefig(output_path, dpi=350, bbox_inches="tight", transparent=True)
plt.show()

png


Boundary Conditions

The boundary conditions applied in the simulation include both Dirichlet and Neumann conditions.

  • Dirichlet conditions (displacement control):

    \[ \begin{cases} u_y(x, 0) = 0, & \quad \text{for } x = \pm 0.09894~\text{m} \quad (\text{left and right points boundaries}), \\ u_x(0, y) = 0, & \quad \text{for } y = \pm 0.09894~\text{m} \quad (\text{top and bottom points boundaries}), \\ u_x = u_y = 0, & \quad \text{on } x^2 + y^2 = r_{\text{borehole}}^2 \end{cases} \]
  • Neumann conditions: Normal stress $\sigma_{rr}$ is applied on PEEs and DSSs. The DSS stress is calculated as:

    $$\sigma_\text{DSS}^i = \frac{\sigma_\text{PEE}^i + \sigma_\text{PEE}^{i+1}}{2}$$

Mesh generation of intact samples

Input

h = 0.0025(click to toggle)
h = 0.0025
borehole_radius = 0.0025
delta = 0.00025
meshname = "GreatCell"
mesh_path = Path(out_dir, "mesh_borehole").resolve()
print(mesh_path)
/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole

Boundary meshes

Gmsh

msh_file = mesh_GreatCell_Borehole_VPF((click to toggle)
msh_file = mesh_GreatCell_Borehole_VPF(
    lc=0.0075,
    h=h,
    lc1=h,
    r0=0.097,
    r1=0.090,
    r2=0.065,
    borehole_radius=borehole_radius,
    delta=delta,
    out_dir=mesh_path,
    meshname=meshname,
    mode="BC",
)
ot.Meshes.from_gmsh(msh_file, dim=[0, 1], reindex=True, log=False).save(
    mesh_path, overwrite=True
)
Info    : Meshing 1D...
Info    : [  0%] Meshing curve 1 (Circle)
Info    : [ 10%] Meshing curve 2 (Circle)
Info    : [ 10%] Meshing curve 3 (Circle)
Info    : [ 10%] Meshing curve 4 (Circle)
Info    : [ 10%] Meshing curve 69 (Circle)
Info    : [ 10%] Meshing curve 70 (Circle)
Info    : [ 10%] Meshing curve 71 (Circle)
Info    : [ 10%] Meshing curve 72 (Circle)
Info    : [ 10%] Meshing curve 73 (Circle)
Info    : [ 20%] Meshing curve 74 (Circle)
Info    : [ 20%] Meshing curve 75 (Circle)
Info    : [ 20%] Meshing curve 76 (Circle)
Info    : [ 20%] Meshing curve 101 (Line)
Info    : [ 20%] Meshing curve 102 (Line)
Info    : [ 20%] Meshing curve 103 (Line)
Info    : [ 20%] Meshing curve 104 (Line)
Info    : [ 20%] Meshing curve 105 (Line)
Info    : [ 30%] Meshing curve 106 (Line)
Info    : [ 30%] Meshing curve 107 (Line)
Info    : [ 30%] Meshing curve 108 (Line)
Info    : [ 30%] Meshing curve 109 (Line)
Info    : [ 30%] Meshing curve 110 (Line)
Info    : [ 30%] Meshing curve 111 (Line)
Info    : [ 30%] Meshing curve 112 (Line)
Info    : [ 30%] Meshing curve 113 (Line)
Info    : [ 30%] Meshing curve 114 (Line)
Info    : [ 40%] Meshing curve 115 (Line)
Info    : [ 40%] Meshing curve 116 (Line)
Info    : [ 40%] Meshing curve 117 (Line)
Info    : [ 40%] Meshing curve 118 (Line)
Info    : [ 40%] Meshing curve 119 (Line)
Info    : [ 40%] Meshing curve 120 (Line)
Info    : [ 40%] Meshing curve 121 (Line)
Info    : [ 40%] Meshing curve 122 (Line)
Info    : [ 50%] Meshing curve 123 (Line)
Info    : [ 50%] Meshing curve 124 (Line)
Info    : [ 50%] Meshing curve 125 (Line)
Info    : [ 50%] Meshing curve 126 (Line)
Info    : [ 50%] Meshing curve 127 (Line)
Info    : [ 50%] Meshing curve 128 (Line)
Info    : [ 50%] Meshing curve 129 (Line)
Info    : [ 50%] Meshing curve 130 (Line)
Info    : [ 60%] Meshing curve 131 (Line)
Info    : [ 60%] Meshing curve 132 (Line)
Info    : [ 60%] Meshing curve 133 (Line)
Info    : [ 60%] Meshing curve 134 (Line)
Info    : [ 60%] Meshing curve 135 (Line)
Info    : [ 60%] Meshing curve 136 (Line)
Info    : [ 60%] Meshing curve 137 (Line)
Info    : [ 60%] Meshing curve 138 (Line)
Info    : [ 60%] Meshing curve 139 (Line)
Info    : [ 70%] Meshing curve 140 (Line)
Info    : [ 70%] Meshing curve 141 (Line)
Info    : [ 70%] Meshing curve 142 (Line)
Info    : [ 70%] Meshing curve 143 (Line)
Info    : [ 70%] Meshing curve 144 (Line)
Info    : [ 70%] Meshing curve 145 (Line)
Info    : [ 70%] Meshing curve 146 (Line)
Info    : [ 70%] Meshing curve 147 (Line)
Info    : [ 80%] Meshing curve 148 (Line)
Info    : [ 80%] Meshing curve 149 (Line)
Info    : [ 80%] Meshing curve 150 (Line)
Info    : [ 80%] Meshing curve 151 (Line)
Info    : [ 80%] Meshing curve 152 (Line)
Info    : [ 80%] Meshing curve 153 (Line)
Info    : [ 80%] Meshing curve 154 (Line)
Info    : [ 80%] Meshing curve 155 (Line)
Info    : [ 80%] Meshing curve 156 (Line)
Info    : [ 90%] Meshing curve 157 (Line)
Info    : [ 90%] Meshing curve 158 (Line)
Info    : [ 90%] Meshing curve 159 (Line)
Info    : [ 90%] Meshing curve 160 (Line)
Info    : [ 90%] Meshing curve 161 (Line)
Info    : [ 90%] Meshing curve 162 (Line)
Info    : [ 90%] Meshing curve 163 (Line)
Info    : [ 90%] Meshing curve 164 (Line)
Info    : [100%] Meshing curve 690 (Circle)
Info    : [100%] Meshing curve 700 (Circle)
Info    : [100%] Meshing curve 710 (Circle)
Info    : [100%] Meshing curve 720 (Circle)
Info    : [100%] Meshing curve 6900 (Circle)
Info    : [100%] Meshing curve 7000 (Circle)
Info    : [100%] Meshing curve 7100 (Circle)
Info    : [100%] Meshing curve 7200 (Circle)
Info    : Done meshing 1D (Wall 0.0033072s, CPU 0.004886s)
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.287814s, CPU 0.287233s)
Info    : 4199 nodes 8813 elements
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.2901s, CPU 0.291036s)
Info    : 4199 nodes 8813 elements
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.285658s, CPU 0.286442s)
Info    : 4199 nodes 8813 elements
Info    : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/GreatCell.msh'...
Info    : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/GreatCell.msh'
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
[0] info: Reordering nodes... 
[0] info: Method: Reversing order of nodes unless it is considered correct by the OGS6 standard, i.e. such that det(J) > 0, where J is the Jacobian of the global-to-local coordinate transformation.
[0] info: Corrected 0 elements.
[0] info: VTU file written.
[PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/domain.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_right.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_top.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_left.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_bottom.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE1.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE2.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE3.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE4.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE5.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE6.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE7.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE8.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE1a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE2a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE3a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE4a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE5a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE6a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE7a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE8a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS1.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS2.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS3.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS4.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS5.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS6.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS7.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS8.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS1a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS2a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS3a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS4a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS5a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS6a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS7a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS8a.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/borehole_boundary.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/meta.yaml')]

Computational domain mesh

Gmsh

msh_file = mesh_GreatCell_Borehole_VPF((click to toggle)
msh_file = mesh_GreatCell_Borehole_VPF(
    lc=0.0075,
    h=h,
    lc1=h,
    r0=0.097,
    r1=0.090,
    r2=0.065,
    borehole_radius=borehole_radius,
    delta=delta,
    out_dir=mesh_path,
    meshname=meshname,
    mode="domain",
)
meshes_borehole = ot.Meshes.from_gmsh(msh_file, dim=[1, 2], reindex=True, log=False)
meshes_borehole.save(mesh_path, overwrite=True)
Info    : Meshing 1D...
Info    : [  0%] Meshing curve 1 (Circle)
Info    : [ 10%] Meshing curve 2 (Circle)
Info    : [ 10%] Meshing curve 3 (Circle)
Info    : [ 10%] Meshing curve 4 (Circle)
Info    : [ 10%] Meshing curve 69 (Circle)
Info    : [ 10%] Meshing curve 70 (Circle)
Info    : [ 10%] Meshing curve 71 (Circle)
Info    : [ 10%] Meshing curve 72 (Circle)
Info    : [ 10%] Meshing curve 73 (Circle)
Info    : [ 20%] Meshing curve 74 (Circle)
Info    : [ 20%] Meshing curve 75 (Circle)
Info    : [ 20%] Meshing curve 76 (Circle)
Info    : [ 20%] Meshing curve 101 (Line)
Info    : [ 20%] Meshing curve 102 (Line)
Info    : [ 20%] Meshing curve 103 (Line)
Info    : [ 20%] Meshing curve 104 (Line)
Info    : [ 20%] Meshing curve 105 (Line)
Info    : [ 30%] Meshing curve 106 (Line)
Info    : [ 30%] Meshing curve 107 (Line)
Info    : [ 30%] Meshing curve 108 (Line)
Info    : [ 30%] Meshing curve 109 (Line)
Info    : [ 30%] Meshing curve 110 (Line)
Info    : [ 30%] Meshing curve 111 (Line)
Info    : [ 30%] Meshing curve 112 (Line)
Info    : [ 30%] Meshing curve 113 (Line)
Info    : [ 30%] Meshing curve 114 (Line)
Info    : [ 40%] Meshing curve 115 (Line)
Info    : [ 40%] Meshing curve 116 (Line)
Info    : [ 40%] Meshing curve 117 (Line)
Info    : [ 40%] Meshing curve 118 (Line)
Info    : [ 40%] Meshing curve 119 (Line)
Info    : [ 40%] Meshing curve 120 (Line)
Info    : [ 40%] Meshing curve 121 (Line)
Info    : [ 40%] Meshing curve 122 (Line)
Info    : [ 50%] Meshing curve 123 (Line)
Info    : [ 50%] Meshing curve 124 (Line)
Info    : [ 50%] Meshing curve 125 (Line)
Info    : [ 50%] Meshing curve 126 (Line)
Info    : [ 50%] Meshing curve 127 (Line)
Info    : [ 50%] Meshing curve 128 (Line)
Info    : [ 50%] Meshing curve 129 (Line)
Info    : [ 50%] Meshing curve 130 (Line)
Info    : [ 60%] Meshing curve 131 (Line)
Info    : [ 60%] Meshing curve 132 (Line)
Info    : [ 60%] Meshing curve 133 (Line)
Info    : [ 60%] Meshing curve 134 (Line)
Info    : [ 60%] Meshing curve 135 (Line)
Info    : [ 60%] Meshing curve 136 (Line)
Info    : [ 60%] Meshing curve 137 (Line)
Info    : [ 60%] Meshing curve 138 (Line)
Info    : [ 60%] Meshing curve 139 (Line)
Info    : [ 70%] Meshing curve 140 (Line)
Info    : [ 70%] Meshing curve 141 (Line)
Info    : [ 70%] Meshing curve 142 (Line)
Info    : [ 70%] Meshing curve 143 (Line)
Info    : [ 70%] Meshing curve 144 (Line)
Info    : [ 70%] Meshing curve 145 (Line)
Info    : [ 70%] Meshing curve 146 (Line)
Info    : [ 70%] Meshing curve 147 (Line)
Info    : [ 80%] Meshing curve 148 (Line)
Info    : [ 80%] Meshing curve 149 (Line)
Info    : [ 80%] Meshing curve 150 (Line)
Info    : [ 80%] Meshing curve 151 (Line)
Info    : [ 80%] Meshing curve 152 (Line)
Info    : [ 80%] Meshing curve 153 (Line)
Info    : [ 80%] Meshing curve 154 (Line)
Info    : [ 80%] Meshing curve 155 (Line)
Info    : [ 80%] Meshing curve 156 (Line)
Info    : [ 90%] Meshing curve 157 (Line)
Info    : [ 90%] Meshing curve 158 (Line)
Info    : [ 90%] Meshing curve 159 (Line)
Info    : [ 90%] Meshing curve 160 (Line)
Info    : [ 90%] Meshing curve 161 (Line)
Info    : [ 90%] Meshing curve 162 (Line)
Info    : [ 90%] Meshing curve 163 (Line)
Info    : [ 90%] Meshing curve 164 (Line)
Info    : [100%] Meshing curve 690 (Circle)
Info    : [100%] Meshing curve 700 (Circle)
Info    : [100%] Meshing curve 710 (Circle)
Info    : [100%] Meshing curve 720 (Circle)
Info    : [100%] Meshing curve 6900 (Circle)
Info    : [100%] Meshing curve 7000 (Circle)
Info    : [100%] Meshing curve 7100 (Circle)
Info    : [100%] Meshing curve 7200 (Circle)
Info    : Done meshing 1D (Wall 0.00335277s, CPU 0.004075s)
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.284452s, CPU 0.284567s)
Info    : 4199 nodes 8813 elements
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.28688s, CPU 0.287417s)
Info    : 4199 nodes 8813 elements
Info    : Meshing 2D...
Info    : [  0%] Meshing surface 1 (Plane, Delaunay)
Info    : [ 30%] Meshing surface 2 (Plane, Delaunay)
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
Info    : [ 50%] Meshing surface 3 (Plane, Delaunay)
Info    : [ 70%] Meshing surface 4 (Plane, Delaunay)
Info    : [ 90%] Meshing surface 5 (Plane, Delaunay)
Info    : Done meshing 2D (Wall 0.284993s, CPU 0.28545s)
Info    : 4199 nodes 8813 elements
Info    : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/GreatCell.msh'...
Info    : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/GreatCell.msh'
Warning : Could not orient normal of surface 1
Warning : ------------------------------
Warning : Mesh generation error summary
Warning :     1 warning
Warning :     0 errors
Warning : Check the full log for details
Warning : ------------------------------
[0] info: Reordering nodes... 
[0] info: Method: Reversing order of nodes unless it is considered correct by the OGS6 standard, i.e. such that det(J) > 0, where J is the Jacobian of the global-to-local coordinate transformation.
[0] info: Corrected 0 elements.
[0] info: VTU file written.
[PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/domain.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/Weakzone_sample.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/Central_sample.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/OuterPart_sample.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/Rubber_sheath.vtu'),
 PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/meta.yaml')]
plot_contourf_with_annotations(meshes_borehole)

png

mesh_dir = Path(mesh_path).resolve()(click to toggle)
mesh_dir = Path(mesh_path).resolve()

run(
    [
        "NodeReordering",
        "-i",
        str(mesh_dir.joinpath("domain.vtu")),
        "-o",
        str(mesh_dir.joinpath("domain.vtu")),
    ],
    cwd=mesh_dir,
    check=True,
)

physical_groups = [
    "DSS1.vtu",
    "DSS1a.vtu",
    "DSS2.vtu",
    "DSS2a.vtu",
    "DSS3.vtu",
    "DSS3a.vtu",
    "DSS4.vtu",
    "DSS4a.vtu",
    "DSS5.vtu",
    "DSS5a.vtu",
    "DSS6.vtu",
    "DSS6a.vtu",
    "DSS7.vtu",
    "DSS7a.vtu",
    "DSS8.vtu",
    "DSS8a.vtu",
    "PEE1.vtu",
    "PEE1a.vtu",
    "PEE2.vtu",
    "PEE2a.vtu",
    "PEE3.vtu",
    "PEE3a.vtu",
    "PEE4.vtu",
    "PEE4a.vtu",
    "PEE5.vtu",
    "PEE5a.vtu",
    "PEE6.vtu",
    "PEE6a.vtu",
    "PEE7.vtu",
    "PEE7a.vtu",
    "PEE8.vtu",
    "PEE8a.vtu",
    "p_bottom.vtu",
    "p_left.vtu",
    "p_right.vtu",
    "p_top.vtu",
    "borehole_boundary.vtu",
]

group_paths = [str(mesh_dir.joinpath(name)) for name in physical_groups]

run(
    [
        "identifySubdomains",
        "-f",
        "-m",
        str(mesh_dir.joinpath("domain.vtu")),
        "--",
        *group_paths,
    ],
    cwd=mesh_dir,
    check=True,
)
[0] info: Reordering nodes... 
[0] info: Method: Reversing order of nodes unless it is considered correct by the OGS6 standard, i.e. such that det(J) > 0, where J is the Jacobian of the global-to-local coordinate transformation.
[0] info: Corrected 0 elements.
[0] info: VTU file written.
[0] info: Mesh reading time: 0.0217933 s
[0] info: MeshNodeSearcher construction time: 0.000261085 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.1217e-05 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS1' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000354988 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS1' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.82e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS1a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000396601 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS1a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.01e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS2' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000253784 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS2' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 7.51e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS2a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000252773 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS2a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.91e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS3' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000254445 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS3' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.31e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS3a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.00025078 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS3a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.72e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS4' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000248486 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS4' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.31e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS4a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247214 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS4a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.91e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS5' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000255677 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS5' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.1e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS5a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000250279 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS5a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.31e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS6' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000249428 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS6' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.51e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS6a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247885 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS6a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 7.21e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS7' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000255156 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS7' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.31e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS7a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247775 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS7a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 6.31e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS8' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000249668 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS8' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 7.11e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS8a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000249037 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'DSS8a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.051e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE1' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000251321 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE1' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.172e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE1a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000246543 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE1a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.062e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE2' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000249187 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE2' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.72e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE2a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000253604 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE2a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.31e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE3' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247725 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE3' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.21e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE3a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000248937 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE3a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.72e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE4' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000248666 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE4' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.82e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE4a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000255327 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE4a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.81e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE5' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000252533 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE5' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.131e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE5a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247004 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE5a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.122e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE6' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000249227 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE6' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.81e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE6a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000259844 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE6a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.232e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE7' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247545 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE7' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.51e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE7a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000251991 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE7a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.042e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE8' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000247054 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE8' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 9.31e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE8a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000255026 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'PEE8a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 5.81e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'p_bottom' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000246914 s
[0] warning: There is already a 'number_bulk_elements' property present in the subdomain mesh 'p_bottom' and it is not equal to the newly computed values.
[0] info: Overwriting 'number_bulk_elements' property.
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'p_bottom' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 5.61e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'p_left' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000246163 s
[0] warning: There is already a 'number_bulk_elements' property present in the subdomain mesh 'p_left' and it is not equal to the newly computed values.
[0] info: Overwriting 'number_bulk_elements' property.
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'p_left' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 4.61e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'p_right' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.00025051 s
[0] warning: There is already a 'number_bulk_elements' property present in the subdomain mesh 'p_right' and it is not equal to the newly computed values.
[0] info: Overwriting 'number_bulk_elements' property.
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'p_right' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 4.5e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'p_top' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.00025046 s
[0] warning: There is already a 'number_bulk_elements' property present in the subdomain mesh 'p_top' and it is not equal to the newly computed values.
[0] info: Overwriting 'number_bulk_elements' property.
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'p_top' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.382e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'borehole_boundary' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.00025123 s
[0] warning: There is already a 'bulk_element_ids' property present in the subdomain mesh 'borehole_boundary' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_element_ids' property.
[0] info: identifySubdomains time: 0.010021 s
[0] info: writing time: 0.0301076 s
[0] info: Entire run time: -2.01404e+07 s
CompletedProcess(args=['identifySubdomains', '-f', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/domain.vtu', '--', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/DSS8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/PEE8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_bottom.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_left.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_right.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/p_top.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole/borehole_boundary.vtu'], returncode=0)

Since the mesh may differ slightly depending on the operating system (macOS or Linux), we use the following pre-existing mesh path for ctest.

mesh_path_pre_existing = Path("mesh_borehole_pre_existing").resolve()(click to toggle)
mesh_path_pre_existing = Path("mesh_borehole_pre_existing").resolve()


# Compare generated and pre-existing meshes
def _mesh_stats(path):
    m = meshio.read(path)
    return m.points.shape[0], sum(len(b.data) for b in m.cells)


meshes = {
    "mesh_path": _mesh_stats(mesh_path.joinpath("domain.vtu")),
    "mesh_path_pre_existing": _mesh_stats(
        mesh_path_pre_existing.joinpath("domain.vtu")
    ),
}

for name, (n_points, n_cells) in meshes.items():
    print(name, "Nodes:", n_points, "Elements:", n_cells)

d_nodes = meshes["mesh_path_pre_existing"][0] - meshes["mesh_path"][0]
d_cells = meshes["mesh_path_pre_existing"][1] - meshes["mesh_path"][1]
print("Δ Nodes:", d_nodes, " Δ Elements:", d_cells)

mesh_path_pre_existing_copy = (
    Path(out_dir).joinpath("mesh_borehole_pre_existing").resolve()
)

if mesh_path_pre_existing_copy.exists():
    shutil.rmtree(mesh_path_pre_existing_copy)

shutil.copytree(mesh_path_pre_existing, mesh_path_pre_existing_copy)
mesh_path Nodes: 4198 Elements: 8292
mesh_path_pre_existing Nodes: 4201 Elements: 8298
Δ Nodes: 3  Δ Elements: 6
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing')

Intact rock sample with fluid injection ($\texttt{HM}_1$)

This benchmark, which does not consider any fracture, is designed to verify the basic computational setting for hydro-mechanical simulations. In addition to the mechanical loads, a zero constant pore pressure is prescribed at the outer boundary. At the center of sample, fluid is injected at a rate of $Q_0^{\text{v}} = 2.085 \times 10^{-9}$ m$^3$/s

The hydro-mechanical simulations follows a two-stage process: a 3000 s equilibrium phase under mechanical loading to stabilize initial conditions, followed by a 500~s fluid injection phase to model fluid flow. This loading condition is applied to both Greywacke and Gneiss samples

Run the simulation

Inputs

# Times for load curves(click to toggle)
# Times for load curves
times = "0.0  500. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 3
model_type = "HM3d"
output_prefix = "HM3d_VPF"
# Load
PEE_load_values = {
    "A": [10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6, 7.80e6, 9.95e6],
    "B": [7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6],
    "C": [1.0e6, 3.82e6, 7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6],
}

prj_file = Path("HM3d_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))

Run OGS

# Create SingleOGSModel(click to toggle)
# Create SingleOGSModel
sing_ogs_model = SingleOGSModel(
    model=prj,
    out_dir=out_dir,
    mesh_path=mesh_path_pre_existing_copy,
    output_prefix=output_prefix,
    method="VPF",
    n_fracture_p_ncs=n_fracture_p_ncs,
    model_type=model_type,
    materials=materials,
    n_mpi=4,
)

# Run simulations
vtu_files_dict_HM = sing_ogs_model.run_simulations_with_fracture(
    times=times,
    base_project_file=prj_file,
    mesh_path=mesh_path_pre_existing_copy,
    load_cases=PEE_load_values,
    material_names=material_names,
    materials=materials,
    n_fracture_p_ncs=n_fracture_p_ncs,
    model_type=model_type,
    output_prefix=output_prefix,
    out_dir=out_dir,
    method="VPF",
    fracture_model_type="VolumetricDeviatoric",
    mesh_size=h,
    delta=delta,
    borehole_r=borehole_radius,
    n_mpi=4,
)
[DEBUG] Current working directory: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell
[DEBUG] output project file: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF.prj
Modifying mesh for VPF method at /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing with crack type: full and h1: 0.0025
[0] info: Mesh 'domain' read: 4201 nodes, 8298 elements.
[0] info: Property global_node_ids is added to mesh domain
[0] info: Property global_element_ids is added to mesh domain
[0] info: Write the mesh into METIS input file.
[0] info: Total runtime: 0.0107233 s.
[0] info: Total CPU time: 0.010694 s.
[0] info: Mesh 'domain' read: 4201 nodes, 8298 elements.
[0] info: Property global_node_ids is added to mesh domain
[0] info: Property global_element_ids is added to mesh domain
[0] info: METIS is running ...
[0] info: Path to mpmetis is: 
	
[0] info: Running: mpmetis -gtype=nodal "/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/domain.mesh" 4
******************************************************************************
METIS 5.2.1 Copyright 1998-22, Regents of the University of Minnesota
 (HEAD: unknown, Built on: Mar 30 2026, 09:49:53)
 size of idx_t: 64bits, real_t: 32bits, idx_t *: 64bits

Mesh Information ------------------------------------------------------------
 Name: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/domain.mesh, #Elements: 8298, #Nodes: 4201, #Parts: 4

Options ---------------------------------------------------------------------
 ptype=kway, objtype=cut, ctype=shem, rtype=greedy, iptype=metisrb
 dbglvl=0, ufactor=1.030, minconn=NO, contig=NO, nooutput=NO
 seed=-1, niter=10, ncuts=1
 gtype=nodal, ncommon=1, niter=10, ncuts=1

Direct k-way Partitioning ---------------------------------------------------
 - Edgecut: 336.


Timing Information ----------------------------------------------------------
  I/O:          		   0.001 sec
  Partitioning: 		   0.003 sec   (METIS time)
  Reporting:    		  -0.000 sec

Memory Information ----------------------------------------------------------
  Max memory used:		   1.218 MB
  rusage.ru_maxrss:		 111.066 MB
  proc/self/stat/VmPeak:	  27.766 MB
******************************************************************************
[0] info: Partitioning the mesh in the node wise way ...
[0] info: partitionMesh(): Partition IDs per element computed in 0.000384392 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.5108e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 0.000213163 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9.3571e-05 s
[0] info: partitionMesh(): distribute elements into partitions took 0.000221185 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.9991e-05 s
[0] info: partitionMesh(): markDuplicateGhostCells took 4.937e-06 s
[0] info: Partitioning other meshes according to the main mesh partitions.
[0] info: Mesh 'DSS1' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS1.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS1
[0] info: Property global_element_ids is added to mesh DSS1
[0] info: partitionMesh(): Partition IDs per element computed in 2.71e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.81e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.4e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.41e-07 s
[0] info: Mesh 'DSS1a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS1a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS1a
[0] info: Property global_element_ids is added to mesh DSS1a
[0] info: partitionMesh(): Partition IDs per element computed in 2.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.01e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.5e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.4e-07 s
[0] info: Mesh 'DSS2' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS2.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS2
[0] info: Property global_element_ids is added to mesh DSS2
[0] info: partitionMesh(): Partition IDs per element computed in 2.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.21e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.4e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'DSS2a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS2a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS2a
[0] info: Property global_element_ids is added to mesh DSS2a
[0] info: partitionMesh(): Partition IDs per element computed in 2.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.71e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.4e-07 s
[0] info: Mesh 'DSS3' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS3.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS3
[0] info: Property global_element_ids is added to mesh DSS3
[0] info: partitionMesh(): Partition IDs per element computed in 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.01e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.5e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.4e-07 s
[0] info: Mesh 'DSS3a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS3a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS3a
[0] info: Property global_element_ids is added to mesh DSS3a
[0] info: partitionMesh(): Partition IDs per element computed in 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.81e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.3e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.2e-07 s
[0] info: Mesh 'DSS4' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS4.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS4
[0] info: Property global_element_ids is added to mesh DSS4
[0] info: partitionMesh(): Partition IDs per element computed in 2.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.91e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.41e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.6e-07 s
[0] info: Mesh 'DSS4a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS4a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS4a
[0] info: Property global_element_ids is added to mesh DSS4a
[0] info: partitionMesh(): Partition IDs per element computed in 2.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.032e-06 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.6e-07 s
[0] info: Mesh 'DSS5' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS5.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS5
[0] info: Property global_element_ids is added to mesh DSS5
[0] info: partitionMesh(): Partition IDs per element computed in 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.01e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.71e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.61e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.4e-07 s
[0] info: Mesh 'DSS5a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS5a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS5a
[0] info: Property global_element_ids is added to mesh DSS5a
[0] info: partitionMesh(): Partition IDs per element computed in 3.71e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.41e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.91e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.21e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.11e-07 s
[0] info: Mesh 'DSS6' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS6.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS6
[0] info: Property global_element_ids is added to mesh DSS6
[0] info: partitionMesh(): Partition IDs per element computed in 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.71e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.3e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.4e-07 s
[0] info: Mesh 'DSS6a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS6a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS6a
[0] info: Property global_element_ids is added to mesh DSS6a
[0] info: partitionMesh(): Partition IDs per element computed in 2.41e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.31e-07 s
[0] info: Mesh 'DSS7' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS7.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS7
[0] info: Property global_element_ids is added to mesh DSS7
[0] info: partitionMesh(): Partition IDs per element computed in 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.41e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.3e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.31e-07 s
[0] info: Mesh 'DSS7a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS7a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS7a
[0] info: Property global_element_ids is added to mesh DSS7a
[0] info: partitionMesh(): Partition IDs per element computed in 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'DSS8' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS8.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS8
[0] info: Property global_element_ids is added to mesh DSS8
[0] info: partitionMesh(): Partition IDs per element computed in 2.7e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'DSS8a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/DSS8a.vtu' read: 3 nodes, 2 elements.
[0] info: Property global_node_ids is added to mesh DSS8a
[0] info: Property global_element_ids is added to mesh DSS8a
[0] info: partitionMesh(): Partition IDs per element computed in 2.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.71e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.11e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'PEE1' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE1.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE1
[0] info: Property global_element_ids is added to mesh PEE1
[0] info: partitionMesh(): Partition IDs per element computed in 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.41e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.6e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.21e-07 s
[0] info: Mesh 'PEE1a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE1a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE1a
[0] info: Property global_element_ids is added to mesh PEE1a
[0] info: partitionMesh(): Partition IDs per element computed in 3.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.41e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.41e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.4e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.3e-07 s
[0] info: Mesh 'PEE2' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE2.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE2
[0] info: Property global_element_ids is added to mesh PEE2
[0] info: partitionMesh(): Partition IDs per element computed in 4.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.6e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 6.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.1e-07 s
[0] info: Mesh 'PEE2a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE2a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE2a
[0] info: Property global_element_ids is added to mesh PEE2a
[0] info: partitionMesh(): Partition IDs per element computed in 3.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.71e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.7e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.21e-07 s
[0] info: Mesh 'PEE3' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE3.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE3
[0] info: Property global_element_ids is added to mesh PEE3
[0] info: partitionMesh(): Partition IDs per element computed in 3.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.5e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.5e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.022e-06 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.6e-07 s
[0] info: Mesh 'PEE3a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE3a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE3a
[0] info: Property global_element_ids is added to mesh PEE3a
[0] info: partitionMesh(): Partition IDs per element computed in 3.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.81e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.6e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'PEE4' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE4.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE4
[0] info: Property global_element_ids is added to mesh PEE4
[0] info: partitionMesh(): Partition IDs per element computed in 3.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.61e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.52e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.5e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.61e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'PEE4a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE4a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE4a
[0] info: Property global_element_ids is added to mesh PEE4a
[0] info: partitionMesh(): Partition IDs per element computed in 3.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.01e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.6e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.2e-07 s
[0] info: Mesh 'PEE5' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE5.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE5
[0] info: Property global_element_ids is added to mesh PEE5
[0] info: partitionMesh(): Partition IDs per element computed in 3.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.7e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.5e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.51e-07 s
[0] info: Mesh 'PEE5a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE5a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE5a
[0] info: Property global_element_ids is added to mesh PEE5a
[0] info: partitionMesh(): Partition IDs per element computed in 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.4e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.3e-07 s
[0] info: Mesh 'PEE6' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE6.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE6
[0] info: Property global_element_ids is added to mesh PEE6
[0] info: partitionMesh(): Partition IDs per element computed in 1.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.5e-07 s
[0] info: Mesh 'PEE6a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE6a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE6a
[0] info: Property global_element_ids is added to mesh PEE6a
[0] info: partitionMesh(): Partition IDs per element computed in 1.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.31e-07 s
[0] info: Mesh 'PEE7' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE7.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE7
[0] info: Property global_element_ids is added to mesh PEE7
[0] info: partitionMesh(): Partition IDs per element computed in 1.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.3e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.3e-07 s
[0] info: Mesh 'PEE7a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE7a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE7a
[0] info: Property global_element_ids is added to mesh PEE7a
[0] info: partitionMesh(): Partition IDs per element computed in 1.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.2e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.41e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.3e-07 s
[0] info: Mesh 'PEE8' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE8.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE8
[0] info: Property global_element_ids is added to mesh PEE8
[0] info: partitionMesh(): Partition IDs per element computed in 1.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.01e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 3.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 6.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-07 s
[0] info: Mesh 'PEE8a' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/PEE8a.vtu' read: 5 nodes, 4 elements.
[0] info: Property global_node_ids is added to mesh PEE8a
[0] info: Property global_element_ids is added to mesh PEE8a
[0] info: partitionMesh(): Partition IDs per element computed in 2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.1e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 8e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 3.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.61e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.3e-07 s
[0] info: Mesh 'p_bottom' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/p_bottom.vtu' read: 1 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh p_bottom
[0] info: Property global_element_ids is added to mesh p_bottom
[0] info: partitionMesh(): Partition IDs per element computed in 1.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.8e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 6.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.5e-07 s
[0] info: Mesh 'p_left' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/p_left.vtu' read: 1 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh p_left
[0] info: Property global_element_ids is added to mesh p_left
[0] info: partitionMesh(): Partition IDs per element computed in 1.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.7e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 5e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.4e-07 s
[0] info: Mesh 'p_right' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/p_right.vtu' read: 1 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh p_right
[0] info: Property global_element_ids is added to mesh p_right
[0] info: partitionMesh(): Partition IDs per element computed in 1.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.81e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 4e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.5e-07 s
[0] info: Mesh 'p_top' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/p_top.vtu' read: 1 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh p_top
[0] info: Property global_element_ids is added to mesh p_top
[0] info: partitionMesh(): Partition IDs per element computed in 1.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.41e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 6e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.3e-07 s
[0] info: Mesh 'borehole_boundary' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing/borehole_boundary.vtu' read: 8 nodes, 8 elements.
[0] info: Property global_node_ids is added to mesh borehole_boundary
[0] info: Property global_element_ids is added to mesh borehole_boundary
[0] info: partitionMesh(): Partition IDs per element computed in 2.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.81e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.41e-07 s
[0] info: Writing the partitions data into binary files took 0.00133724 s
[0] info: Total runtime: 0.121783 s.
[0] info: Total CPU time: 0.069695 s.
[DEBUG] Current working directory: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell
[DEBUG] output project file: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_A.prj
============================================================
Running simulation for load case: A with method: VPF, tension_cutoff: False
============================================================

------------------------------------------------------------
* Running the simulation for sample Gneiss:
------------------------------------------------------------

DEBUG: Setting ls to 0.005 based on mesh size 0.0025
ls 0.005
Material properties for 'Gneiss' (VPF) applied successfully.
 mpirun --bind-to none -n 4 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '4', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_A.prj']
[DEBUG] Current working directory: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell
[DEBUG] output project file: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_B.prj
============================================================
Running simulation for load case: B with method: VPF, tension_cutoff: False
============================================================

------------------------------------------------------------
* Running the simulation for sample Gneiss:
------------------------------------------------------------

DEBUG: Setting ls to 0.005 based on mesh size 0.0025
ls 0.005
Material properties for 'Gneiss' (VPF) applied successfully.
 mpirun --bind-to none -n 4 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '4', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_B.prj']
[DEBUG] Current working directory: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell
[DEBUG] output project file: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_C.prj
============================================================
Running simulation for load case: C with method: VPF, tension_cutoff: False
============================================================

------------------------------------------------------------
* Running the simulation for sample Gneiss:
------------------------------------------------------------

DEBUG: Setting ls to 0.005 based on mesh size 0.0025
ls 0.005
Material properties for 'Gneiss' (VPF) applied successfully.
 mpirun --bind-to none -n 4 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '4', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/mesh_borehole_pre_existing', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF_propagating/HM3d_VPF_C.prj']

Post-processing

Profiles

(click to toggle)

custom_cb = {
    "u": {"vmin": 0, "vmax": 1e-2},
    "stress": {"vmin": -20, "vmax": 10},
    "strain": {"vmin": -0.025, "vmax": 0.05},
    "pressure": {"vmin": 0.1, "vmax": 8},
}
plotter = Plotter(
    output_dir=out_dir,
    colorbar_opts=custom_cb,
    save_extracted_data=True,
)

plotter.plot_field_variables(vtu_files_dict_HM)
Load: A, File 0, Benchmark: HM3d, Material: Gneiss
[0] info: Reading meshes took 0.015177745000000131 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002300689999998884 s
[0] info: Collection of 4542 nodes and computing offsets took 4.286000000019996e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018968020000000863 s
[0] info: Reset nodes in regular elements took 0.007418615000000184 s
[0] info: creation of merged mesh took 0.0006690430000000358 s
[0] info: merge properties into merged mesh took 0.00042881900000013573 s
[0] info: writing mesh took 0.011694160000000009 s

png

Load: B, File 0, Benchmark: HM3d, Material: Gneiss
[0] info: Reading meshes took 0.01882870399999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021339299999989514 s
[0] info: Collection of 4542 nodes and computing offsets took 4.587000000055852e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001874268999999984 s
[0] info: Reset nodes in regular elements took 0.010499921000000079 s
[0] info: creation of merged mesh took 0.0010666450000000882 s
[0] info: merge properties into merged mesh took 0.0006394079999998414 s
[0] info: writing mesh took 0.012124320999999938 s

png

Load: C, File 0, Benchmark: HM3d, Material: Gneiss
[0] info: Reading meshes took 0.019863651000000093 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002060420000000729 s
[0] info: Collection of 4542 nodes and computing offsets took 4.5570000000161315e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018732969999999405 s
[0] info: Reset nodes in regular elements took 0.010492398999999875 s
[0] info: creation of merged mesh took 0.00107517800000001 s
[0] info: merge properties into merged mesh took 0.0006349720000000669 s
[0] info: writing mesh took 0.013234141000000088 s

png

Pressure over time at observation points

(click to toggle)

obs_points = {"pt0": np.array([[0.0, 0.0025, 0.0]])}
plotter.plot_observation_points_vs_time(
    vtu_files_dict_HM,
    obs_points,
    var=ot.variables.pressure,
    methods_to_include=["VPF"],
    time_min=2900,
    time_max=3500,
)
[0] info: Reading meshes took 0.010852305000000007 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002130230000001454 s
[0] info: Collection of 4542 nodes and computing offsets took 4.376999999999853e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018702919999999956 s
[0] info: Reset nodes in regular elements took 0.010626022999999929 s
[0] info: creation of merged mesh took 0.0010594450000001032 s
[0] info: merge properties into merged mesh took 0.0006347209999999492 s
[0] info: writing mesh took 0.010998076000000134 s
[0] info: Reading meshes took 0.01923780400000008 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022017399999985088 s
[0] info: Collection of 4542 nodes and computing offsets took 4.73700000003241e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019701539999998907 s
[0] info: Reset nodes in regular elements took 0.011076443999999963 s
[0] info: creation of merged mesh took 0.0011174919999998867 s
[0] info: merge properties into merged mesh took 0.0006685129999999262 s
[0] info: writing mesh took 0.010750559999999965 s
[0] info: Reading meshes took 0.020407516000000125 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020104399999998357 s
[0] info: Collection of 4542 nodes and computing offsets took 4.697000000053464e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018823610000000546 s
[0] info: Reset nodes in regular elements took 0.01051609599999992 s
[0] info: creation of merged mesh took 0.0010711119999999852 s
[0] info: merge properties into merged mesh took 0.0006380169999999907 s
[0] info: writing mesh took 0.011429109000000048 s
[0] info: Reading meshes took 0.017274801000000117 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021473499999991041 s
[0] info: Collection of 4542 nodes and computing offsets took 4.957000000027634e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018744090000000213 s
[0] info: Reset nodes in regular elements took 0.010540972999999898 s
[0] info: creation of merged mesh took 0.0010579429999999501 s
[0] info: merge properties into merged mesh took 0.0006414919999997437 s
[0] info: writing mesh took 0.0103905150000001 s
[0] info: Reading meshes took 0.019682407000000124 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002177100000000376 s
[0] info: Collection of 4542 nodes and computing offsets took 4.367000000060628e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018769029999998743 s
[0] info: Reset nodes in regular elements took 0.010488724000000005 s
[0] info: creation of merged mesh took 0.001071441999999978 s
[0] info: merge properties into merged mesh took 0.0006403390000000453 s
[0] info: writing mesh took 0.010924363999999853 s
[0] info: Reading meshes took 0.016976067999999955 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021516600000004438 s
[0] info: Collection of 4542 nodes and computing offsets took 4.587000000055852e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018636019999997977 s
[0] info: Reset nodes in regular elements took 0.010519220000000162 s
[0] info: creation of merged mesh took 0.0010686380000000106 s
[0] info: merge properties into merged mesh took 0.0006313460000000326 s
[0] info: writing mesh took 0.010125283999999901 s
[0] info: Reading meshes took 0.01894518100000031 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021853100000024384 s
[0] info: Collection of 4542 nodes and computing offsets took 4.24600000004105e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018603569999999792 s
[0] info: Reset nodes in regular elements took 0.010508965000000092 s
[0] info: creation of merged mesh took 0.0010722340000000052 s
[0] info: merge properties into merged mesh took 0.0006216110000001329 s
[0] info: writing mesh took 0.011083544999999972 s
[0] info: Reading meshes took 0.014757617999999972 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021873199999999926 s
[0] info: Collection of 4542 nodes and computing offsets took 5.338000000021381e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001957283999999948 s
[0] info: Reset nodes in regular elements took 0.010464537000000051 s
[0] info: creation of merged mesh took 0.0010619490000001175 s
[0] info: merge properties into merged mesh took 0.0006379960000000295 s
[0] info: writing mesh took 0.00992624200000014 s
[0] info: Reading meshes took 0.01850017699999995 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002077650000000819 s
[0] info: Collection of 4542 nodes and computing offsets took 4.836999999868752e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018953400000001341 s
[0] info: Reset nodes in regular elements took 0.010496465000000121 s
[0] info: creation of merged mesh took 0.0010619779999998524 s
[0] info: merge properties into merged mesh took 0.0006387270000001166 s
[0] info: writing mesh took 0.01021685200000011 s
[0] info: Reading meshes took 0.009422308999999851 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00014789399999992625 s
[0] info: Collection of 4542 nodes and computing offsets took 3.3349999999376934e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011835620000000269 s
[0] info: Reset nodes in regular elements took 0.007965132000000041 s
[0] info: creation of merged mesh took 0.0007409819999999456 s
[0] info: merge properties into merged mesh took 0.0009000529999998452 s
[0] info: writing mesh took 0.04089883700000008 s
[0] info: Reading meshes took 0.026945124999999903 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0017347770000000207 s
[0] info: Collection of 4542 nodes and computing offsets took 4.9369999999271386e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.014772081000000048 s
[0] info: Reset nodes in regular elements took 0.06168110900000001 s
[0] info: creation of merged mesh took 0.0007768060000001853 s
[0] info: merge properties into merged mesh took 0.0005431029999998227 s
[0] info: writing mesh took 0.038429878000000084 s
[0] info: Reading meshes took 0.020683702999999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023685800000006196 s
[0] info: Collection of 4542 nodes and computing offsets took 5.28800000010321e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020515770000000266 s
[0] info: Reset nodes in regular elements took 0.011471231999999887 s
[0] info: creation of merged mesh took 0.001152835999999935 s
[0] info: merge properties into merged mesh took 0.0006965239999998651 s
[0] info: writing mesh took 0.01963335200000005 s
[0] info: Reading meshes took 0.012224020999999974 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00012668199999987806 s
[0] info: Collection of 4542 nodes and computing offsets took 3.1140000000817736e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011340069999998814 s
[0] info: Reset nodes in regular elements took 0.006412620999999952 s
[0] info: creation of merged mesh took 0.0006592780000000964 s
[0] info: merge properties into merged mesh took 0.00040265999999999913 s
[0] info: writing mesh took 0.009684645999999963 s
[0] info: Reading meshes took 0.01694620400000013 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020052400000003523 s
[0] info: Collection of 4542 nodes and computing offsets took 4.72699999987114e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018711730000000593 s
[0] info: Reset nodes in regular elements took 0.010510618000000083 s
[0] info: creation of merged mesh took 0.0010738960000000741 s
[0] info: merge properties into merged mesh took 0.0006310860000000584 s
[0] info: writing mesh took 0.015335944999999906 s
[0] info: Reading meshes took 0.021035625999999974 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020662299999996137 s
[0] info: Collection of 4542 nodes and computing offsets took 4.517000000037186e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018920259999999356 s
[0] info: Reset nodes in regular elements took 0.010493880999999927 s
[0] info: creation of merged mesh took 0.0010728040000000938 s
[0] info: merge properties into merged mesh took 0.0006077810000002515 s
[0] info: writing mesh took 0.016754723000000027 s
[0] info: Reading meshes took 0.014797649999999996 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020669299999998003 s
[0] info: Collection of 4542 nodes and computing offsets took 4.636999999974023e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018689610000000023 s
[0] info: Reset nodes in regular elements took 0.010427721999999973 s
[0] info: creation of merged mesh took 0.0006563339999998696 s
[0] info: merge properties into merged mesh took 0.0003894499999999024 s
[0] info: writing mesh took 0.009714722000000009 s
[0] info: Reading meshes took 0.01978810700000011 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021918199999992893 s
[0] info: Collection of 4542 nodes and computing offsets took 4.46699999989697e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.00187433799999992 s
[0] info: Reset nodes in regular elements took 0.010514162999999854 s
[0] info: creation of merged mesh took 0.0010668350000000437 s
[0] info: merge properties into merged mesh took 0.0006445159999999284 s
[0] info: writing mesh took 0.010681955999999992 s
[0] info: Reading meshes took 0.019375351999999957 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021234099999989375 s
[0] info: Collection of 4542 nodes and computing offsets took 4.4470000000185195e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018734970000000573 s
[0] info: Reset nodes in regular elements took 0.010499009999999975 s
[0] info: creation of merged mesh took 0.0010598250000000142 s
[0] info: merge properties into merged mesh took 0.0006294630000001078 s
[0] info: writing mesh took 0.01170600799999999 s
[0] info: Reading meshes took 0.01933014299999991 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022002300000001362 s
[0] info: Collection of 4542 nodes and computing offsets took 4.6069999999343025e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018753199999999026 s
[0] info: Reset nodes in regular elements took 0.010485379000000128 s
[0] info: creation of merged mesh took 0.0010607759999998745 s
[0] info: merge properties into merged mesh took 0.0006340899999999206 s
[0] info: writing mesh took 0.01281518699999995 s
[0] info: Reading meshes took 0.02036318799999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021851100000014334 s
[0] info: Collection of 4542 nodes and computing offsets took 4.005999999945331e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018699920000000425 s
[0] info: Reset nodes in regular elements took 0.010504869000000028 s
[0] info: creation of merged mesh took 0.0010717829999999928 s
[0] info: merge properties into merged mesh took 0.000636643999999853 s
[0] info: writing mesh took 0.0117888730000002 s
[0] info: Reading meshes took 0.01643312600000013 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020739499999988809 s
[0] info: Collection of 4542 nodes and computing offsets took 4.737000000254454e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001868078999999856 s
[0] info: Reset nodes in regular elements took 0.010516916000000265 s
[0] info: creation of merged mesh took 0.001061578000000063 s
[0] info: merge properties into merged mesh took 0.0006248759999998299 s
[0] info: writing mesh took 0.013744834999999789 s
[0] info: Reading meshes took 0.018515599999999965 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002160769999999257 s
[0] info: Collection of 4542 nodes and computing offsets took 5.0179999999677705e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018792060000001332 s
[0] info: Reset nodes in regular elements took 0.010492860000000048 s
[0] info: creation of merged mesh took 0.0010670560000001217 s
[0] info: merge properties into merged mesh took 0.0006379059999999104 s
[0] info: writing mesh took 0.016411673999999987 s
[0] info: Reading meshes took 0.014757538000000014 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020964700000014602 s
[0] info: Collection of 4542 nodes and computing offsets took 4.7770000000113555e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001872585999999954 s
[0] info: Reset nodes in regular elements took 0.010589516000000021 s
[0] info: creation of merged mesh took 0.0010772310000000118 s
[0] info: merge properties into merged mesh took 0.0004775930000000539 s
[0] info: writing mesh took 0.009636712999999908 s
[0] info: Reading meshes took 0.019531989000000083 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022629300000009955 s
[0] info: Collection of 4542 nodes and computing offsets took 4.446999999796475e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018661259999999125 s
[0] info: Reset nodes in regular elements took 0.010513240999999951 s
[0] info: creation of merged mesh took 0.001071963000000009 s
[0] info: merge properties into merged mesh took 0.0006465690000001523 s
[0] info: writing mesh took 0.01103224699999994 s
[0] info: Reading meshes took 0.01473192000000001 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021996299999993418 s
[0] info: Collection of 4542 nodes and computing offsets took 4.637000000196068e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018679889999999588 s
[0] info: Reset nodes in regular elements took 0.010586192000000105 s
[0] info: creation of merged mesh took 0.0010704409999999775 s
[0] info: merge properties into merged mesh took 0.0006454870000001112 s
[0] info: writing mesh took 0.009837918999999973 s
[0] info: Reading meshes took 0.018801993000000072 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021902200000001315 s
[0] info: Collection of 4542 nodes and computing offsets took 4.5570000000161315e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018790950000000528 s
[0] info: Reset nodes in regular elements took 0.010517818000000068 s
[0] info: creation of merged mesh took 0.0010710819999999455 s
[0] info: merge properties into merged mesh took 0.0006326679999999474 s
[0] info: writing mesh took 0.015240058999999917 s
[0] info: Reading meshes took 0.010173967000000061 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00013427399999987877 s
[0] info: Collection of 4542 nodes and computing offsets took 2.7240000000094966e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011354900000000168 s
[0] info: Reset nodes in regular elements took 0.006357327999999995 s
[0] info: creation of merged mesh took 0.0006478610000000273 s
[0] info: merge properties into merged mesh took 0.0003929249999998774 s
[0] info: writing mesh took 0.016383540999999724 s
[0] info: Reading meshes took 0.00986880499999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00012844499999986603 s
[0] info: Collection of 4542 nodes and computing offsets took 2.964000000105216e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001138704000000157 s
[0] info: Reset nodes in regular elements took 0.006369295999999913 s
[0] info: creation of merged mesh took 0.0006412509999997873 s
[0] info: merge properties into merged mesh took 0.00039975599999997335 s
[0] info: writing mesh took 0.011597663000000091 s
[0] info: Reading meshes took 0.010523357000000066 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00012983700000002152 s
[0] info: Collection of 4542 nodes and computing offsets took 2.853999999885559e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011388750000000947 s
[0] info: Reset nodes in regular elements took 0.006352198999999947 s
[0] info: creation of merged mesh took 0.0006502349999999435 s
[0] info: merge properties into merged mesh took 0.00039509899999989884 s
[0] info: writing mesh took 0.009596613000000032 s
[0] info: Reading meshes took 0.02088749099999987 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020781500000000008 s
[0] info: Collection of 4542 nodes and computing offsets took 4.878000000152483e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018815800000000493 s
[0] info: Reset nodes in regular elements took 0.010501223000000115 s
[0] info: creation of merged mesh took 0.001060716000000017 s
[0] info: merge properties into merged mesh took 0.0006363740000001616 s
[0] info: writing mesh took 0.011250116000000032 s
[0] info: Reading meshes took 0.017212476000000088 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021444500000011857 s
[0] info: Collection of 4542 nodes and computing offsets took 4.196000000122879e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.00196796999999993 s
[0] info: Reset nodes in regular elements took 0.010509365000000104 s
[0] info: creation of merged mesh took 0.001063419999999926 s
[0] info: merge properties into merged mesh took 0.0006373850000001013 s
[0] info: writing mesh took 0.010560222999999924 s
[0] info: Reading meshes took 0.02026371699999996 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021966299999998107 s
[0] info: Collection of 4542 nodes and computing offsets took 4.746999999971635e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001982080999999969 s
[0] info: Reset nodes in regular elements took 0.01089972699999997 s
[0] info: creation of merged mesh took 0.0011077770000000875 s
[0] info: merge properties into merged mesh took 0.0006549820000001372 s
[0] info: writing mesh took 0.017064302000000087 s
[0] info: Reading meshes took 0.01914887799999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022712400000002297 s
[0] info: Collection of 4542 nodes and computing offsets took 4.9079999999701585e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018825209999999704 s
[0] info: Reset nodes in regular elements took 0.010520633000000057 s
[0] info: creation of merged mesh took 0.0010634499999999658 s
[0] info: merge properties into merged mesh took 0.0006703949999999903 s
[0] info: writing mesh took 0.01664476700000006 s
[0] info: Reading meshes took 0.020202915000000043 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022615300000006222 s
[0] info: Collection of 4542 nodes and computing offsets took 4.4470000000185195e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019324759999999053 s
[0] info: Reset nodes in regular elements took 0.010846325999999795 s
[0] info: creation of merged mesh took 0.0010644819999998667 s
[0] info: merge properties into merged mesh took 0.0006388870000000324 s
[0] info: writing mesh took 0.011537032000000114 s
[0] info: Reading meshes took 0.015443147000000046 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021953299999988296 s
[0] info: Collection of 4542 nodes and computing offsets took 5.047999999785446e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018914840000001654 s
[0] info: Reset nodes in regular elements took 0.010519670999999953 s
[0] info: creation of merged mesh took 0.0010654340000000317 s
[0] info: merge properties into merged mesh took 0.0006309660000001216 s
[0] info: writing mesh took 0.010274450000000046 s
[0] info: Reading meshes took 0.018272681999999874 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022879600000003109 s
[0] info: Collection of 4542 nodes and computing offsets took 5.036999999985525e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018798069999999 s
[0] info: Reset nodes in regular elements took 0.01051716700000016 s
[0] info: creation of merged mesh took 0.0010610370000001534 s
[0] info: merge properties into merged mesh took 0.000628270999999847 s
[0] info: writing mesh took 0.019200415999999887 s
[0] info: Reading meshes took 0.015515305999999951 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023661899999982694 s
[0] info: Collection of 4542 nodes and computing offsets took 5.307999999981661e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0021461510000000406 s
[0] info: Reset nodes in regular elements took 0.010097561000000033 s
[0] info: creation of merged mesh took 0.0006796799999999603 s
[0] info: merge properties into merged mesh took 0.00043527900000017716 s
[0] info: writing mesh took 0.009819870999999925 s
[0] info: Reading meshes took 0.02037464499999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021365399999995205 s
[0] info: Collection of 4542 nodes and computing offsets took 4.696999999831419e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018737680000002754 s
[0] info: Reset nodes in regular elements took 0.010510477000000185 s
[0] info: creation of merged mesh took 0.001062388999999886 s
[0] info: merge properties into merged mesh took 0.000632006999999879 s
[0] info: writing mesh took 0.014202387000000094 s
[0] info: Reading meshes took 0.015913619000000212 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023075899999991378 s
[0] info: Collection of 4542 nodes and computing offsets took 5.28800000010321e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020386970000001448 s
[0] info: Reset nodes in regular elements took 0.011564051999999991 s
[0] info: creation of merged mesh took 0.001143482000000029 s
[0] info: merge properties into merged mesh took 0.0006822839999998109 s
[0] info: writing mesh took 0.013818737000000025 s
[0] info: Reading meshes took 0.018791157000000114 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002288059999999703 s
[0] info: Collection of 4542 nodes and computing offsets took 4.8979999998088886e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001980349999999964 s
[0] info: Reset nodes in regular elements took 0.011102203000000088 s
[0] info: creation of merged mesh took 0.0011131659999998877 s
[0] info: merge properties into merged mesh took 0.0006595179999999701 s
[0] info: writing mesh took 0.012252976000000082 s
[0] info: Reading meshes took 0.018529590999999845 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023293299999993522 s
[0] info: Collection of 4542 nodes and computing offsets took 5.6989999999146335e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019863080000002142 s
[0] info: Reset nodes in regular elements took 0.012857891999999982 s
[0] info: creation of merged mesh took 0.001262941999999878 s
[0] info: merge properties into merged mesh took 0.0006701950000000956 s
[0] info: writing mesh took 0.011322777000000173 s
[0] info: Reading meshes took 0.014616634999999878 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001645489999999583 s
[0] info: Collection of 4542 nodes and computing offsets took 3.034999999984578e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011387750000000363 s
[0] info: Reset nodes in regular elements took 0.006392229999999888 s
[0] info: creation of merged mesh took 0.0006740110000000854 s
[0] info: merge properties into merged mesh took 0.0004194660000000905 s
[0] info: writing mesh took 0.009890687999999814 s
[0] info: Reading meshes took 0.01912896900000005 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024109500000002448 s
[0] info: Collection of 4542 nodes and computing offsets took 4.686999999892194e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001875561000000081 s
[0] info: Reset nodes in regular elements took 0.010907317000000027 s
[0] info: creation of merged mesh took 0.0010681269999999188 s
[0] info: merge properties into merged mesh took 0.0006823039999999114 s
[0] info: writing mesh took 0.014599889999999949 s
[0] info: Reading meshes took 0.01591586300000003 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021793999999997204 s
[0] info: Collection of 4542 nodes and computing offsets took 4.938000000009879e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001979897999999869 s
[0] info: Reset nodes in regular elements took 0.011192679999999733 s
[0] info: creation of merged mesh took 0.0011154500000001288 s
[0] info: merge properties into merged mesh took 0.0006608910000001078 s
[0] info: writing mesh took 0.010823170000000104 s
[0] info: Reading meshes took 0.015560303999999858 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022413000000010008 s
[0] info: Collection of 4542 nodes and computing offsets took 4.517000000037186e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019734279999998883 s
[0] info: Reset nodes in regular elements took 0.011136494999999913 s
[0] info: creation of merged mesh took 0.001115580000000005 s
[0] info: merge properties into merged mesh took 0.0006787080000001389 s
[0] info: writing mesh took 0.01073797200000004 s
[0] info: Reading meshes took 0.019039934000000036 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023401400000011563 s
[0] info: Collection of 4542 nodes and computing offsets took 4.75699999991086e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001979778000000154 s
[0] info: Reset nodes in regular elements took 0.011113150000000127 s
[0] info: creation of merged mesh took 0.0011677580000000187 s
[0] info: merge properties into merged mesh took 0.0006724179999999524 s
[0] info: writing mesh took 0.016777677999999963 s
[0] info: Reading meshes took 0.01916417100000012 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022634199999993498 s
[0] info: Collection of 4542 nodes and computing offsets took 4.917999999909384e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019939990000001906 s
[0] info: Reset nodes in regular elements took 0.01115995099999978 s
[0] info: creation of merged mesh took 0.0011240520000002086 s
[0] info: merge properties into merged mesh took 0.0006570359999997777 s
[0] info: writing mesh took 0.011626997000000028 s
[0] info: Reading meshes took 0.015645382999999846 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022244699999984796 s
[0] info: Collection of 4542 nodes and computing offsets took 4.877999999930438e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019847260000001032 s
[0] info: Reset nodes in regular elements took 0.011959961999999935 s
[0] info: creation of merged mesh took 0.002041462000000216 s
[0] info: merge properties into merged mesh took 0.0007647179999998865 s
[0] info: writing mesh took 0.010519560999999955 s
[0] info: Reading meshes took 0.016378383000000163 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023021899999986495 s
[0] info: Collection of 4542 nodes and computing offsets took 5.066999999803201e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019847760000000214 s
[0] info: Reset nodes in regular elements took 0.011080800000000002 s
[0] info: creation of merged mesh took 0.0006538700000000564 s
[0] info: merge properties into merged mesh took 0.00041988599999998044 s
[0] info: writing mesh took 0.013936796000000085 s
[0] info: Reading meshes took 0.015515586000000026 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002281659999998631 s
[0] info: Collection of 4542 nodes and computing offsets took 4.7270000000931844e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020701949999999414 s
[0] info: Reset nodes in regular elements took 0.010854828000000039 s
[0] info: creation of merged mesh took 0.000663996000000111 s
[0] info: merge properties into merged mesh took 0.0004136059999999553 s
[0] info: writing mesh took 0.009900352000000057 s
[0] info: Reading meshes took 0.01615451499999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023579699999998205 s
[0] info: Collection of 4542 nodes and computing offsets took 5.168000000166373e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001985606000000084 s
[0] info: Reset nodes in regular elements took 0.011124936999999946 s
[0] info: creation of merged mesh took 0.0011195349999999493 s
[0] info: merge properties into merged mesh took 0.0006687730000001224 s
[0] info: writing mesh took 0.010605109999999973 s
[0] info: Reading meshes took 0.016331180999999972 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002378509999998446 s
[0] info: Collection of 4542 nodes and computing offsets took 5.087999999986437e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001885464999999975 s
[0] info: Reset nodes in regular elements took 0.010557598000000112 s
[0] info: creation of merged mesh took 0.0010982340000000868 s
[0] info: merge properties into merged mesh took 0.0005434630000000773 s
[0] info: writing mesh took 0.009821894000000109 s
[0] info: Reading meshes took 0.018433485000000083 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022677399999992964 s
[0] info: Collection of 4542 nodes and computing offsets took 5.357999999899832e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001974670000000067 s
[0] info: Reset nodes in regular elements took 0.011086299000000022 s
[0] info: creation of merged mesh took 0.0011196960000001699 s
[0] info: merge properties into merged mesh took 0.0006833850000000918 s
[0] info: writing mesh took 0.01786111899999998 s
[0] info: Reading meshes took 0.00906750199999995 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00013562599999983327 s
[0] info: Collection of 4542 nodes and computing offsets took 2.8240000000678833e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001124292999999943 s
[0] info: Reset nodes in regular elements took 0.0063373170000000645 s
[0] info: creation of merged mesh took 0.0007480529999999153 s
[0] info: merge properties into merged mesh took 0.00039572900000006683 s
[0] info: writing mesh took 0.009750134999999993 s
[0] info: Reading meshes took 0.01951275000000008 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020384799999995096 s
[0] info: Collection of 4542 nodes and computing offsets took 4.325999999998942e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018698509999999224 s
[0] info: Reset nodes in regular elements took 0.010456604999999897 s
[0] info: creation of merged mesh took 0.0010537160000001489 s
[0] info: merge properties into merged mesh took 0.0006208199999999664 s
[0] info: writing mesh took 0.011563101000000131 s
[0] info: Reading meshes took 0.016878109999999946 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001603129999998565 s
[0] info: Collection of 4542 nodes and computing offsets took 3.7959999998893323e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001145455000000073 s
[0] info: Reset nodes in regular elements took 0.006470709000000019 s
[0] info: creation of merged mesh took 0.0006654069999998402 s
[0] info: merge properties into merged mesh took 0.0004466360000001668 s
[0] info: writing mesh took 0.010439769999999848 s
[0] info: Reading meshes took 0.01629894200000015 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015664699999984322 s
[0] info: Collection of 4542 nodes and computing offsets took 3.3849999998558644e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011420500000001166 s
[0] info: Reset nodes in regular elements took 0.006406482000000047 s
[0] info: creation of merged mesh took 0.0006642259999998235 s
[0] info: merge properties into merged mesh took 0.00042955000000000076 s
[0] info: writing mesh took 0.009835424999999898 s
[0] info: Reading meshes took 0.017186487000000028 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023213100000019082 s
[0] info: Collection of 4542 nodes and computing offsets took 4.828000000012267e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018797269999999422 s
[0] info: Reset nodes in regular elements took 0.010572819999999927 s
[0] info: creation of merged mesh took 0.0010997660000000575 s
[0] info: merge properties into merged mesh took 0.0006564940000000075 s
[0] info: writing mesh took 0.009878218999999966 s
[0] info: Reading meshes took 0.015649900000000105 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024053400000001446 s
[0] info: Collection of 4542 nodes and computing offsets took 4.307000000203232e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001873446999999917 s
[0] info: Reset nodes in regular elements took 0.010510387000000065 s
[0] info: creation of merged mesh took 0.0010227890000000794 s
[0] info: merge properties into merged mesh took 0.0004304720000001261 s
[0] info: writing mesh took 0.010484947999999994 s
[0] info: Reading meshes took 0.017313289000000065 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000227685000000033 s
[0] info: Collection of 4542 nodes and computing offsets took 4.9470000000884085e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001982232000000028 s
[0] info: Reset nodes in regular elements took 0.01113489199999984 s
[0] info: creation of merged mesh took 0.0011134560000001237 s
[0] info: merge properties into merged mesh took 0.0006632440000000628 s
[0] info: writing mesh took 0.012083489000000114 s
[0] info: Reading meshes took 0.015405861000000076 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021333300000003774 s
[0] info: Collection of 4542 nodes and computing offsets took 4.74700000019368e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001969812999999876 s
[0] info: Reset nodes in regular elements took 0.011132367999999948 s
[0] info: creation of merged mesh took 0.0011538570000000359 s
[0] info: merge properties into merged mesh took 0.0006452169999999757 s
[0] info: writing mesh took 0.010009938999999912 s
[0] info: Reading meshes took 0.01879777699999985 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023433500000002994 s
[0] info: Collection of 4542 nodes and computing offsets took 5.719000000015129e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001976894000000229 s
[0] info: Reset nodes in regular elements took 0.01113290900000008 s
[0] info: creation of merged mesh took 0.0011104419999998782 s
[0] info: merge properties into merged mesh took 0.0006517070000000569 s
[0] info: writing mesh took 0.012812123000000009 s
[0] info: Reading meshes took 0.019047425000000118 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021389400000004777 s
[0] info: Collection of 4542 nodes and computing offsets took 5.048000000007491e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001967920000000234 s
[0] info: Reset nodes in regular elements took 0.011133300000000013 s
[0] info: creation of merged mesh took 0.0011049540000001024 s
[0] info: merge properties into merged mesh took 0.000638786999999974 s
[0] info: writing mesh took 0.012857340999999911 s
[0] info: Reading meshes took 0.016898080000000038 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002683260000000409 s
[0] info: Collection of 4542 nodes and computing offsets took 5.508000000098434e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019187059999998812 s
[0] info: Reset nodes in regular elements took 0.010671209999999931 s
[0] info: creation of merged mesh took 0.0017033989999999388 s
[0] info: merge properties into merged mesh took 0.0006902749999999624 s
[0] info: writing mesh took 0.011612976999999969 s
[0] info: Reading meshes took 0.019154828000000013 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021481500000009035 s
[0] info: Collection of 4542 nodes and computing offsets took 4.577000000116627e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019784560000000173 s
[0] info: Reset nodes in regular elements took 0.011151678000000054 s
[0] info: creation of merged mesh took 0.0011072670000000784 s
[0] info: merge properties into merged mesh took 0.0006430239999999365 s
[0] info: writing mesh took 0.011791076000000178 s
[0] info: Reading meshes took 0.018126089999999984 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022569200000011058 s
[0] info: Collection of 4542 nodes and computing offsets took 4.627000000034798e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019714550000000663 s
[0] info: Reset nodes in regular elements took 0.011196355000000047 s
[0] info: creation of merged mesh took 0.0011145380000001648 s
[0] info: merge properties into merged mesh took 0.0006404300000000251 s
[0] info: writing mesh took 0.010554363000000011 s
[0] info: Reading meshes took 0.018423500000000148 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022821499999992056 s
[0] info: Collection of 4542 nodes and computing offsets took 5.097999999925662e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019911059999999647 s
[0] info: Reset nodes in regular elements took 0.011114902000000093 s
[0] info: creation of merged mesh took 0.0010870760000001312 s
[0] info: merge properties into merged mesh took 0.0006237940000000108 s
[0] info: writing mesh took 0.010801837999999897 s
[0] info: Reading meshes took 0.009003585000000092 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00013490400000004676 s
[0] info: Collection of 4542 nodes and computing offsets took 2.7139999998482267e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011353000000000613 s
[0] info: Reset nodes in regular elements took 0.006376447000000063 s
[0] info: creation of merged mesh took 0.0006588579999999844 s
[0] info: merge properties into merged mesh took 0.000408788999999965 s
[0] info: writing mesh took 0.011210356999999949 s
[0] info: Reading meshes took 0.009001792000000064 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00012566099999999913 s
[0] info: Collection of 4542 nodes and computing offsets took 2.8440000001683785e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011305029999999494 s
[0] info: Reset nodes in regular elements took 0.006348433999999958 s
[0] info: creation of merged mesh took 0.0006408210000001802 s
[0] info: merge properties into merged mesh took 0.0004971229999999327 s
[0] info: writing mesh took 0.00964544700000003 s
[0] info: Reading meshes took 0.009026889999999899 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00012982700000030434 s
[0] info: Collection of 4542 nodes and computing offsets took 3.18500000018318e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011286499999998423 s
[0] info: Reset nodes in regular elements took 0.006348073000000065 s
[0] info: creation of merged mesh took 0.000640369000000085 s
[0] info: merge properties into merged mesh took 0.00039272399999989993 s
[0] info: writing mesh took 0.009624695999999933 s
[0] info: Reading meshes took 0.00905276899999996 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001311389999998358 s
[0] info: Collection of 4542 nodes and computing offsets took 2.743999999887947e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011291599999998514 s
[0] info: Reset nodes in regular elements took 0.006359481000000056 s
[0] info: creation of merged mesh took 0.0006435550000001289 s
[0] info: merge properties into merged mesh took 0.0003875269999999986 s
[0] info: writing mesh took 0.009596643000000071 s
[0] info: Reading meshes took 0.009033148999999963 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001311589999999363 s
[0] info: Collection of 4542 nodes and computing offsets took 3.034999999984578e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011841730000001771 s
[0] info: Reset nodes in regular elements took 0.0064128209999998464 s
[0] info: creation of merged mesh took 0.0006435840000000859 s
[0] info: merge properties into merged mesh took 0.00039195399999991665 s
[0] info: writing mesh took 0.009504863999999946 s
[0] info: Reading meshes took 0.009857178000000077 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016536000000000328 s
[0] info: Collection of 4542 nodes and computing offsets took 5.038000000068266e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001236112000000178 s
[0] info: Reset nodes in regular elements took 0.006749660999999962 s
[0] info: creation of merged mesh took 0.0007151229999999842 s
[0] info: merge properties into merged mesh took 0.000551434999999989 s
[0] info: writing mesh took 0.016764597999999964 s
[0] info: Reading meshes took 0.009913432000000055 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016223600000020433 s
[0] info: Collection of 4542 nodes and computing offsets took 5.197999999984049e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0013383370000001893 s
[0] info: Reset nodes in regular elements took 0.0066558400000000795 s
[0] info: creation of merged mesh took 0.0007103159999999331 s
[0] info: merge properties into merged mesh took 0.00045279600000003306 s
[0] info: writing mesh took 0.013939860000000026 s
[0] info: Reading meshes took 0.012887426000000035 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015476400000014046 s
[0] info: Collection of 4542 nodes and computing offsets took 4.968000000049599e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001400861000000031 s
[0] info: Reset nodes in regular elements took 0.006620956000000122 s
[0] info: creation of merged mesh took 0.0007000109999999449 s
[0] info: merge properties into merged mesh took 0.0004632709999998763 s
[0] info: writing mesh took 0.013384479000000171 s
[0] info: Reading meshes took 0.01067134000000003 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00014850499999985445 s
[0] info: Collection of 4542 nodes and computing offsets took 4.867999999991213e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011895509999999554 s
[0] info: Reset nodes in regular elements took 0.00669460799999988 s
[0] info: creation of merged mesh took 0.0006858590000000664 s
[0] info: merge properties into merged mesh took 0.0004586150000001066 s
[0] info: writing mesh took 0.018307634999999767 s
[0] info: Reading meshes took 0.009578525000000004 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001454799999998091 s
[0] info: Collection of 4542 nodes and computing offsets took 3.95600000002716e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001179196000000049 s
[0] info: Reset nodes in regular elements took 0.00668863899999983 s
[0] info: creation of merged mesh took 0.0006846970000000674 s
[0] info: merge properties into merged mesh took 0.00045700200000009517 s
[0] info: writing mesh took 0.013796982999999985 s
[0] info: Reading meshes took 0.00957882600000004 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015254100000006154 s
[0] info: Collection of 4542 nodes and computing offsets took 4.5070000000979604e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0014820640000001717 s
[0] info: Reset nodes in regular elements took 0.006628227999999847 s
[0] info: creation of merged mesh took 0.0006859479999998808 s
[0] info: merge properties into merged mesh took 0.00045074199999994846 s
[0] info: writing mesh took 0.014276439000000085 s
[0] info: Reading meshes took 0.011832838999999984 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016494000000011333 s
[0] info: Collection of 4542 nodes and computing offsets took 5.5079999998763896e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011946089999999021 s
[0] info: Reset nodes in regular elements took 0.006778434999999972 s
[0] info: creation of merged mesh took 0.0007192600000001104 s
[0] info: merge properties into merged mesh took 0.0004725849999998033 s
[0] info: writing mesh took 0.017412037999999797 s
[0] info: Reading meshes took 0.006946458999999905 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00013981200000001692 s
[0] info: Collection of 4542 nodes and computing offsets took 3.976000000127655e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011733769999999755 s
[0] info: Reset nodes in regular elements took 0.006794718999999949 s
[0] info: creation of merged mesh took 0.0006765849999998963 s
[0] info: merge properties into merged mesh took 0.0004478789999999844 s
[0] info: writing mesh took 0.012053572999999984 s
[0] info: Reading meshes took 0.009480125999999922 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001552849999999495 s
[0] info: Collection of 4542 nodes and computing offsets took 4.376999999999853e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011805179999999638 s
[0] info: Reset nodes in regular elements took 0.006739607000000092 s
[0] info: creation of merged mesh took 0.0006957739999999824 s
[0] info: merge properties into merged mesh took 0.00047248499999996696 s
[0] info: writing mesh took 0.012312484999999818 s
[0] info: Reading meshes took 0.009637964999999804 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015495499999995666 s
[0] info: Collection of 4542 nodes and computing offsets took 5.429000000001238e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0014416040000000407 s
[0] info: Reset nodes in regular elements took 0.006632643999999965 s
[0] info: creation of merged mesh took 0.0007313979999998832 s
[0] info: merge properties into merged mesh took 0.0004551090000000091 s
[0] info: writing mesh took 0.011570411999999974 s
[0] info: Reading meshes took 0.00976653999999999 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00017142900000011174 s
[0] info: Collection of 4542 nodes and computing offsets took 5.688999999975408e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001358016000000184 s
[0] info: Reset nodes in regular elements took 0.006628328000000128 s
[0] info: creation of merged mesh took 0.0007317979999998947 s
[0] info: merge properties into merged mesh took 0.0004884089999999119 s
[0] info: writing mesh took 0.01539315100000005 s
[0] info: Reading meshes took 0.009500668000000045 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016211600000004545 s
[0] info: Collection of 4542 nodes and computing offsets took 4.407000000039574e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011801469999999092 s
[0] info: Reset nodes in regular elements took 0.00678175999999997 s
[0] info: creation of merged mesh took 0.0006856879999999066 s
[0] info: merge properties into merged mesh took 0.00045864400000006356 s
[0] info: writing mesh took 0.014645027999999893 s
[0] info: Reading meshes took 0.009728673000000132 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001684550000000673 s
[0] info: Collection of 4542 nodes and computing offsets took 4.8370000000907964e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012110430000000783 s
[0] info: Reset nodes in regular elements took 0.006605973999999959 s
[0] info: creation of merged mesh took 0.0009053619999999096 s
[0] info: merge properties into merged mesh took 0.0004829910000001547 s
[0] info: writing mesh took 0.02106508000000007 s
[0] info: Reading meshes took 0.016348937999999924 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002466539999999018 s
[0] info: Collection of 4542 nodes and computing offsets took 6.089000000208955e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002237878000000082 s
[0] info: Reset nodes in regular elements took 0.011478072000000061 s
[0] info: creation of merged mesh took 0.0006988180000000455 s
[0] info: merge properties into merged mesh took 0.00046965099999995985 s
[0] info: writing mesh took 0.019876559999999932 s
[0] info: Reading meshes took 0.009404772999999977 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015067900000009793 s
[0] info: Collection of 4542 nodes and computing offsets took 4.416999999978799e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001227618999999791 s
[0] info: Reset nodes in regular elements took 0.006513974999999839 s
[0] info: creation of merged mesh took 0.0006762540000000428 s
[0] info: merge properties into merged mesh took 0.0004477880000000045 s
[0] info: writing mesh took 0.012855787999999979 s
[0] info: Reading meshes took 0.017608685999999985 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022959799999999753 s
[0] info: Collection of 4542 nodes and computing offsets took 5.078000000047211e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002023785 s
[0] info: Reset nodes in regular elements took 0.011333904000000006 s
[0] info: creation of merged mesh took 0.0011491799999998609 s
[0] info: merge properties into merged mesh took 0.0006887530000001529 s
[0] info: writing mesh took 0.011466493999999994 s
[0] info: Reading meshes took 0.016404642000000136 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002369190000000021 s
[0] info: Collection of 4542 nodes and computing offsets took 5.327999999860111e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002140111000000111 s
[0] info: Reset nodes in regular elements took 0.01131426400000013 s
[0] info: creation of merged mesh took 0.0011398059999998544 s
[0] info: merge properties into merged mesh took 0.0006914870000001017 s
[0] info: writing mesh took 0.010676778999999748 s
[0] info: Reading meshes took 0.019215119000000058 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022547100000003262 s
[0] info: Collection of 4542 nodes and computing offsets took 4.867999999991213e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019501340000001033 s
[0] info: Reset nodes in regular elements took 0.01049822800000011 s
[0] info: creation of merged mesh took 0.001068177000000059 s
[0] info: merge properties into merged mesh took 0.0006389180000001549 s
[0] info: writing mesh took 0.01439522900000001 s
[0] info: Reading meshes took 0.018972561 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002112899999999751 s
[0] info: Collection of 4542 nodes and computing offsets took 4.546999999854862e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018662860000000503 s
[0] info: Reset nodes in regular elements took 0.01051543399999999 s
[0] info: creation of merged mesh took 0.0010786430000000458 s
[0] info: merge properties into merged mesh took 0.0006282220000000116 s
[0] info: writing mesh took 0.010418117000000171 s
[0] info: Reading meshes took 0.016274656 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023854100000009204 s
[0] info: Collection of 4542 nodes and computing offsets took 4.977999999988825e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001920487999999887 s
[0] info: Reset nodes in regular elements took 0.010976332999999894 s
[0] info: creation of merged mesh took 0.0010764999999999247 s
[0] info: merge properties into merged mesh took 0.000427767999999773 s
[0] info: writing mesh took 0.00974377500000001 s
[0] info: Reading meshes took 0.018732999000000028 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002105489999999488 s
[0] info: Collection of 4542 nodes and computing offsets took 4.297000000041962e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018859159999999875 s
[0] info: Reset nodes in regular elements took 0.01054095300000002 s
[0] info: creation of merged mesh took 0.0010584529999999592 s
[0] info: merge properties into merged mesh took 0.0006365539999999559 s
[0] info: writing mesh took 0.016135074999999777 s
[0] info: Reading meshes took 0.01840488200000001 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002215759999999456 s
[0] info: Collection of 4542 nodes and computing offsets took 4.787000000172625e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002021360000000083 s
[0] info: Reset nodes in regular elements took 0.01112252300000005 s
[0] info: creation of merged mesh took 0.0011140070000001945 s
[0] info: merge properties into merged mesh took 0.0006493830000000589 s
[0] info: writing mesh took 0.010981590000000097 s
[0] info: Reading meshes took 0.014708004000000052 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021022900000011724 s
[0] info: Collection of 4542 nodes and computing offsets took 4.527000000198456e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001861848999999971 s
[0] info: Reset nodes in regular elements took 0.009809695999999812 s
[0] info: creation of merged mesh took 0.0006475910000001139 s
[0] info: merge properties into merged mesh took 0.00040857900000013103 s
[0] info: writing mesh took 0.010159274999999912 s
[0] info: Reading meshes took 0.018032448000000034 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002226969999998829 s
[0] info: Collection of 4542 nodes and computing offsets took 4.607000000156347e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001859926999999928 s
[0] info: Reset nodes in regular elements took 0.010478297999999997 s
[0] info: creation of merged mesh took 0.001057321 s
[0] info: merge properties into merged mesh took 0.0006311050000000762 s
[0] info: writing mesh took 0.014979986000000167 s
[0] info: Reading meshes took 0.019826604999999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022175599999996187 s
[0] info: Collection of 4542 nodes and computing offsets took 4.185999999961609e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018679889999999588 s
[0] info: Reset nodes in regular elements took 0.010506781000000132 s
[0] info: creation of merged mesh took 0.0010633600000000687 s
[0] info: merge properties into merged mesh took 0.0006342500000000584 s
[0] info: writing mesh took 0.017330585000000065 s
[0] info: Reading meshes took 0.009201483999999871 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00014780400000002913 s
[0] info: Collection of 4542 nodes and computing offsets took 4.666999999791699e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011936379999997193 s
[0] info: Reset nodes in regular elements took 0.006505322000000202 s
[0] info: creation of merged mesh took 0.0006901959999998653 s
[0] info: merge properties into merged mesh took 0.0004914339999999573 s
[0] info: writing mesh took 0.02024740200000008 s
[0] info: Reading meshes took 0.017970253000000103 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002000429999999831 s
[0] info: Collection of 4542 nodes and computing offsets took 4.3269999998596376e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018731659999999817 s
[0] info: Reset nodes in regular elements took 0.010524887999999955 s
[0] info: creation of merged mesh took 0.0010486280000001624 s
[0] info: merge properties into merged mesh took 0.0006101439999999236 s
[0] info: writing mesh took 0.0138060980000001 s
[0] info: Reading meshes took 0.018345853000000023 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021047899999993014 s
[0] info: Collection of 4542 nodes and computing offsets took 5.24799999990222e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001923032999999963 s
[0] info: Reset nodes in regular elements took 0.011020779999999952 s
[0] info: creation of merged mesh took 0.0010748969999998526 s
[0] info: merge properties into merged mesh took 0.0006237440000000927 s
[0] info: writing mesh took 0.01413393399999996 s
[0] info: Reading meshes took 0.0196943249999999 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020804499999993453 s
[0] info: Collection of 4542 nodes and computing offsets took 4.516999999815141e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001875811000000116 s
[0] info: Reset nodes in regular elements took 0.010517866999999903 s
[0] info: creation of merged mesh took 0.0010725650000000808 s
[0] info: merge properties into merged mesh took 0.0006215109999998525 s
[0] info: writing mesh took 0.01865314699999998 s
[0] info: Reading meshes took 0.018014490000000105 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020755399999994317 s
[0] info: Collection of 4542 nodes and computing offsets took 4.717000000153959e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018736380000001773 s
[0] info: Reset nodes in regular elements took 0.010510996999999911 s
[0] info: creation of merged mesh took 0.0010775820000001879 s
[0] info: merge properties into merged mesh took 0.0006284420000000068 s
[0] info: writing mesh took 0.010130631000000001 s
[0] info: Reading meshes took 0.019762226999999966 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021157099999991047 s
[0] info: Collection of 4542 nodes and computing offsets took 4.46699999989697e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018980850000001048 s
[0] info: Reset nodes in regular elements took 0.010487872999999981 s
[0] info: creation of merged mesh took 0.0010812580000001404 s
[0] info: merge properties into merged mesh took 0.0006271689999999275 s
[0] info: writing mesh took 0.017253597999999926 s
[0] info: Reading meshes took 0.016731547000000013 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00019863099999994915 s
[0] info: Collection of 4542 nodes and computing offsets took 4.426999999918024e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018750190000000888 s
[0] info: Reset nodes in regular elements took 0.010499029999999854 s
[0] info: creation of merged mesh took 0.0010498200000002011 s
[0] info: merge properties into merged mesh took 0.0005789469999999408 s
[0] info: writing mesh took 0.010854327999999969 s
[0] info: Reading meshes took 0.019356724000000103 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022392899999990057 s
[0] info: Collection of 4542 nodes and computing offsets took 4.367000000060628e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018729169999998074 s
[0] info: Reset nodes in regular elements took 0.010587072999999947 s
[0] info: creation of merged mesh took 0.0010557190000000105 s
[0] info: merge properties into merged mesh took 0.0006261079999998476 s
[0] info: writing mesh took 0.01180596899999986 s
[0] info: Reading meshes took 0.019065280999999823 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021479499999998986 s
[0] info: Collection of 4542 nodes and computing offsets took 4.70800000007543e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018782639999999073 s
[0] info: Reset nodes in regular elements took 0.010509915999999953 s
[0] info: creation of merged mesh took 0.0010612869999999663 s
[0] info: merge properties into merged mesh took 0.0006219019999997855 s
[0] info: writing mesh took 0.012282329999999897 s
[0] info: Reading meshes took 0.018489889999999898 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002866839999999815 s
[0] info: Collection of 4542 nodes and computing offsets took 6.0889999999869104e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001900097000000045 s
[0] info: Reset nodes in regular elements took 0.010750129999999913 s
[0] info: creation of merged mesh took 0.0012060369999999931 s
[0] info: merge properties into merged mesh took 0.0007121379999999178 s
[0] info: writing mesh took 0.010360129000000162 s
[0] info: Reading meshes took 0.021278893999999937 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021778000000005626 s
[0] info: Collection of 4542 nodes and computing offsets took 4.887999999869663e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001924284999999859 s
[0] info: Reset nodes in regular elements took 0.010515814000000123 s
[0] info: creation of merged mesh took 0.0010752979999999468 s
[0] info: merge properties into merged mesh took 0.0006457780000002078 s
[0] info: writing mesh took 0.01572968100000005 s
[0] info: Reading meshes took 0.008997504999999961 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00013140899999997124 s
[0] info: Collection of 4542 nodes and computing offsets took 2.934999999926191e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001132574999999969 s
[0] info: Reset nodes in regular elements took 0.008745623999999896 s
[0] info: creation of merged mesh took 0.0008432370000002187 s
[0] info: merge properties into merged mesh took 0.0005004680000000317 s
[0] info: writing mesh took 0.01014487300000022 s
[0] info: Reading meshes took 0.012961998999999835 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001421649999999719 s
[0] info: Collection of 4542 nodes and computing offsets took 2.704000000131046e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011346279999999709 s
[0] info: Reset nodes in regular elements took 0.0063365059999997975 s
[0] info: creation of merged mesh took 0.0006550419999999946 s
[0] info: merge properties into merged mesh took 0.0004031300000000293 s
[0] info: writing mesh took 0.01331948999999999 s
[0] info: Reading meshes took 0.01674329600000002 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021825099999994713 s
[0] info: Collection of 4542 nodes and computing offsets took 5.108000000086932e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018717739999998262 s
[0] info: Reset nodes in regular elements took 0.01052637100000009 s
[0] info: creation of merged mesh took 0.0010667460000000073 s
[0] info: merge properties into merged mesh took 0.0005741300000001726 s
[0] info: writing mesh took 0.014223859999999977 s
[0] info: Reading meshes took 0.019809559000000032 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021660899999997874 s
[0] info: Collection of 4542 nodes and computing offsets took 4.586999999833807e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018718749999999673 s
[0] info: Reset nodes in regular elements took 0.010523577000000284 s
[0] info: creation of merged mesh took 0.0010681269999999188 s
[0] info: merge properties into merged mesh took 0.0006449559999999188 s
[0] info: writing mesh took 0.010788136999999809 s
[0] info: Reading meshes took 0.01954131200000009 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002302379999998827 s
[0] info: Collection of 4542 nodes and computing offsets took 4.566999999955357e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001873747999999953 s
[0] info: Reset nodes in regular elements took 0.010516866000000125 s
[0] info: creation of merged mesh took 0.00106976999999997 s
[0] info: merge properties into merged mesh took 0.0006454670000000107 s
[0] info: writing mesh took 0.010893926999999914 s
[0] info: Reading meshes took 0.017309462999999914 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002031670000000041 s
[0] info: Collection of 4542 nodes and computing offsets took 4.636999999974023e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018755400000001199 s
[0] info: Reset nodes in regular elements took 0.010459139000000173 s
[0] info: creation of merged mesh took 0.0010771619999998538 s
[0] info: merge properties into merged mesh took 0.0006288730000001408 s
[0] info: writing mesh took 0.011100430000000161 s
[0] info: Reading meshes took 0.014793323000000136 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020972800000018665 s
[0] info: Collection of 4542 nodes and computing offsets took 4.706999999992689e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018836730000000301 s
[0] info: Reset nodes in regular elements took 0.010516446000000013 s
[0] info: creation of merged mesh took 0.0010801760000000993 s
[0] info: merge properties into merged mesh took 0.0006200790000001621 s
[0] info: writing mesh took 0.00971575300000005 s
[0] info: Reading meshes took 0.019895107999999828 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022085500000001979 s
[0] info: Collection of 4542 nodes and computing offsets took 4.676999999952969e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018724849999998128 s
[0] info: Reset nodes in regular elements took 0.010475844000000123 s
[0] info: creation of merged mesh took 0.0010599249999998506 s
[0] info: merge properties into merged mesh took 0.000643044000000037 s
[0] info: writing mesh took 0.015117052999999991 s
[0] info: Reading meshes took 0.017227058000000017 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002118410000000459 s
[0] info: Collection of 4542 nodes and computing offsets took 4.646999999913248e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018707620000000258 s
[0] info: Reset nodes in regular elements took 0.010510156000000048 s
[0] info: creation of merged mesh took 0.0010749380000001363 s
[0] info: merge properties into merged mesh took 0.0006213509999999367 s
[0] info: writing mesh took 0.010216540999999912 s
[0] info: Reading meshes took 0.016200712999999922 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021284200000004638 s
[0] info: Collection of 4542 nodes and computing offsets took 4.757000000132905e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001973337999999991 s
[0] info: Reset nodes in regular elements took 0.011169815999999777 s
[0] info: creation of merged mesh took 0.001108317999999997 s
[0] info: merge properties into merged mesh took 0.0006513159999999019 s
[0] info: writing mesh took 0.015601986999999928 s
[0] info: Reading meshes took 0.01898976699999988 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024058500000001537 s
[0] info: Collection of 4542 nodes and computing offsets took 4.818000000073042e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018833520000001158 s
[0] info: Reset nodes in regular elements took 0.010507742000000153 s
[0] info: creation of merged mesh took 0.001099474999999961 s
[0] info: merge properties into merged mesh took 0.0006879120000000682 s
[0] info: writing mesh took 0.0114585920000001 s
[0] info: Reading meshes took 0.01887026599999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000201874999999907 s
[0] info: Collection of 4542 nodes and computing offsets took 4.697000000053464e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018772929999999466 s
[0] info: Reset nodes in regular elements took 0.010509345000000003 s
[0] info: creation of merged mesh took 0.0010604960000000219 s
[0] info: merge properties into merged mesh took 0.0006372750000001037 s
[0] info: writing mesh took 0.016515590000000024 s
[0] info: Reading meshes took 0.015633335000000192 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021448500000009751 s
[0] info: Collection of 4542 nodes and computing offsets took 4.928000000070654e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018774230000000447 s
[0] info: Reset nodes in regular elements took 0.01049373099999995 s
[0] info: creation of merged mesh took 0.0009156269999999189 s
[0] info: merge properties into merged mesh took 0.00041054200000001373 s
[0] info: writing mesh took 0.009809034000000105 s
[0] info: Reading meshes took 0.017970243000000163 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002195419999999615 s
[0] info: Collection of 4542 nodes and computing offsets took 4.356999999899358e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018784640000000241 s
[0] info: Reset nodes in regular elements took 0.010521473000000059 s
[0] info: creation of merged mesh took 0.0010748579999999563 s
[0] info: merge properties into merged mesh took 0.0006318469999999632 s
[0] info: writing mesh took 0.00982401700000013 s
[0] info: Reading meshes took 0.015811795000000073 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021657799999985627 s
[0] info: Collection of 4542 nodes and computing offsets took 4.587000000055852e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018822210000000172 s
[0] info: Reset nodes in regular elements took 0.010514353000000032 s
[0] info: creation of merged mesh took 0.0010680569999999001 s
[0] info: merge properties into merged mesh took 0.0006338889999999431 s
[0] info: writing mesh took 0.010127165999999965 s
[0] info: Reading meshes took 0.017621023999999874 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020161499999993282 s
[0] info: Collection of 4542 nodes and computing offsets took 4.786999999950581e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001876241999999806 s
[0] info: Reset nodes in regular elements took 0.010531798000000148 s
[0] info: creation of merged mesh took 0.0010734650000001622 s
[0] info: merge properties into merged mesh took 0.0006368049999998515 s
[0] info: writing mesh took 0.009947274000000172 s
[0] info: Reading meshes took 0.01963369199999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002095370000001484 s
[0] info: Collection of 4542 nodes and computing offsets took 4.416999999978799e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018779239999999753 s
[0] info: Reset nodes in regular elements took 0.010501343000000052 s
[0] info: creation of merged mesh took 0.0010819779999999835 s
[0] info: merge properties into merged mesh took 0.0006366049999999568 s
[0] info: writing mesh took 0.01862999300000001 s
[0] info: Reading meshes took 0.014625498000000015 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002050700000000294 s
[0] info: Collection of 4542 nodes and computing offsets took 4.676999999952969e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018782840000000078 s
[0] info: Reset nodes in regular elements took 0.01048403600000003 s
[0] info: creation of merged mesh took 0.0006618419999999681 s
[0] info: merge properties into merged mesh took 0.0004088199999998654 s
[0] info: writing mesh took 0.010690298999999959 s
[0] info: Reading meshes took 0.02000773899999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022163600000002504 s
[0] info: Collection of 4542 nodes and computing offsets took 4.906999999887418e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018743690000000424 s
[0] info: Reset nodes in regular elements took 0.010515653999999985 s
[0] info: creation of merged mesh took 0.001068277999999978 s
[0] info: merge properties into merged mesh took 0.0006347010000000708 s
[0] info: writing mesh took 0.010698321999999871 s
[0] info: Reading meshes took 0.015828019000000193 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022174600000002265 s
[0] info: Collection of 4542 nodes and computing offsets took 4.185999999961609e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018674580000002106 s
[0] info: Reset nodes in regular elements took 0.010630408000000147 s
[0] info: creation of merged mesh took 0.0010711519999999641 s
[0] info: merge properties into merged mesh took 0.0006368840000001708 s
[0] info: writing mesh took 0.010240979000000205 s
[0] info: Reading meshes took 0.01860041800000012 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021528599999998121 s
[0] info: Collection of 4542 nodes and computing offsets took 4.767999999932826e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018858360000000296 s
[0] info: Reset nodes in regular elements took 0.01051927000000008 s
[0] info: creation of merged mesh took 0.001073035000000111 s
[0] info: merge properties into merged mesh took 0.0006419629999998566 s
[0] info: writing mesh took 0.010962281000000074 s
[0] info: Reading meshes took 0.016715873999999964 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002517410000000275 s
[0] info: Collection of 4542 nodes and computing offsets took 6.139000000127126e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018986750000000718 s
[0] info: Reset nodes in regular elements took 0.010657098999999892 s
[0] info: creation of merged mesh took 0.0011298810000002213 s
[0] info: merge properties into merged mesh took 0.0006955940000001881 s
[0] info: writing mesh took 0.010511979000000116 s
[0] info: Reading meshes took 0.019787074999999987 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021838100000004523 s
[0] info: Collection of 4542 nodes and computing offsets took 4.777999999872051e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018813179999999097 s
[0] info: Reset nodes in regular elements took 0.010515845000000024 s
[0] info: creation of merged mesh took 0.0010678269999999657 s
[0] info: merge properties into merged mesh took 0.0006342100000000794 s
[0] info: writing mesh took 0.016980514999999974 s
[0] info: Reading meshes took 0.01963172999999996 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022167600000000398 s
[0] info: Collection of 4542 nodes and computing offsets took 5.128000000187427e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018835930000000722 s
[0] info: Reset nodes in regular elements took 0.010515795000000105 s
[0] info: creation of merged mesh took 0.0010663539999999916 s
[0] info: merge properties into merged mesh took 0.0006408300000000366 s
[0] info: writing mesh took 0.011586485999999896 s
[0] info: Reading meshes took 0.01972745500000017 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021507499999984248 s
[0] info: Collection of 4542 nodes and computing offsets took 4.817000000212346e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018804180000000503 s
[0] info: Reset nodes in regular elements took 0.010547131999999904 s
[0] info: creation of merged mesh took 0.0010643409999999687 s
[0] info: merge properties into merged mesh took 0.0006407399999999175 s
[0] info: writing mesh took 0.011568588999999907 s
[0] info: Reading meshes took 0.01472165400000014 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021795000000013331 s
[0] info: Collection of 4542 nodes and computing offsets took 4.307000000203232e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001873487000000118 s
[0] info: Reset nodes in regular elements took 0.010522123999999966 s
[0] info: creation of merged mesh took 0.0010738660000000344 s
[0] info: merge properties into merged mesh took 0.0006299339999999987 s
[0] info: writing mesh took 0.011570140999999978 s
[0] info: Reading meshes took 0.018495558999999995 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022750399999971194 s
[0] info: Collection of 4542 nodes and computing offsets took 5.138000000126652e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.00198147999999998 s
[0] info: Reset nodes in regular elements took 0.01112139099999987 s
[0] info: creation of merged mesh took 0.0011309830000001408 s
[0] info: merge properties into merged mesh took 0.0006715769999998678 s
[0] info: writing mesh took 0.010475032999999856 s
[0] info: Reading meshes took 0.017022628999999956 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021183099999988464 s
[0] info: Collection of 4542 nodes and computing offsets took 4.99800000008932e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0019926279999999963 s
[0] info: Reset nodes in regular elements took 0.010514713999999925 s
[0] info: creation of merged mesh took 0.0010547370000000278 s
[0] info: merge properties into merged mesh took 0.0006254569999999404 s
[0] info: writing mesh took 0.010245115000000027 s
[0] info: Reading meshes took 0.017604369000000064 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002193220000001883 s
[0] info: Collection of 4542 nodes and computing offsets took 4.807000000051076e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018785350000001255 s
[0] info: Reset nodes in regular elements took 0.010509776000000137 s
[0] info: creation of merged mesh took 0.0010615469999999405 s
[0] info: merge properties into merged mesh took 0.0006361630000000229 s
[0] info: writing mesh took 0.009598235000000122 s
[0] info: Reading meshes took 0.019702917000000042 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021441500000007885 s
[0] info: Collection of 4542 nodes and computing offsets took 4.898000000030933e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001880828000000001 s
[0] info: Reset nodes in regular elements took 0.010512789999999939 s
[0] info: creation of merged mesh took 0.001063171000000196 s
[0] info: merge properties into merged mesh took 0.000639948999999973 s
[0] info: writing mesh took 0.010541443999999789 s
[0] info: Reading meshes took 0.017635505999999967 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002247500000001068 s
[0] info: Collection of 4542 nodes and computing offsets took 4.787000000172625e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018768120000001165 s
[0] info: Reset nodes in regular elements took 0.010556827000000046 s
[0] info: creation of merged mesh took 0.0010674560000001332 s
[0] info: merge properties into merged mesh took 0.0006365440000000167 s
[0] info: writing mesh took 0.010393929999999996 s
[0] info: Reading meshes took 0.017948691000000183 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021227199999995783 s
[0] info: Collection of 4542 nodes and computing offsets took 4.967999999827555e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0018874580000001195 s
[0] info: Reset nodes in regular elements took 0.010531588000000092 s
[0] info: creation of merged mesh took 0.0010630299999998538 s
[0] info: merge properties into merged mesh took 0.0006305449999999269 s
[0] info: writing mesh took 0.01211282300000005 s
[0] info: Reading meshes took 0.014698279000000092 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00020559099999983843 s
[0] info: Collection of 4542 nodes and computing offsets took 4.527000000198456e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001870221999999977 s
[0] info: Reset nodes in regular elements took 0.010507552999999836 s
[0] info: creation of merged mesh took 0.0010776109999999228 s
[0] info: merge properties into merged mesh took 0.0006312760000000139 s
[0] info: writing mesh took 0.009926091000000081 s
[0] info: Reading meshes took 0.009528369000000092 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00029022900000019725 s
[0] info: Collection of 4542 nodes and computing offsets took 6.409999999901217e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011943289999998274 s
[0] info: Reset nodes in regular elements took 0.006773115999999968 s
[0] info: creation of merged mesh took 0.0007174070000000032 s
[0] info: merge properties into merged mesh took 0.000516713000000113 s
[0] info: writing mesh took 0.018906241000000046 s
[0] info: Reading meshes took 0.009557634000000093 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000162686000000134 s
[0] info: Collection of 4542 nodes and computing offsets took 5.368000000061102e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012012089999999809 s
[0] info: Reset nodes in regular elements took 0.0066554089999999455 s
[0] info: creation of merged mesh took 0.0007123789999998742 s
[0] info: merge properties into merged mesh took 0.00047201500000015884 s
[0] info: writing mesh took 0.014969109000000147 s
[0] info: Reading meshes took 0.009636904000000168 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001759370000000704 s
[0] info: Collection of 4542 nodes and computing offsets took 5.2379999999629945e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012145690000000542 s
[0] info: Reset nodes in regular elements took 0.006848301000000001 s
[0] info: creation of merged mesh took 0.0007386480000000084 s
[0] info: merge properties into merged mesh took 0.00047806399999994476 s
[0] info: writing mesh took 0.014935958000000138 s
[0] info: Reading meshes took 0.009517211999999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015508500000005476 s
[0] info: Collection of 4542 nodes and computing offsets took 4.257000000063016e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0014454999999999885 s
[0] info: Reset nodes in regular elements took 0.006640023999999967 s
[0] info: creation of merged mesh took 0.0006887939999999926 s
[0] info: merge properties into merged mesh took 0.00046735799999986227 s
[0] info: writing mesh took 0.017534833999999888 s
[0] info: Reading meshes took 0.009491772999999926 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015662699999996477 s
[0] info: Collection of 4542 nodes and computing offsets took 4.6170000000955724e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011915750000000003 s
[0] info: Reset nodes in regular elements took 0.006720296999999986 s
[0] info: creation of merged mesh took 0.0006770150000001696 s
[0] info: merge properties into merged mesh took 0.0004401270000000679 s
[0] info: writing mesh took 0.015611290999999916 s
[0] info: Reading meshes took 0.010683098000000113 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00018132500000000995 s
[0] info: Collection of 4542 nodes and computing offsets took 5.28800000010321e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0013799000000001005 s
[0] info: Reset nodes in regular elements took 0.006682549999999843 s
[0] info: creation of merged mesh took 0.0007204910000000453 s
[0] info: merge properties into merged mesh took 0.00045517900000002776 s
[0] info: writing mesh took 0.018941233999999918 s
[0] info: Reading meshes took 0.009569621999999889 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001529819999999127 s
[0] info: Collection of 4542 nodes and computing offsets took 5.02800000012904e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012508250000000665 s
[0] info: Reset nodes in regular elements took 0.0074322049999999695 s
[0] info: creation of merged mesh took 0.0006853980000001147 s
[0] info: merge properties into merged mesh took 0.0004892309999999789 s
[0] info: writing mesh took 0.01652759799999992 s
[0] info: Reading meshes took 0.009827923000000016 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00017137000000011504 s
[0] info: Collection of 4542 nodes and computing offsets took 4.026000000045826e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012017799999999301 s
[0] info: Reset nodes in regular elements took 0.006820489000000096 s
[0] info: creation of merged mesh took 0.0007125990000000915 s
[0] info: merge properties into merged mesh took 0.0004810990000001514 s
[0] info: writing mesh took 0.01367334600000003 s
[0] info: Reading meshes took 0.010752423000000011 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015969099999990632 s
[0] info: Collection of 4542 nodes and computing offsets took 5.447999999796949e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001209801999999982 s
[0] info: Reset nodes in regular elements took 0.008761108000000073 s
[0] info: creation of merged mesh took 0.0007302060000000665 s
[0] info: merge properties into merged mesh took 0.0004559399999999325 s
[0] info: writing mesh took 0.011557883000000047 s
[0] info: Reading meshes took 0.011512564000000003 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001544840000000658 s
[0] info: Collection of 4542 nodes and computing offsets took 4.9079999999701585e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011904919999998764 s
[0] info: Reset nodes in regular elements took 0.0067561910000000225 s
[0] info: creation of merged mesh took 0.0006915569999998983 s
[0] info: merge properties into merged mesh took 0.0004724959999999889 s
[0] info: writing mesh took 0.016151368999999915 s
[0] info: Reading meshes took 0.009678417000000161 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015917099999995798 s
[0] info: Collection of 4542 nodes and computing offsets took 4.577000000116627e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012043639999999023 s
[0] info: Reset nodes in regular elements took 0.006798955999999912 s
[0] info: creation of merged mesh took 0.0007224239999998883 s
[0] info: merge properties into merged mesh took 0.0004554500000000239 s
[0] info: writing mesh took 0.016921734999999938 s
[0] info: Reading meshes took 0.009537873999999835 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001516889999999549 s
[0] info: Collection of 4542 nodes and computing offsets took 4.136999999904134e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011923259999999658 s
[0] info: Reset nodes in regular elements took 0.006796170999999962 s
[0] info: creation of merged mesh took 0.0006791490000002121 s
[0] info: merge properties into merged mesh took 0.0004562710000000081 s
[0] info: writing mesh took 0.016649342999999872 s
[0] info: Reading meshes took 0.009698326999999951 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016071300000009003 s
[0] info: Collection of 4542 nodes and computing offsets took 5.1279999999653825e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0014096350000001312 s
[0] info: Reset nodes in regular elements took 0.006728889999999987 s
[0] info: creation of merged mesh took 0.0007175770000000803 s
[0] info: merge properties into merged mesh took 0.0004713039999999502 s
[0] info: writing mesh took 0.015064392999999843 s
[0] info: Reading meshes took 0.00954475400000021 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001478740000000478 s
[0] info: Collection of 4542 nodes and computing offsets took 4.126000000104213e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012470790000000953 s
[0] info: Reset nodes in regular elements took 0.006614607000000161 s
[0] info: creation of merged mesh took 0.0006773760000000628 s
[0] info: merge properties into merged mesh took 0.0006005700000000225 s
[0] info: writing mesh took 0.013954022000000066 s
[0] info: Reading meshes took 0.009611554999999994 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0003232300000000077 s
[0] info: Collection of 4542 nodes and computing offsets took 6.869400000009129e-05 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012203880000001277 s
[0] info: Reset nodes in regular elements took 0.0067567120000000536 s
[0] info: creation of merged mesh took 0.0006865799999999922 s
[0] info: merge properties into merged mesh took 0.000464672999999971 s
[0] info: writing mesh took 0.017290883999999895 s
[0] info: Reading meshes took 0.009571935000000087 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016073399999982918 s
[0] info: Collection of 4542 nodes and computing offsets took 4.456999999957745e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0032484200000000296 s
[0] info: Reset nodes in regular elements took 0.006702750000000091 s
[0] info: creation of merged mesh took 0.0006837760000000248 s
[0] info: merge properties into merged mesh took 0.0004469160000000194 s
[0] info: writing mesh took 0.015605882000000015 s
[0] info: Reading meshes took 0.012908426999999945 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016581099999979365 s
[0] info: Collection of 4542 nodes and computing offsets took 4.4470000000185195e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012104630000000505 s
[0] info: Reset nodes in regular elements took 0.008846986999999862 s
[0] info: creation of merged mesh took 0.0007609219999999972 s
[0] info: merge properties into merged mesh took 0.0004776839999998117 s
[0] info: writing mesh took 0.015431057999999886 s
[0] info: Reading meshes took 0.0084013220000001 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00018106500000003578 s
[0] info: Collection of 4542 nodes and computing offsets took 5.428000000140543e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001211855000000206 s
[0] info: Reset nodes in regular elements took 0.00965344899999998 s
[0] info: creation of merged mesh took 0.000751808000000187 s
[0] info: merge properties into merged mesh took 0.00049185499999993 s
[0] info: writing mesh took 0.016948776 s
[0] info: Reading meshes took 0.00973774599999988 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001683049999998687 s
[0] info: Collection of 4542 nodes and computing offsets took 5.188000000044823e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001200698000000111 s
[0] info: Reset nodes in regular elements took 0.0067537980000000886 s
[0] info: creation of merged mesh took 0.0007292139999999225 s
[0] info: merge properties into merged mesh took 0.00046435300000013946 s
[0] info: writing mesh took 0.010724040000000157 s
[0] info: Reading meshes took 0.01001814099999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016648200000002333 s
[0] info: Collection of 4542 nodes and computing offsets took 5.25800000006349e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012134679999999953 s
[0] info: Reset nodes in regular elements took 0.006755921000000109 s
[0] info: creation of merged mesh took 0.0007019429999999272 s
[0] info: merge properties into merged mesh took 0.00048056799999995903 s
[0] info: writing mesh took 0.018202264999999995 s
[0] info: Reading meshes took 0.010052101999999952 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00028135599999989935 s
[0] info: Collection of 4542 nodes and computing offsets took 5.889000000092182e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0012207790000000607 s
[0] info: Reset nodes in regular elements took 0.006677432000000039 s
[0] info: creation of merged mesh took 0.0007522090000000592 s
[0] info: merge properties into merged mesh took 0.00047766300000007256 s
[0] info: writing mesh took 0.015923393000000008 s
[0] info: Reading meshes took 0.009867051999999932 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016680299999993764 s
[0] info: Collection of 4542 nodes and computing offsets took 4.555999999933391e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011992860000000771 s
[0] info: Reset nodes in regular elements took 0.006581857000000024 s
[0] info: creation of merged mesh took 0.000707311999999849 s
[0] info: merge properties into merged mesh took 0.00047132399999982866 s
[0] info: writing mesh took 0.013766637000000026 s
[0] info: Reading meshes took 0.015820267999999915 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002390320000000834 s
[0] info: Collection of 4542 nodes and computing offsets took 6.6010000001615055e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002072108000000128 s
[0] info: Reset nodes in regular elements took 0.010970572999999817 s
[0] info: creation of merged mesh took 0.0007153429999999794 s
[0] info: merge properties into merged mesh took 0.0004921860000000056 s
[0] info: writing mesh took 0.018406863999999912 s
[0] info: Reading meshes took 0.00982341600000014 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001618150000000096 s
[0] info: Collection of 4542 nodes and computing offsets took 5.387999999939552e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.001439500000000038 s
[0] info: Reset nodes in regular elements took 0.006630330999999767 s
[0] info: creation of merged mesh took 0.0007735919999998231 s
[0] info: merge properties into merged mesh took 0.000477484000000139 s
[0] info: writing mesh took 0.015330105000000094 s
[0] info: Reading meshes took 0.01808281299999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002370490000001002 s
[0] info: Collection of 4542 nodes and computing offsets took 6.329999999943325e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020982880000000037 s
[0] info: Reset nodes in regular elements took 0.011638334000000139 s
[0] info: creation of merged mesh took 0.001181939999999937 s
[0] info: merge properties into merged mesh took 0.0006553019999999687 s
[0] info: writing mesh took 0.01473287099999987 s
[0] info: Reading meshes took 0.00965062399999983 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001649390000000306 s
[0] info: Collection of 4542 nodes and computing offsets took 4.587000000055852e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011907229999998936 s
[0] info: Reset nodes in regular elements took 0.006729320000000039 s
[0] info: creation of merged mesh took 0.0006978469999998627 s
[0] info: merge properties into merged mesh took 0.0004787349999999524 s
[0] info: writing mesh took 0.017822999999999922 s
[0] info: Reading meshes took 0.018972209999999823 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002521010000000601 s
[0] info: Collection of 4542 nodes and computing offsets took 6.790000000034269e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0021775580000000794 s
[0] info: Reset nodes in regular elements took 0.011659136000000014 s
[0] info: creation of merged mesh took 0.0011957109999998217 s
[0] info: merge properties into merged mesh took 0.0007467910000000799 s
[0] info: writing mesh took 0.012148437000000012 s
[0] info: Reading meshes took 0.01928307100000004 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00028003399999976253 s
[0] info: Collection of 4542 nodes and computing offsets took 6.490000000081153e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002074291000000006 s
[0] info: Reset nodes in regular elements took 0.011666127000000026 s
[0] info: creation of merged mesh took 0.0011725049999999904 s
[0] info: merge properties into merged mesh took 0.0007296150000000168 s
[0] info: writing mesh took 0.0184898309999999 s
[0] info: Reading meshes took 0.019497115000000065 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000397110999999839 s
[0] info: Collection of 4542 nodes and computing offsets took 6.57999999997827e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002083043999999923 s
[0] info: Reset nodes in regular elements took 0.011565363999999967 s
[0] info: creation of merged mesh took 0.0011577630000001449 s
[0] info: merge properties into merged mesh took 0.0007277930000002542 s
[0] info: writing mesh took 0.019703328000000075 s
[0] info: Reading meshes took 0.018108292000000192 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00027338399999998764 s
[0] info: Collection of 4542 nodes and computing offsets took 6.629999999896441e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0021056989999999054 s
[0] info: Reset nodes in regular elements took 0.00876760700000001 s
[0] info: creation of merged mesh took 0.0007538519999998883 s
[0] info: merge properties into merged mesh took 0.0005054749999999775 s
[0] info: writing mesh took 0.015496527000000038 s
[0] info: Reading meshes took 0.016230869000000148 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002434289999999617 s
[0] info: Collection of 4542 nodes and computing offsets took 6.409000000040521e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020559639999999657 s
[0] info: Reset nodes in regular elements took 0.01166917100000009 s
[0] info: creation of merged mesh took 0.0011782240000000055 s
[0] info: merge properties into merged mesh took 0.0007164249999997985 s
[0] info: writing mesh took 0.01366573399999993 s
[0] info: Reading meshes took 0.009647710000000087 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015477399999985764 s
[0] info: Collection of 4542 nodes and computing offsets took 4.576999999894582e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011896819999996922 s
[0] info: Reset nodes in regular elements took 0.006588247000000047 s
[0] info: creation of merged mesh took 0.0006840659999998167 s
[0] info: merge properties into merged mesh took 0.0004727760000000636 s
[0] info: writing mesh took 0.014327326999999945 s
[0] info: Reading meshes took 0.018533195000000058 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00027051899999985807 s
[0] info: Collection of 4542 nodes and computing offsets took 7.510999999960077e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020965950000000344 s
[0] info: Reset nodes in regular elements took 0.011553606000000105 s
[0] info: creation of merged mesh took 0.0012217310000000037 s
[0] info: merge properties into merged mesh took 0.0007423950000000623 s
[0] info: writing mesh took 0.015369333999999846 s
[0] info: Reading meshes took 0.016830458000000048 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002902000000000182 s
[0] info: Collection of 4542 nodes and computing offsets took 7.711999999937547e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020888240000001 s
[0] info: Reset nodes in regular elements took 0.011585603999999972 s
[0] info: creation of merged mesh took 0.0012179839999999498 s
[0] info: merge properties into merged mesh took 0.0007372370000000572 s
[0] info: writing mesh took 0.01343918200000016 s
[0] info: Reading meshes took 0.016461317999999947 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000274645999999823 s
[0] info: Collection of 4542 nodes and computing offsets took 6.57999999997827e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020685629999999122 s
[0] info: Reset nodes in regular elements took 0.011548407999999899 s
[0] info: creation of merged mesh took 0.0009130630000000473 s
[0] info: merge properties into merged mesh took 0.000486616999999967 s
[0] info: writing mesh took 0.012603366000000005 s
[0] info: Reading meshes took 0.009795463999999976 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0001589199999998403 s
[0] info: Collection of 4542 nodes and computing offsets took 3.0637000000055536e-05 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011867269999998875 s
[0] info: Reset nodes in regular elements took 0.006752056000000062 s
[0] info: creation of merged mesh took 0.0006984580000000129 s
[0] info: merge properties into merged mesh took 0.0004765119999998735 s
[0] info: writing mesh took 0.01480363699999998 s
[0] info: Reading meshes took 0.018841423000000024 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002522419999999581 s
[0] info: Collection of 4542 nodes and computing offsets took 6.28999999996438e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020652580000000142 s
[0] info: Reset nodes in regular elements took 0.011531132 s
[0] info: creation of merged mesh took 0.0011819900000000771 s
[0] info: merge properties into merged mesh took 0.0007244680000000336 s
[0] info: writing mesh took 0.016030615999999887 s
[0] info: Reading meshes took 0.017070360000000173 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024119499999986083 s
[0] info: Collection of 4542 nodes and computing offsets took 6.799999999973494e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002064336000000111 s
[0] info: Reset nodes in regular elements took 0.011526004000000034 s
[0] info: creation of merged mesh took 0.0007188590000000161 s
[0] info: merge properties into merged mesh took 0.00048343200000000586 s
[0] info: writing mesh took 0.014733711999999954 s
[0] info: Reading meshes took 0.018228072999999956 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002512100000000572 s
[0] info: Collection of 4542 nodes and computing offsets took 6.09900000014818e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020687929999998467 s
[0] info: Reset nodes in regular elements took 0.011563390999999923 s
[0] info: creation of merged mesh took 0.0011949399999999777 s
[0] info: merge properties into merged mesh took 0.0007283330000000809 s
[0] info: writing mesh took 0.013825887999999953 s
[0] info: Reading meshes took 0.017805784000000102 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002468529999999358 s
[0] info: Collection of 4542 nodes and computing offsets took 6.278999999942414e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002201362999999956 s
[0] info: Reset nodes in regular elements took 0.01151965399999999 s
[0] info: creation of merged mesh took 0.0011647640000000958 s
[0] info: merge properties into merged mesh took 0.0007243269999999136 s
[0] info: writing mesh took 0.015097442999999933 s
[0] info: Reading meshes took 0.01634764600000005 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002446700000000579 s
[0] info: Collection of 4542 nodes and computing offsets took 5.969000000050073e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002154532999999903 s
[0] info: Reset nodes in regular elements took 0.011466374000000057 s
[0] info: creation of merged mesh took 0.0011615689999999734 s
[0] info: merge properties into merged mesh took 0.000717216000000187 s
[0] info: writing mesh took 0.015311747000000153 s
[0] info: Reading meshes took 0.01765915200000001 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002448010000000167 s
[0] info: Collection of 4542 nodes and computing offsets took 6.368999999839531e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002057305999999981 s
[0] info: Reset nodes in regular elements took 0.011515998999999999 s
[0] info: creation of merged mesh took 0.0011539879999999947 s
[0] info: merge properties into merged mesh took 0.0007131099999999613 s
[0] info: writing mesh took 0.01623600599999997 s
[0] info: Reading meshes took 0.009597443999999955 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00016320699999994304 s
[0] info: Collection of 4542 nodes and computing offsets took 4.6670000000137435e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0013048359999998649 s
[0] info: Reset nodes in regular elements took 0.006630511000000006 s
[0] info: creation of merged mesh took 0.0006941709999999102 s
[0] info: merge properties into merged mesh took 0.00047224499999987124 s
[0] info: writing mesh took 0.013342956000000017 s
[0] info: Reading meshes took 0.019569025000000018 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002604939999999445 s
[0] info: Collection of 4542 nodes and computing offsets took 6.670000000097431e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0023347849999999504 s
[0] info: Reset nodes in regular elements took 0.011481698000000096 s
[0] info: creation of merged mesh took 0.0012292709999999207 s
[0] info: merge properties into merged mesh took 0.0007413329999998997 s
[0] info: writing mesh took 0.010369803999999982 s
[0] info: Reading meshes took 0.01964343699999982 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024669300000002004 s
[0] info: Collection of 4542 nodes and computing offsets took 6.820999999934685e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020801999999999765 s
[0] info: Reset nodes in regular elements took 0.011520076000000046 s
[0] info: creation of merged mesh took 0.0012101520000000754 s
[0] info: merge properties into merged mesh took 0.0007263100000001188 s
[0] info: writing mesh took 0.014111999999999902 s
[0] info: Reading meshes took 0.019002575999999882 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025616799999994555 s
[0] info: Collection of 4542 nodes and computing offsets took 6.440000000162982e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020749520000000743 s
[0] info: Reset nodes in regular elements took 0.011510471000000022 s
[0] info: creation of merged mesh took 0.0011528260000002177 s
[0] info: merge properties into merged mesh took 0.0007124489999998929 s
[0] info: writing mesh took 0.012593230000000233 s
[0] info: Reading meshes took 0.016884719000000104 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023930300000007954 s
[0] info: Collection of 4542 nodes and computing offsets took 5.948999999949578e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002049583999999882 s
[0] info: Reset nodes in regular elements took 0.011516029000000039 s
[0] info: creation of merged mesh took 0.0011520039999999288 s
[0] info: merge properties into merged mesh took 0.0007110969999999384 s
[0] info: writing mesh took 0.011448607000000166 s
[0] info: Reading meshes took 0.01874944299999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023801099999998243 s
[0] info: Collection of 4542 nodes and computing offsets took 6.34899999996108e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020586979999999144 s
[0] info: Reset nodes in regular elements took 0.011487155000000193 s
[0] info: creation of merged mesh took 0.001158243999999975 s
[0] info: merge properties into merged mesh took 0.0007041869999999673 s
[0] info: writing mesh took 0.015926177999999958 s
[0] info: Reading meshes took 0.01977050899999999 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023692899999994133 s
[0] info: Collection of 4542 nodes and computing offsets took 6.449999999880163e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020517369999999424 s
[0] info: Reset nodes in regular elements took 0.011516218999999994 s
[0] info: creation of merged mesh took 0.001164173000000046 s
[0] info: merge properties into merged mesh took 0.0007109270000000834 s
[0] info: writing mesh took 0.013724073000000114 s
[0] info: Reading meshes took 0.01911056000000011 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002471040000000535 s
[0] info: Collection of 4542 nodes and computing offsets took 6.220000000167758e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002069704000000172 s
[0] info: Reset nodes in regular elements took 0.011539404000000086 s
[0] info: creation of merged mesh took 0.001178424999999983 s
[0] info: merge properties into merged mesh took 0.000709234000000114 s
[0] info: writing mesh took 0.01627559699999992 s
[0] info: Reading meshes took 0.018267854000000083 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023674800000006435 s
[0] info: Collection of 4542 nodes and computing offsets took 6.2699999998638845e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.00206269300000006 s
[0] info: Reset nodes in regular elements took 0.011508998000000048 s
[0] info: creation of merged mesh took 0.0011688999999999172 s
[0] info: merge properties into merged mesh took 0.000713350000000057 s
[0] info: writing mesh took 0.01346891699999997 s
[0] info: Reading meshes took 0.019065831999999894 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002418660000000905 s
[0] info: Collection of 4542 nodes and computing offsets took 6.009000000029019e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002051926999999898 s
[0] info: Reset nodes in regular elements took 0.011530710999999805 s
[0] info: creation of merged mesh took 0.0011682500000000928 s
[0] info: merge properties into merged mesh took 0.0006942009999999499 s
[0] info: writing mesh took 0.014366946999999852 s
[0] info: Reading meshes took 0.009673138999999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00017008699999987442 s
[0] info: Collection of 4542 nodes and computing offsets took 5.387999999939552e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0013565149999998916 s
[0] info: Reset nodes in regular elements took 0.006634736999999946 s
[0] info: creation of merged mesh took 0.0007445069999998388 s
[0] info: merge properties into merged mesh took 0.00048205000000001164 s
[0] info: writing mesh took 0.013089342000000004 s
[0] info: Reading meshes took 0.009462529999999969 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00015818000000011878 s
[0] info: Collection of 4542 nodes and computing offsets took 4.167000000165899e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0011798269999998556 s
[0] info: Reset nodes in regular elements took 0.006662278000000077 s
[0] info: creation of merged mesh took 0.000673939999999984 s
[0] info: merge properties into merged mesh took 0.0004724659999999492 s
[0] info: writing mesh took 0.015820066999999938 s
[0] info: Reading meshes took 0.016386124000000057 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002478249999999793 s
[0] info: Collection of 4542 nodes and computing offsets took 6.539999999999324e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002054291000000097 s
[0] info: Reset nodes in regular elements took 0.01147055099999994 s
[0] info: creation of merged mesh took 0.0007871319999999127 s
[0] info: merge properties into merged mesh took 0.0004719049999999392 s
[0] info: writing mesh took 0.01197094799999987 s
[0] info: Reading meshes took 0.01935625200000013 s
[0] info: Collection of 8298 regular elements and computing element map took 0.000252713000000071 s
[0] info: Collection of 4542 nodes and computing offsets took 5.80900000013429e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002054210999999917 s
[0] info: Reset nodes in regular elements took 0.011517321000000136 s
[0] info: creation of merged mesh took 0.0011552189999999296 s
[0] info: merge properties into merged mesh took 0.0007192090000001095 s
[0] info: writing mesh took 0.01303757300000008 s
[0] info: Reading meshes took 0.01644760699999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025252299999989347 s
[0] info: Collection of 4542 nodes and computing offsets took 7.121000000109845e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020702949999999998 s
[0] info: Reset nodes in regular elements took 0.009085068000000085 s
[0] info: creation of merged mesh took 0.0007031340000001052 s
[0] info: merge properties into merged mesh took 0.000472876000000122 s
[0] info: writing mesh took 0.01349859100000006 s
[0] info: Reading meshes took 0.018431131000000045 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002473140000001095 s
[0] info: Collection of 4542 nodes and computing offsets took 6.179000000106072e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020584160000001184 s
[0] info: Reset nodes in regular elements took 0.011466074000000104 s
[0] info: creation of merged mesh took 0.0011659859999999522 s
[0] info: merge properties into merged mesh took 0.0007166750000000555 s
[0] info: writing mesh took 0.017907738999999978 s
[0] info: Reading meshes took 0.016325552999999937 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024806600000015777 s
[0] info: Collection of 4542 nodes and computing offsets took 6.629999999896441e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002065717999999883 s
[0] info: Reset nodes in regular elements took 0.011478301999999996 s
[0] info: creation of merged mesh took 0.0007328600000000574 s
[0] info: merge properties into merged mesh took 0.000475189000000098 s
[0] info: writing mesh took 0.01330432699999995 s
[0] info: Reading meshes took 0.016617633999999937 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025393500000014946 s
[0] info: Collection of 4542 nodes and computing offsets took 7.400999999962465e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0021984290000001128 s
[0] info: Reset nodes in regular elements took 0.011524582999999922 s
[0] info: creation of merged mesh took 0.0012051449999999075 s
[0] info: merge properties into merged mesh took 0.0006620120000000451 s
[0] info: writing mesh took 0.011520375999999999 s
[0] info: Reading meshes took 0.019287436999999796 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024098500000002687 s
[0] info: Collection of 4542 nodes and computing offsets took 6.438999999858197e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020565839999999724 s
[0] info: Reset nodes in regular elements took 0.011411390999999993 s
[0] info: creation of merged mesh took 0.0011484500000000786 s
[0] info: merge properties into merged mesh took 0.0007124290000000144 s
[0] info: writing mesh took 0.014933384000000105 s
[0] info: Reading meshes took 0.019037478999999857 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002648920000001276 s
[0] info: Collection of 4542 nodes and computing offsets took 7.211000000006962e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020851079999999467 s
[0] info: Reset nodes in regular elements took 0.011535368999999962 s
[0] info: creation of merged mesh took 0.001215721000000114 s
[0] info: merge properties into merged mesh took 0.0007317489999998372 s
[0] info: writing mesh took 0.015073545999999993 s
[0] info: Reading meshes took 0.016898279999999932 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025142099999975187 s
[0] info: Collection of 4542 nodes and computing offsets took 6.59000000013954e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0022112290000000367 s
[0] info: Reset nodes in regular elements took 0.008293308999999915 s
[0] info: creation of merged mesh took 0.0007861599999998692 s
[0] info: merge properties into merged mesh took 0.000508369000000064 s
[0] info: writing mesh took 0.014877489999999938 s
[0] info: Reading meshes took 0.017639351999999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002488560000000195 s
[0] info: Collection of 4542 nodes and computing offsets took 6.840000000174484e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020716870000001553 s
[0] info: Reset nodes in regular elements took 0.011507085999999944 s
[0] info: creation of merged mesh took 0.0011777939999999543 s
[0] info: merge properties into merged mesh took 0.0007208409999999166 s
[0] info: writing mesh took 0.013269835000000008 s
[0] info: Reading meshes took 0.01619774900000004 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002578009999998354 s
[0] info: Collection of 4542 nodes and computing offsets took 7.160999999866746e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002061882000000015 s
[0] info: Reset nodes in regular elements took 0.011582028999999938 s
[0] info: creation of merged mesh took 0.0012088999999999572 s
[0] info: merge properties into merged mesh took 0.0007134710000000766 s
[0] info: writing mesh took 0.010411868000000046 s
[0] info: Reading meshes took 0.016867403000000003 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024901700000001803 s
[0] info: Collection of 4542 nodes and computing offsets took 7.1510000001495655e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020662680000000933 s
[0] info: Reset nodes in regular elements took 0.011506333999999896 s
[0] info: creation of merged mesh took 0.0009362269999999562 s
[0] info: merge properties into merged mesh took 0.00047674199999980793 s
[0] info: writing mesh took 0.014915687999999871 s
[0] info: Reading meshes took 0.01631017899999998 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00026161599999996454 s
[0] info: Collection of 4542 nodes and computing offsets took 7.000999999950963e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002068291999999916 s
[0] info: Reset nodes in regular elements took 0.01149486700000013 s
[0] info: creation of merged mesh took 0.0012113339999999528 s
[0] info: merge properties into merged mesh took 0.0007179669999999305 s
[0] info: writing mesh took 0.013775561000000103 s
[0] info: Reading meshes took 0.017499300000000106 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002561380000001279 s
[0] info: Collection of 4542 nodes and computing offsets took 6.6599999999361614e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002074431000000043 s
[0] info: Reset nodes in regular elements took 0.01150717499999998 s
[0] info: creation of merged mesh took 0.0008478839999999099 s
[0] info: merge properties into merged mesh took 0.00047142399999988704 s
[0] info: writing mesh took 0.014524754999999834 s
[0] info: Reading meshes took 0.019013483000000164 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025754000000000055 s
[0] info: Collection of 4542 nodes and computing offsets took 6.28999999996438e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002044807000000093 s
[0] info: Reset nodes in regular elements took 0.011404540000000019 s
[0] info: creation of merged mesh took 0.0011534069999998842 s
[0] info: merge properties into merged mesh took 0.0007118390000000474 s
[0] info: writing mesh took 0.013118826000000139 s
[0] info: Reading meshes took 0.018885178999999974 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024364899999995693 s
[0] info: Collection of 4542 nodes and computing offsets took 6.34899999996108e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020466289999998555 s
[0] info: Reset nodes in regular elements took 0.011527976999999856 s
[0] info: creation of merged mesh took 0.0011445439999999696 s
[0] info: merge properties into merged mesh took 0.0007052180000000075 s
[0] info: writing mesh took 0.016958911999999993 s
[0] info: Reading meshes took 0.017141147000000023 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00025275300000004997 s
[0] info: Collection of 4542 nodes and computing offsets took 7.020999999829414e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020619130000001373 s
[0] info: Reset nodes in regular elements took 0.011546384999999937 s
[0] info: creation of merged mesh took 0.0011640819999998442 s
[0] info: merge properties into merged mesh took 0.00047015199999989044 s
[0] info: writing mesh took 0.010347059000000103 s
[0] info: Reading meshes took 0.016240623000000065 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002505189999999491 s
[0] info: Collection of 4542 nodes and computing offsets took 7.61199999987916e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020564639999998136 s
[0] info: Reset nodes in regular elements took 0.01153278499999999 s
[0] info: creation of merged mesh took 0.0006997100000001311 s
[0] info: merge properties into merged mesh took 0.00045237500000006037 s
[0] info: writing mesh took 0.014647480999999907 s
[0] info: Reading meshes took 0.019760213999999943 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024034400000005895 s
[0] info: Collection of 4542 nodes and computing offsets took 6.390000000022766e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020543399999999323 s
[0] info: Reset nodes in regular elements took 0.011494066000000025 s
[0] info: creation of merged mesh took 0.0011523849999999225 s
[0] info: merge properties into merged mesh took 0.00071486300000001 s
[0] info: writing mesh took 0.016296257999999897 s
[0] info: Reading meshes took 0.01602459699999992 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002339540000000362 s
[0] info: Collection of 4542 nodes and computing offsets took 6.018999999968244e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020307050000001325 s
[0] info: Reset nodes in regular elements took 0.011486024000000317 s
[0] info: creation of merged mesh took 0.0011434719999998677 s
[0] info: merge properties into merged mesh took 0.0006735100000001548 s
[0] info: writing mesh took 0.010813956000000235 s
[0] info: Reading meshes took 0.01611863899999988 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00024078500000013214 s
[0] info: Collection of 4542 nodes and computing offsets took 5.928999999849083e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002099189000000168 s
[0] info: Reset nodes in regular elements took 0.008571520000000055 s
[0] info: creation of merged mesh took 0.0006722580000000367 s
[0] info: merge properties into merged mesh took 0.0004557700000000775 s
[0] info: writing mesh took 0.013037943999999912 s
[0] info: Reading meshes took 0.016024907000000033 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023116000000000803 s
[0] info: Collection of 4542 nodes and computing offsets took 6.0889999999869104e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020465600000001416 s
[0] info: Reset nodes in regular elements took 0.011451241000000056 s
[0] info: creation of merged mesh took 0.0011595060000000323 s
[0] info: merge properties into merged mesh took 0.0006856290000001319 s
[0] info: writing mesh took 0.016049764999999994 s
[0] info: Reading meshes took 0.019033573000000192 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023547600000006774 s
[0] info: Collection of 4542 nodes and computing offsets took 5.4579999999582185e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002035203000000152 s
[0] info: Reset nodes in regular elements took 0.011448267000000012 s
[0] info: creation of merged mesh took 0.0011355200000000565 s
[0] info: merge properties into merged mesh took 0.0006858480000002665 s
[0] info: writing mesh took 0.01244398499999999 s
[0] info: Reading meshes took 0.01818567900000012 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00021588699999997019 s
[0] info: Collection of 4542 nodes and computing offsets took 5.27799999994194e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020220929999998916 s
[0] info: Reset nodes in regular elements took 0.011469379000000002 s
[0] info: creation of merged mesh took 0.0011476679999999906 s
[0] info: merge properties into merged mesh took 0.0006673710000000277 s
[0] info: writing mesh took 0.012294068000000102 s
[0] info: Reading meshes took 0.019511586999999997 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002318110000001372 s
[0] info: Collection of 4542 nodes and computing offsets took 5.929000000071127e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020368740000000773 s
[0] info: Reset nodes in regular elements took 0.011452782999999966 s
[0] info: creation of merged mesh took 0.0011437420000000031 s
[0] info: merge properties into merged mesh took 0.0006768340000000705 s
[0] info: writing mesh took 0.014670946999999934 s
[0] info: Reading meshes took 0.015896514000000028 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023593700000001938 s
[0] info: Collection of 4542 nodes and computing offsets took 5.429000000223283e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020315260000001167 s
[0] info: Reset nodes in regular elements took 0.01144887700000008 s
[0] info: creation of merged mesh took 0.001151423999999901 s
[0] info: merge properties into merged mesh took 0.0006929790000000935 s
[0] info: writing mesh took 0.014700520999999966 s
[0] info: Reading meshes took 0.019041425000000167 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00032352000000002157 s
[0] info: Collection of 4542 nodes and computing offsets took 5.77900000009457e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020376549999998606 s
[0] info: Reset nodes in regular elements took 0.011444781000000237 s
[0] info: creation of merged mesh took 0.0011414389999999663 s
[0] info: merge properties into merged mesh took 0.0007000010000000056 s
[0] info: writing mesh took 0.011980031000000002 s
[0] info: Reading meshes took 0.01790640599999982 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022920700000006455 s
[0] info: Collection of 4542 nodes and computing offsets took 5.648999999996462e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020753540000000292 s
[0] info: Reset nodes in regular elements took 0.011446814000000138 s
[0] info: creation of merged mesh took 0.0011443629999998706 s
[0] info: merge properties into merged mesh took 0.0006784879999999216 s
[0] info: writing mesh took 0.011009282000000065 s
[0] info: Reading meshes took 0.01696053399999986 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022023300000006962 s
[0] info: Collection of 4542 nodes and computing offsets took 5.669000000096958e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020353529999999065 s
[0] info: Reset nodes in regular elements took 0.011396026999999975 s
[0] info: creation of merged mesh took 0.0010289489999999457 s
[0] info: merge properties into merged mesh took 0.0004330049999998753 s
[0] info: writing mesh took 0.009953051999999962 s
[0] info: Reading meshes took 0.019254668999999947 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023917200000012073 s
[0] info: Collection of 4542 nodes and computing offsets took 5.398000000100822e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020404099999999925 s
[0] info: Reset nodes in regular elements took 0.011459523999999943 s
[0] info: creation of merged mesh took 0.0011366009999997928 s
[0] info: merge properties into merged mesh took 0.0006941719999999929 s
[0] info: writing mesh took 0.015922663000000004 s
[0] info: Reading meshes took 0.017942801000000008 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002348059999999208 s
[0] info: Collection of 4542 nodes and computing offsets took 5.268000000002715e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002063836000000041 s
[0] info: Reset nodes in regular elements took 0.011459273000000048 s
[0] info: creation of merged mesh took 0.0011489599999998656 s
[0] info: merge properties into merged mesh took 0.0006946519999999623 s
[0] info: writing mesh took 0.015225396999999807 s
[0] info: Reading meshes took 0.016607438999999946 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002456420000001014 s
[0] info: Collection of 4542 nodes and computing offsets took 5.54800000007738e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020718280000000533 s
[0] info: Reset nodes in regular elements took 0.011491661999999847 s
[0] info: creation of merged mesh took 0.0011587349999999663 s
[0] info: merge properties into merged mesh took 0.0005189749999998661 s
[0] info: writing mesh took 0.011956805999999931 s
[0] info: Reading meshes took 0.018798997999999845 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023413499999991316 s
[0] info: Collection of 4542 nodes and computing offsets took 5.53799999991611e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002040248999999994 s
[0] info: Reset nodes in regular elements took 0.011460304000000088 s
[0] info: creation of merged mesh took 0.0011327260000000283 s
[0] info: merge properties into merged mesh took 0.0006805309999999842 s
[0] info: writing mesh took 0.015866195999999944 s
[0] info: Reading meshes took 0.019164871999999944 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002374700000000729 s
[0] info: Collection of 4542 nodes and computing offsets took 6.189000000045297e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002036984000000075 s
[0] info: Reset nodes in regular elements took 0.011409178000000075 s
[0] info: creation of merged mesh took 0.0011467970000000882 s
[0] info: merge properties into merged mesh took 0.0007018629999999693 s
[0] info: writing mesh took 0.017869059999999992 s
[0] info: Reading meshes took 0.018507336000000096 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023132000000014585 s
[0] info: Collection of 4542 nodes and computing offsets took 4.99800000008932e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002038055999999955 s
[0] info: Reset nodes in regular elements took 0.011446814999999777 s
[0] info: creation of merged mesh took 0.0011352190000000206 s
[0] info: merge properties into merged mesh took 0.000677596000000058 s
[0] info: writing mesh took 0.01329139800000001 s
[0] info: Reading meshes took 0.018524642999999896 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022234699999978957 s
[0] info: Collection of 4542 nodes and computing offsets took 5.609000000017517e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020416619999998886 s
[0] info: Reset nodes in regular elements took 0.011451311000000075 s
[0] info: creation of merged mesh took 0.0011298109999999806 s
[0] info: merge properties into merged mesh took 0.0006727090000000491 s
[0] info: writing mesh took 0.014823097000000063 s
[0] info: Reading meshes took 0.019569042999999953 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002336130000000214 s
[0] info: Collection of 4542 nodes and computing offsets took 5.668000000014217e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020314260000000584 s
[0] info: Reset nodes in regular elements took 0.011436809000000103 s
[0] info: creation of merged mesh took 0.0011288190000000586 s
[0] info: merge properties into merged mesh took 0.0006776660000000767 s
[0] info: writing mesh took 0.01445047300000013 s
[0] info: Reading meshes took 0.019648835000000142 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022756400000001342 s
[0] info: Collection of 4542 nodes and computing offsets took 5.228000000023769e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002041501999999973 s
[0] info: Reset nodes in regular elements took 0.01143086999999987 s
[0] info: creation of merged mesh took 0.001128018000000175 s
[0] info: merge properties into merged mesh took 0.0006732199999999189 s
[0] info: writing mesh took 0.015917934999999828 s
[0] info: Reading meshes took 0.019673072000000014 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022792499999990667 s
[0] info: Collection of 4542 nodes and computing offsets took 6.089000000208955e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002021081000000091 s
[0] info: Reset nodes in regular elements took 0.011427494999999954 s
[0] info: creation of merged mesh took 0.0011252840000000042 s
[0] info: merge properties into merged mesh took 0.0006791289999998895 s
[0] info: writing mesh took 0.014187804999999942 s
[0] info: Reading meshes took 0.01848181800000015 s
[0] info: Collection of 8298 regular elements and computing element map took 0.0002213050000001715 s
[0] info: Collection of 4542 nodes and computing offsets took 5.609000000017517e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002032788000000174 s
[0] info: Reset nodes in regular elements took 0.011410389999999992 s
[0] info: creation of merged mesh took 0.0011386540000000167 s
[0] info: merge properties into merged mesh took 0.0006744410000001366 s
[0] info: writing mesh took 0.011925098999999939 s
[0] info: Reading meshes took 0.019102618000000016 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023037900000000278 s
[0] info: Collection of 4542 nodes and computing offsets took 5.558000000016605e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020281809999997957 s
[0] info: Reset nodes in regular elements took 0.011450630999999989 s
[0] info: creation of merged mesh took 0.0011281690000000122 s
[0] info: merge properties into merged mesh took 0.0006783970000001638 s
[0] info: writing mesh took 0.010781976999999943 s
[0] info: Reading meshes took 0.018619775999999977 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022550200000015508 s
[0] info: Collection of 4542 nodes and computing offsets took 5.097999999925662e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.0020386079999998863 s
[0] info: Reset nodes in regular elements took 0.011428787000000051 s
[0] info: creation of merged mesh took 0.0011316729999999442 s
[0] info: merge properties into merged mesh took 0.000678196999999825 s
[0] info: writing mesh took 0.01300283999999996 s

png

ref_base = "HM3d_VPF_A_Gneiss_ts_78_t_3500_000000"(click to toggle)
ref_base = "HM3d_VPF_A_Gneiss_ts_78_t_3500_000000"
expected_dir = Path("expected")
out_dir = Path(out_dir)
series_prefix = ref_base.split("_ts_")[0]
pvd_path = out_dir.joinpath(f"{series_prefix}.pvd")


def last_pvtu_from_series(pvd: Path, prefix: str) -> Path:
    ds = ET.parse(pvd).getroot().findall(".//DataSet")
    ds = [
        d
        for d in ds
        if d.attrib.get("file", "").startswith(prefix)
        and d.attrib["file"].endswith(".pvtu")
    ]
    ds.sort(key=lambda d: float(d.attrib.get("timestep", "0")))
    if not ds:
        msg = f"No matching DataSet for '{prefix}' in {pvd}"
        raise RuntimeError(msg)
    return (pvd.parent.joinpath(ds[-1].attrib["file"])).resolve()


ref_pvtu = expected_dir.joinpath(f"{ref_base}.pvtu")
ref_vtu = out_dir / f"{ref_base}.vtu"
run(["pvtu2vtu", "-i", str(ref_pvtu), "-o", str(ref_vtu)], check=True)

last_pvtu = last_pvtu_from_series(pvd_path, series_prefix)
last_vtu = last_pvtu.with_suffix(".vtu")
run(["pvtu2vtu", "-i", str(last_pvtu), "-o", str(last_vtu)], check=True)


# ---------------- VTU comparer ----------------
def read_mesh(path):
    m = meshio.read(str(path))
    pts = m.points.astype(float)
    if pts.shape[1] == 2:
        pts = np.c_[pts, np.zeros(len(pts))]
    return pts, m.point_data


def sort_index_by_points(pts):
    return np.lexsort((pts[:, 2], pts[:, 1], pts[:, 0]))


def reorder_point_data(pd, idx):
    out = {}
    for k, v in pd.items():
        arr = np.asarray(v)
        if arr.ndim == 1:
            arr = arr[:, None]
        out[k] = arr[idx]
    return out


def safe_max_rel_diff(a, b):
    denom = np.maximum(np.abs(b), 1e-12)
    return float(np.max(np.abs((a - b) / denom)))


def compare_arrays(a, b, rtol=1e-6, atol=1e-8, equal_nan=False):
    a = np.asarray(a)
    b = np.asarray(b)
    if a.ndim == 1:
        a = a[:, None]
    if b.ndim == 1:
        b = b[:, None]
    if a.shape != b.shape:
        return {
            "status": "SHAPE MISMATCH",
            "a_shape": a.shape,
            "b_shape": b.shape,
        }
    try:
        np.testing.assert_allclose(a, b, rtol=rtol, atol=atol, equal_nan=equal_nan)
        return {"status": "MATCH"}
    except AssertionError:
        return {
            "status": "MISMATCH",
            "max_abs_diff": float(np.max(np.abs(a - b))),
            "max_rel_diff": safe_max_rel_diff(a, b),
            "count_not_close": int(
                np.sum(~np.isclose(a, b, rtol=rtol, atol=atol, equal_nan=equal_nan))
            ),
            "a_min": float(np.nanmin(a)),
            "a_max": float(np.nanmax(a)),
            "b_min": float(np.nanmin(b)),
            "b_max": float(np.nanmax(b)),
        }


def compare_vtu_files(
    fileA, fileB, array_names=None, rtol=1e-6, atol=1e-8, equal_nan=False
):
    ptsA, pdA = read_mesh(fileA)
    ptsB, pdB = read_mesh(fileB)

    if len(ptsA) != len(ptsB):
        return {
            "fatal": "Different point counts",
            "A_points": len(ptsA),
            "B_points": len(ptsB),
        }

    idxA = sort_index_by_points(ptsA)
    idxB = sort_index_by_points(ptsB)
    ptsA_sorted = ptsA[idxA]
    ptsB_sorted = ptsB[idxB]

    # looser atol for float noise in coordinates
    if not np.allclose(ptsA_sorted, ptsB_sorted, rtol=0.0, atol=1e-9):
        return {"fatal": "Point coordinate mismatch even after sorting"}

    pdA_sorted = reorder_point_data(pdA, idxA)
    pdB_sorted = reorder_point_data(pdB, idxB)

    if array_names is None:
        names = sorted(set(pdA_sorted.keys()) & set(pdB_sorted.keys()))
    else:
        names = [n for n in array_names if n in pdA_sorted and n in pdB_sorted]

    out = {"point_data": {}, "compared_arrays": names}
    for name in names:
        out["point_data"][name] = compare_arrays(
            pdA_sorted[name], pdB_sorted[name], rtol, atol, equal_nan
        )
    return out


res = compare_vtu_files(
    ref_vtu,
    last_vtu,
    array_names=["displacement"],
    rtol=1e-4,
    atol=1e-4,
    equal_nan=True,
)

for name, result in res["point_data"].items():
    assert result["status"] == "MATCH", f"Field '{name}' mismatch: {result}"
[0] info: Reading meshes took 0.01820135300000003 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00022898700000006933 s
[0] info: Collection of 4546 nodes and computing offsets took 5.568000000177875e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002044686999999934 s
[0] info: Reset nodes in regular elements took 0.011387084000000103 s
[0] info: creation of merged mesh took 0.0011422599999999505 s
[0] info: merge properties into merged mesh took 0.000595171000000061 s
[0] info: writing mesh took 0.0179886709999999 s
[0] info: Reading meshes took 0.019789428000000164 s
[0] info: Collection of 8298 regular elements and computing element map took 0.00023772000000010785 s
[0] info: Collection of 4542 nodes and computing offsets took 6.05899999994719e-06 s
[0] info: Make nodes unique (4201 unique nodes) / computing map took 0.002029092999999982 s
[0] info: Reset nodes in regular elements took 0.011419052000000152 s
[0] info: creation of merged mesh took 0.0011401060000000296 s
[0] info: merge properties into merged mesh took 0.0007059190000000548 s
[0] info: writing mesh took 0.015593514000000086 s

This article was written by Mostafa Mollaali. If you are missing something or you find an error please let us know.
Generated with Hugo 0.154.5 in CI job 742973 | Last revision: April 3, 2025