import os…
(click to toggle)
import os
import sys
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_intact,
mesh_GreatCell_VPF,
plot_contourf_with_annotations,
)
from ogs_model_runner import SingleOGSModel # noqa: E402
from Plotter import Plotter # noqa: E402def 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)The GREAT cell is a poly-axial rock-testing device that reproduces subsurface conditions down to 3.5 km depth on 200 mm-diameter samples. It imposes a rotating stress field, injects fluid through a central borehole, and records both fiber-optic strain and pore-pressure data—providing a rich dataset for validating coupled hydro-mechanical models. For full details, see the GREAT cell benchmark docs: www.opengeosys.org/docs/benchmarks/small-deformations/greatcellm/
We distinguish two main types of benchmarks: intact and fractured rock tests. In the first type, an intact rock sample is subjected to rotating external stress conditions ($\texttt{M}_1$) and fluid is injected from a central borehole ($\texttt{HM}_1$):
For the fractured rock samples, two subtypes are also considered: static and propagating fractures. Static fractures are studied as full ($\texttt{M}_{2a}$, $\texttt{HM}_{2a}$) and half-fractured ($\texttt{M}_{2b}$, $\texttt{HM}_{2b}$) versions to have a symmetric and non-symmetric case. Again, mechanical and hydro-mechanical versions are studied, the latter with fluid injection into the rock fracture:
To run this benchmark, you need to have OGS built with PETSc and PIP support. The following steps outline the process:
Configure & build OGS with PETSc & PIP
cmake -S ogs-source -B build-folder --preset release-petsc \
-DOGS_USE_PIP=ONRun the benchmark
cd build-folder/release-petsc
ninja # OR make -j
ctest -R nb-HMPhaseField/GreatCellVerify output files
ls build-folder/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellThe 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": 50, # 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": 4.167e-7, # Injection flow rate (m³/s)
"p_outlet": 3.45e6, # Outlet pressure (Pa)
},
"rubber_sheath": {
"young_modulus": 0.1e9, # Young's modulus (Pa)
"poisson_ratio": 0.4, # Poisson's ratio
"porosity": 0.001, # Porosity
"permeability": 1e-17, # Permeability (m²)
"density": 1500, # Density (kg/m³)
"biot": 0.0, # 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": 30, # 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": 4.167e-7, # Injection flow rate (m³/s)
"p_outlet": 3.45e6, # Outlet pressure (Pa)
},
"rubber_sheath": {
"young_modulus": 0.1e9, # Young's modulus (Pa)
"poisson_ratio": 0.4, # Poisson's ratio
"porosity": 0.001, # Porosity
"permeability": 1e-17, # Permeability (m²)
"density": 1500, # Density (kg/m³)
"biot": 0.0, # Biot coefficient
},
},
}
material_names = list(materials.keys())| Marker | PEE1 Angle to $\sigma_2$ | PEE1 & 1a | PEE2 & 2a | PEE3 & 3a | PEE4 & 4a | PEE5 & 5a | PEE6 & 6a | PEE7 & 7a | PEE8 & 8a |
|---|---|---|---|---|---|---|---|---|---|
| A | 0° | 10.0 | 6.64 | 4.46 | 1.17 | 1.0 | 3.82 | 7.80 | 9.95 |
| E | 22.5° | 9.95 | 10.0 | 6.64 | 4.46 | 1.17 | 1.0 | 3.82 | 7.80 |
| B | 45.0° | 7.80 | 9.95 | 10.0 | 6.64 | 4.46 | 1.17 | 1.0 | 3.82 |
| F | 67.5° | 3.82 | 7.80 | 9.95 | 10.0 | 6.64 | 4.46 | 1.17 | 1.0 |
| 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.
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=True)
):
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()
The boundary conditions applied in the simulation include both Dirichlet and Neumann conditions.
Dirichlet conditions (displacement control): \begin{equation*} \begin{cases} u_x(0, y) = 0, \quad u_y(0, y) = 0 & \quad \text{for } y = -0.09894 \text{ m}, \ u_y(x, 0) = 0, & \quad \text{for } x = -0.09894 \text{ m}. \end{cases} \end{equation*}
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}$$h = 0.005…
(click to toggle)
h = 0.005
meshname = "GreatCell"
mesh_path = Path(out_dir, "mesh_intact").resolve()
print(mesh_path)/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact
msh_bc = mesh_GreatCell_intact(…
(click to toggle)
msh_bc = mesh_GreatCell_intact(
lc=0.005,
lc2=h,
r0=0.097,
r1=0.094,
r2=0.090,
r3=0.065,
out_dir=mesh_path,
meshname=meshname,
mode="BC",
)
ot.Meshes.from_gmsh(msh_bc, dim=[0, 1], reindex=True, log=False).save(
mesh_path, overwrite=True
)Info : Meshing 1D...
Info : [ 0%] Meshing curve 101 (Line)
Info : [ 10%] Meshing curve 102 (Line)
Info : [ 10%] Meshing curve 103 (Line)
Info : [ 10%] Meshing curve 104 (Line)
Info : [ 10%] Meshing curve 105 (Line)
Info : [ 10%] Meshing curve 106 (Line)
Info : [ 10%] Meshing curve 107 (Line)
Info : [ 10%] Meshing curve 108 (Line)
Info : [ 10%] Meshing curve 109 (Line)
Info : [ 20%] Meshing curve 110 (Line)
Info : [ 20%] Meshing curve 111 (Line)
Info : [ 20%] Meshing curve 112 (Line)
Info : [ 20%] Meshing curve 113 (Line)
Info : [ 20%] Meshing curve 114 (Line)
Info : [ 20%] Meshing curve 115 (Line)
Info : [ 20%] Meshing curve 116 (Line)
Info : [ 20%] Meshing curve 117 (Line)
Info : [ 30%] Meshing curve 118 (Line)
Info : [ 30%] Meshing curve 119 (Line)
Info : [ 30%] Meshing curve 120 (Line)
Info : [ 30%] Meshing curve 121 (Line)
Info : [ 30%] Meshing curve 122 (Line)
Info : [ 30%] Meshing curve 123 (Line)
Info : [ 30%] Meshing curve 124 (Line)
Info : [ 30%] Meshing curve 125 (Line)
Info : [ 40%] Meshing curve 126 (Line)
Info : [ 40%] Meshing curve 127 (Line)
Info : [ 40%] Meshing curve 128 (Line)
Info : [ 40%] Meshing curve 129 (Line)
Info : [ 40%] Meshing curve 130 (Line)
Info : [ 40%] Meshing curve 131 (Line)
Info : [ 40%] Meshing curve 132 (Line)
Info : [ 40%] Meshing curve 133 (Line)
Info : [ 50%] Meshing curve 134 (Line)
Info : [ 50%] Meshing curve 135 (Line)
Info : [ 50%] Meshing curve 136 (Line)
Info : [ 50%] Meshing curve 137 (Line)
Info : [ 50%] Meshing curve 138 (Line)
Info : [ 50%] Meshing curve 139 (Line)
Info : [ 50%] Meshing curve 140 (Line)
Info : [ 50%] Meshing curve 141 (Line)
Info : [ 60%] Meshing curve 142 (Line)
Info : [ 60%] Meshing curve 143 (Line)
Info : [ 60%] Meshing curve 144 (Line)
Info : [ 60%] Meshing curve 145 (Line)
Info : [ 60%] Meshing curve 146 (Line)
Info : [ 60%] Meshing curve 147 (Line)
Info : [ 60%] Meshing curve 148 (Line)
Info : [ 60%] Meshing curve 149 (Line)
Info : [ 70%] Meshing curve 150 (Line)
Info : [ 70%] Meshing curve 151 (Line)
Info : [ 70%] Meshing curve 152 (Line)
Info : [ 70%] Meshing curve 153 (Line)
Info : [ 70%] Meshing curve 154 (Line)
Info : [ 70%] Meshing curve 155 (Line)
Info : [ 70%] Meshing curve 156 (Line)
Info : [ 70%] Meshing curve 157 (Line)
Info : [ 80%] Meshing curve 158 (Line)
Info : [ 80%] Meshing curve 159 (Line)
Info : [ 80%] Meshing curve 160 (Line)
Info : [ 80%] Meshing curve 161 (Line)
Info : [ 80%] Meshing curve 162 (Line)
Info : [ 80%] Meshing curve 163 (Line)
Info : [ 80%] Meshing curve 164 (Line)
Info : [ 80%] Meshing curve 1234 (Line)
Info : [ 90%] Meshing curve 3005 (Circle)
Info : [ 90%] Meshing curve 3006 (Circle)
Info : [ 90%] Meshing curve 3007 (Circle)
Info : [ 90%] Meshing curve 3008 (Circle)
Info : [ 90%] Meshing curve 3015 (Circle)
Info : [ 90%] Meshing curve 3016 (Circle)
Info : [ 90%] Meshing curve 3017 (Circle)
Info : [ 90%] Meshing curve 3018 (Circle)
Info : [100%] Meshing curve 3025 (Circle)
Info : [100%] Meshing curve 3026 (Circle)
Info : [100%] Meshing curve 3027 (Circle)
Info : [100%] Meshing curve 3028 (Circle)
Info : [100%] Meshing curve 3035 (Circle)
Info : [100%] Meshing curve 3036 (Circle)
Info : [100%] Meshing curve 3037 (Circle)
Info : [100%] Meshing curve 3038 (Circle)
Info : Done meshing 1D (Wall 0.00319988s, CPU 0.003699s)
Info : Meshing 2D...
Info : [ 0%] Meshing surface 200 (Plane, Delaunay)
Info : [ 0%] Blossom: 2264 internal 88 closed
Info : [ 0%] Blossom recombination completed (Wall 0.0133563s, CPU 0.011316s): 740 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.776443, min Q = 0.460287
Info : [ 30%] Meshing surface 201 (Plane, Delaunay)
Info : [ 30%] Blossom: 2128 internal 208 closed
Info : [ 30%] Blossom recombination completed (Wall 0.0110373s, CPU 0.011154s): 744 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.715401, min Q = 0.462407
Info : [ 50%] Meshing surface 202 (Plane, Delaunay)
Info : [ 50%] Blossom: 600 internal 240 closed
Info : [ 50%] Blossom recombination completed (Wall 0.00190155s, CPU 0.001894s): 120 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.983333, min Q = 0.983333
Info : [ 70%] Meshing surface 203 (Plane, Delaunay)
Info : [ 70%] Blossom: 344 internal 248 closed
Info : [ 70%] Blossom recombination completed (Wall 0.00160562s, CPU 0.001614s): 132 quads, 16 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.59063, min Q = 0.274456
Info : [ 90%] Meshing surface 204 (Plane, Delaunay)
Info : Done meshing 2D (Wall 0.0562338s, CPU 0.054328s)
Info : 2097 nodes 3002 elements
Info : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/GreatCell_BC.msh'...
Info : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/GreatCell_BC.msh'
[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/mesh_intact/domain.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/Inlet.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_right.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_top.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_left.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_bottom.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE1.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE2.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE3.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE4.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE5.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE6.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE7.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE8.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE1a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE2a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE3a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE4a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE5a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE6a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE7a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE8a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS1.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS2.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS3.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS4.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS5.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS6.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS7.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS8.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS1a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS2a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS3a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS4a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS5a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS6a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS7a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS8a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/meta.yaml')]
msh_domain = mesh_GreatCell_intact(…
(click to toggle)
msh_domain = mesh_GreatCell_intact(
lc=0.005,
lc2=h,
r0=0.097,
r1=0.094,
r2=0.090,
r3=0.065,
out_dir=mesh_path,
meshname=meshname,
mode="domain",
)
meshes_intact = ot.Meshes.from_gmsh(msh_domain, dim=[1, 2], reindex=True, log=False)
meshes_intact.save(mesh_path, overwrite=True)Info : Meshing 1D...
Info : [ 0%] Meshing curve 101 (Line)
Info : [ 10%] Meshing curve 102 (Line)
Info : [ 10%] Meshing curve 103 (Line)
Info : [ 10%] Meshing curve 104 (Line)
Info : [ 10%] Meshing curve 105 (Line)
Info : [ 10%] Meshing curve 106 (Line)
Info : [ 10%] Meshing curve 107 (Line)
Info : [ 10%] Meshing curve 108 (Line)
Info : [ 10%] Meshing curve 109 (Line)
Info : [ 20%] Meshing curve 110 (Line)
Info : [ 20%] Meshing curve 111 (Line)
Info : [ 20%] Meshing curve 112 (Line)
Info : [ 20%] Meshing curve 113 (Line)
Info : [ 20%] Meshing curve 114 (Line)
Info : [ 20%] Meshing curve 115 (Line)
Info : [ 20%] Meshing curve 116 (Line)
Info : [ 20%] Meshing curve 117 (Line)
Info : [ 30%] Meshing curve 118 (Line)
Info : [ 30%] Meshing curve 119 (Line)
Info : [ 30%] Meshing curve 120 (Line)
Info : [ 30%] Meshing curve 121 (Line)
Info : [ 30%] Meshing curve 122 (Line)
Info : [ 30%] Meshing curve 123 (Line)
Info : [ 30%] Meshing curve 124 (Line)
Info : [ 30%] Meshing curve 125 (Line)
Info : [ 40%] Meshing curve 126 (Line)
Info : [ 40%] Meshing curve 127 (Line)
Info : [ 40%] Meshing curve 128 (Line)
Info : [ 40%] Meshing curve 129 (Line)
Info : [ 40%] Meshing curve 130 (Line)
Info : [ 40%] Meshing curve 131 (Line)
Info : [ 40%] Meshing curve 132 (Line)
Info : [ 40%] Meshing curve 133 (Line)
Info : [ 50%] Meshing curve 134 (Line)
Info : [ 50%] Meshing curve 135 (Line)
Info : [ 50%] Meshing curve 136 (Line)
Info : [ 50%] Meshing curve 137 (Line)
Info : [ 50%] Meshing curve 138 (Line)
Info : [ 50%] Meshing curve 139 (Line)
Info : [ 50%] Meshing curve 140 (Line)
Info : [ 50%] Meshing curve 141 (Line)
Info : [ 60%] Meshing curve 142 (Line)
Info : [ 60%] Meshing curve 143 (Line)
Info : [ 60%] Meshing curve 144 (Line)
Info : [ 60%] Meshing curve 145 (Line)
Info : [ 60%] Meshing curve 146 (Line)
Info : [ 60%] Meshing curve 147 (Line)
Info : [ 60%] Meshing curve 148 (Line)
Info : [ 60%] Meshing curve 149 (Line)
Info : [ 70%] Meshing curve 150 (Line)
Info : [ 70%] Meshing curve 151 (Line)
Info : [ 70%] Meshing curve 152 (Line)
Info : [ 70%] Meshing curve 153 (Line)
Info : [ 70%] Meshing curve 154 (Line)
Info : [ 70%] Meshing curve 155 (Line)
Info : [ 70%] Meshing curve 156 (Line)
Info : [ 70%] Meshing curve 157 (Line)
Info : [ 80%] Meshing curve 158 (Line)
Info : [ 80%] Meshing curve 159 (Line)
Info : [ 80%] Meshing curve 160 (Line)
Info : [ 80%] Meshing curve 161 (Line)
Info : [ 80%] Meshing curve 162 (Line)
Info : [ 80%] Meshing curve 163 (Line)
Info : [ 80%] Meshing curve 164 (Line)
Info : [ 80%] Meshing curve 1234 (Line)
Info : [ 90%] Meshing curve 3005 (Circle)
Info : [ 90%] Meshing curve 3006 (Circle)
Info : [ 90%] Meshing curve 3007 (Circle)
Info : [ 90%] Meshing curve 3008 (Circle)
Info : [ 90%] Meshing curve 3015 (Circle)
Info : [ 90%] Meshing curve 3016 (Circle)
Info : [ 90%] Meshing curve 3017 (Circle)
Info : [ 90%] Meshing curve 3018 (Circle)
Info : [100%] Meshing curve 3025 (Circle)
Info : [100%] Meshing curve 3026 (Circle)
Info : [100%] Meshing curve 3027 (Circle)
Info : [100%] Meshing curve 3028 (Circle)
Info : [100%] Meshing curve 3035 (Circle)
Info : [100%] Meshing curve 3036 (Circle)
Info : [100%] Meshing curve 3037 (Circle)
Info : [100%] Meshing curve 3038 (Circle)
Info : Done meshing 1D (Wall 0.00319827s, CPU 0.004022s)
Info : Meshing 2D...
Info : [ 0%] Meshing surface 200 (Plane, Delaunay)
Info : [ 0%] Blossom: 2264 internal 88 closed
Info : [ 0%] Blossom recombination completed (Wall 0.0134631s, CPU 0.013398s): 740 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.776443, min Q = 0.460287
Info : [ 30%] Meshing surface 201 (Plane, Delaunay)
Info : [ 30%] Blossom: 2128 internal 208 closed
Info : [ 30%] Blossom recombination completed (Wall 0.0111294s, CPU 0.011123s): 744 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.715401, min Q = 0.462407
Info : [ 50%] Meshing surface 202 (Plane, Delaunay)
Info : [ 50%] Blossom: 600 internal 240 closed
Info : [ 50%] Blossom recombination completed (Wall 0.00188283s, CPU 0.001898s): 120 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.983333, min Q = 0.983333
Info : [ 70%] Meshing surface 203 (Plane, Delaunay)
Info : [ 70%] Blossom: 344 internal 248 closed
Info : [ 70%] Blossom recombination completed (Wall 0.00165035s, CPU 0.00164s): 132 quads, 16 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.59063, min Q = 0.274456
Info : [ 90%] Meshing surface 204 (Plane, Delaunay)
Info : Done meshing 2D (Wall 0.0567102s, CPU 0.056721s)
Info : 2097 nodes 3002 elements
Info : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/GreatCell_domain.msh'...
Info : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/GreatCell_domain.msh'
[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/mesh_intact/domain.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/Central_sample.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/OuterPart_sample.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/Rubber_sheath.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/meta.yaml')]
plot_contourf_with_annotations(meshes_intact)
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",
"Inlet.vtu",
]
# Strip cell-type bulk_element_ids from 0D point meshes before identifySubdomains
for name in ["Inlet.vtu"]:
p = mesh_dir / name
m = meshio.read(str(p))
m.cell_data.pop("bulk_element_ids", None)
meshio.write(str(p), m)
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.01344 s
[0] info: MeshNodeSearcher construction time: 0.000133853 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 1.1297e-05 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS1' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000159251 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 1.392e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS1a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000124779 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.81e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS2' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000110287 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 8.42e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS2a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000109776 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 7.21e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS3' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000108534 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 7.51e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS3a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000108114 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 1.162e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS4' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000108554 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 8.72e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS4a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000109526 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 1.142e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS5' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000108785 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 9.71e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS5a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000206172 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 1.202e-06 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS6' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000109315 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 7.51e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS6a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000109326 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 8.82e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS7' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000110056 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 8.12e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS7a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000106781 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 7.61e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS8' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.00010599 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.32e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'DSS8a' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 0.000106601 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.272e-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.000106792 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.062e-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.000108244 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.462e-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.000110277 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 1.011e-06 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.000108224 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 1.002e-06 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.000107943 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 1.061e-06 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.000107823 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 1.012e-06 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.000108194 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 1.062e-06 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.000108104 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 1.012e-06 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.000111189 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.212e-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.000114284 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 9.22e-07 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.000106732 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 1.372e-06 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.000108865 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.272e-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.000107032 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 9.12e-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.000108454 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.011e-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.000110147 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 1.072e-06 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.000108755 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 4.21e-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.000107332 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 4.5e-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.000114434 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.5e-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.000107482 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 3.91e-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.000107363 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 5.2e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'Inlet' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 9.8649e-05 s
[0] info: identifySubdomains time: 0.00466956 s
[0] info: writing time: 0.0375967 s
[0] info: Entire run time: -2.01401e+07 s
CompletedProcess(args=['identifySubdomains', '-f', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/domain.vtu', '--', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/DSS8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/PEE8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_bottom.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_left.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_right.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/p_top.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact/Inlet.vtu'], returncode=0)
The primary objective of the first benchmark exercise is to evaluate the mechanical deformation of different rock samples in the GREAT cell under various boundary conditions in a 2D plane strain setup.
This benchmark considers a plane strain triaxial stress condition, where the in-plane principal stresses are defined as:
$$ \sigma_2 = 10\ \text{MPa},\quad \sigma_3 = 1\ \text{MPa} $$The out-of-plane stress component, $\sigma_1$, is governed by the plane strain constraint:
$$ \sigma_1 = \nu (\sigma_2 + \sigma_3) $$This loading condition is applied to both Greywacke and Gneiss samples
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 0
model_type = "M1"
output_prefix = "M1_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("M1_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))# Create SingleOGSModel…
(click to toggle)
# Create SingleOGSModel
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
)
# Run simulations
vtu_files_dict = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path,
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,
)[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/M1_VPF.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/M1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_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/M1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_B.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_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/M1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_C.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M1_VPF_C.prj']
json_path = Path("./external_data_dict.py").resolve()…
(click to toggle)
json_path = Path("./external_data_dict.py").resolve()
print(f"[DEBUG] Trying path: {json_path}")
if json_path.exists():
from external_data_dict import external_data
else:
print("[WARNING] External data dict not found! Skipping...")
external_data = None
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="M1")
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict,
model_type="M1",
ylim_range=[-7.5, 2.5],
layout="subplots",
external_data=external_data["strain"],
)[DEBUG] Trying path: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell/external_data_dict.py
[WARNING] External data dict not found! Skipping...
plotter.plot_field_variables(vtu_files_dict, show_phasefield=False, show_pressure=False)Load: A, File 0, Benchmark: M1, Material: Gneiss
Load: A, File 1, Benchmark: M1, Material: Greywacke
Load: B, File 0, Benchmark: M1, Material: Gneiss
Load: B, File 1, Benchmark: M1, Material: Greywacke
Load: C, File 0, Benchmark: M1, Material: Gneiss
Load: C, File 1, Benchmark: M1, Material: Greywacke
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 3000s equilibrium phase under mechanical loading to stabilize initial conditions, followed by a 500s fluid injection phase to model fluid flow. This loading condition is applied to both Greywacke and Gneiss samples
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 0
model_type = "HM1"
output_prefix = "HM1_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],
}
for p in materials.values():
p["fluid"][
"injectionFlowRate_Inlet"
] = 2.085e-6 # Injection flow rate m³/s (125 ml/min)
prj_file = Path("HM1_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))# Create SingleOGSModel…
(click to toggle)
# Create SingleOGSModel
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
)
# Run simulations
vtu_files_dict_HM = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path,
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,
)[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/HM1_VPF.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/HM1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_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/HM1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_B.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_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/HM1_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.01 based on mesh size 0.005
ls 0.01
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_C.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.01 based on mesh size 0.005
ls 0.01
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 1 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '1', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_intact', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM1_VPF_C.prj']
json_path = Path("./external_data_dict.py").resolve()…
(click to toggle)
json_path = Path("./external_data_dict.py").resolve()
print(f"[DEBUG] Trying path: {json_path}")
if json_path.exists():
from external_data_dict import external_data
else:
print("[WARNING] External data dict not found! Skipping...")
external_data = None
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="HM1")
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict_HM,
model_type="HM1",
ylim_range=[-7.5, 2.5],
layout="subplots",
external_data=external_data["strain"],
)[DEBUG] Trying path: /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/ogs/Tests/Data/HMPhaseField/GreatCell/external_data_dict.py
[WARNING] External data dict not found! Skipping...
plotter.plot_field_variables(vtu_files_dict_HM, show_phasefield=False)Load: A, File 0, Benchmark: HM1, Material: Gneiss
Load: A, File 1, Benchmark: HM1, Material: Greywacke
Load: B, File 0, Benchmark: HM1, Material: Gneiss
Load: B, File 1, Benchmark: HM1, Material: Greywacke
Load: C, File 0, Benchmark: HM1, Material: Gneiss
Load: C, File 1, Benchmark: HM1, Material: Greywacke
h = 0.001…
(click to toggle)
h = 0.001
meshname = "GreatCell"
mesh_path_VPF = Path(out_dir, "mesh_GreatCell_VPF").resolve()msh_bc_VPF = mesh_GreatCell_VPF(…
(click to toggle)
msh_bc_VPF = mesh_GreatCell_VPF(
lc2=h,
lc=20 * h,
r0=0.097,
r1=0.094,
r2=0.090,
r3=0.065,
out_dir=mesh_path_VPF,
meshname=meshname,
mode="BC",
)
ot.Meshes.from_gmsh(msh_bc_VPF, dim=[0, 1], reindex=True, log=False).save(
mesh_path_VPF, overwrite=True
)Info : Meshing 1D...
Info : [ 0%] Meshing curve 101 (Line)
Info : [ 10%] Meshing curve 102 (Line)
Info : [ 10%] Meshing curve 103 (Line)
Info : [ 10%] Meshing curve 104 (Line)
Info : [ 10%] Meshing curve 105 (Line)
Info : [ 10%] Meshing curve 106 (Line)
Info : [ 10%] Meshing curve 107 (Line)
Info : [ 10%] Meshing curve 108 (Line)
Info : [ 10%] Meshing curve 109 (Line)
Info : [ 10%] Meshing curve 110 (Line)
Info : [ 10%] Meshing curve 111 (Line)
Info : [ 20%] Meshing curve 112 (Line)
Info : [ 20%] Meshing curve 113 (Line)
Info : [ 20%] Meshing curve 114 (Line)
Info : [ 20%] Meshing curve 115 (Line)
Info : [ 20%] Meshing curve 116 (Line)
Info : [ 20%] Meshing curve 117 (Line)
Info : [ 20%] Meshing curve 118 (Line)
Info : [ 20%] Meshing curve 119 (Line)
Info : [ 20%] Meshing curve 120 (Line)
Info : [ 20%] Meshing curve 121 (Line)
Info : [ 20%] Meshing curve 122 (Line)
Info : [ 30%] Meshing curve 123 (Line)
Info : [ 30%] Meshing curve 124 (Line)
Info : [ 30%] Meshing curve 125 (Line)
Info : [ 30%] Meshing curve 126 (Line)
Info : [ 30%] Meshing curve 127 (Line)
Info : [ 30%] Meshing curve 128 (Line)
Info : [ 30%] Meshing curve 129 (Line)
Info : [ 30%] Meshing curve 130 (Line)
Info : [ 30%] Meshing curve 131 (Line)
Info : [ 30%] Meshing curve 132 (Line)
Info : [ 30%] Meshing curve 133 (Line)
Info : [ 40%] Meshing curve 134 (Line)
Info : [ 40%] Meshing curve 135 (Line)
Info : [ 40%] Meshing curve 136 (Line)
Info : [ 40%] Meshing curve 137 (Line)
Info : [ 40%] Meshing curve 138 (Line)
Info : [ 40%] Meshing curve 139 (Line)
Info : [ 40%] Meshing curve 140 (Line)
Info : [ 40%] Meshing curve 141 (Line)
Info : [ 40%] Meshing curve 142 (Line)
Info : [ 40%] Meshing curve 143 (Line)
Info : [ 40%] Meshing curve 144 (Line)
Info : [ 50%] Meshing curve 145 (Line)
Info : [ 50%] Meshing curve 146 (Line)
Info : [ 50%] Meshing curve 147 (Line)
Info : [ 50%] Meshing curve 148 (Line)
Info : [ 50%] Meshing curve 149 (Line)
Info : [ 50%] Meshing curve 150 (Line)
Info : [ 50%] Meshing curve 151 (Line)
Info : [ 50%] Meshing curve 152 (Line)
Info : [ 50%] Meshing curve 153 (Line)
Info : [ 50%] Meshing curve 154 (Line)
Info : [ 60%] Meshing curve 155 (Line)
Info : [ 60%] Meshing curve 156 (Line)
Info : [ 60%] Meshing curve 157 (Line)
Info : [ 60%] Meshing curve 158 (Line)
Info : [ 60%] Meshing curve 159 (Line)
Info : [ 60%] Meshing curve 160 (Line)
Info : [ 60%] Meshing curve 161 (Line)
Info : [ 60%] Meshing curve 162 (Line)
Info : [ 60%] Meshing curve 163 (Line)
Info : [ 60%] Meshing curve 164 (Line)
Info : [ 60%] Meshing curve 401 (Circle)
Info : [ 70%] Meshing curve 402 (Circle)
Info : [ 70%] Meshing curve 403 (Circle)
Info : [ 70%] Meshing curve 404 (Circle)
Info : [ 70%] Meshing curve 411 (Circle)
Info : [ 70%] Meshing curve 412 (Circle)
Info : [ 70%] Meshing curve 413 (Circle)
Info : [ 70%] Meshing curve 414 (Circle)
Info : [ 70%] Meshing curve 421 (Circle)
Info : [ 70%] Meshing curve 422 (Circle)
Info : [ 70%] Meshing curve 423 (Circle)
Info : [ 70%] Meshing curve 424 (Circle)
Info : [ 80%] Meshing curve 431 (Circle)
Info : [ 80%] Meshing curve 432 (Circle)
Info : [ 80%] Meshing curve 433 (Circle)
Info : [ 80%] Meshing curve 434 (Circle)
Info : [ 80%] Meshing curve 501 (Line)
Info : [ 80%] Meshing curve 502 (Line)
Info : [ 80%] Meshing curve 503 (Line)
Info : [ 80%] Meshing curve 504 (Line)
Info : [ 80%] Meshing curve 505 (Line)
Info : [ 80%] Meshing curve 506 (Line)
Info : [ 80%] Meshing curve 507 (Line)
Info : [ 90%] Meshing curve 508 (Line)
Info : [ 90%] Meshing curve 509 (Line)
Info : [ 90%] Meshing curve 510 (Line)
Info : [ 90%] Meshing curve 511 (Line)
Info : [ 90%] Meshing curve 512 (Line)
Info : [ 90%] Meshing curve 513 (Line)
Info : [ 90%] Meshing curve 514 (Line)
Info : [ 90%] Meshing curve 515 (Line)
Info : [ 90%] Meshing curve 516 (Line)
Info : [ 90%] Meshing curve 517 (Line)
Info : [ 90%] Meshing curve 518 (Line)
Info : [100%] Meshing curve 519 (Line)
Info : [100%] Meshing curve 520 (Line)
Info : [100%] Meshing curve 521 (Line)
Info : [100%] Meshing curve 522 (Line)
Info : [100%] Meshing curve 523 (Line)
Info : [100%] Meshing curve 524 (Line)
Info : [100%] Meshing curve 525 (Line)
Info : [100%] Meshing curve 526 (Line)
Info : [100%] Meshing curve 5040 (Line)
Info : [100%] Meshing curve 5120 (Line)
Info : Done meshing 1D (Wall 0.0282846s, CPU 0.028172s)
Info : Meshing 2D...
Info : [ 0%] Meshing surface 701 (Plane, Frontal-Delaunay for Quads)
Info : [ 0%] Blossom: 51 internal 52 closed
Info : [ 0%] Blossom recombination completed (Wall 0.000119958s, CPU 0.000141s): 26 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 10%] Meshing surface 702 (Plane, Frontal-Delaunay for Quads)
Info : [ 10%] Blossom: 79 internal 80 closed
Info : [ 10%] Blossom recombination completed (Wall 0.000170682s, CPU 0.000191s): 40 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 20%] Meshing surface 703 (Plane, Frontal-Delaunay for Quads)
Info : [ 20%] Blossom: 129 internal 130 closed
Info : [ 20%] Blossom recombination completed (Wall 0.000284474s, CPU 0.000301s): 65 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 20%] Meshing surface 704 (Plane, Frontal-Delaunay for Quads)
Info : [ 20%] Blossom recombination completed (Wall 0.00776745s, CPU 0.0081s): 639 quads, 133 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.843335, min Q = 0.363603
Info : [ 30%] Meshing surface 705 (Plane, Frontal-Delaunay for Quads)
Info : [ 30%] Blossom recombination completed (Wall 0.00605319s, CPU 0.006084s): 665 quads, 125 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.844908, min Q = 0.460748
Info : [ 30%] Meshing surface 706 (Plane, Frontal-Delaunay for Quads)
Info : [ 30%] Blossom: 49 internal 50 closed
Info : [ 30%] Blossom recombination completed (Wall 0.000159282s, CPU 0.000178s): 25 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 40%] Meshing surface 707 (Plane, Frontal-Delaunay for Quads)
Info : [ 40%] Blossom: 49 internal 50 closed
Info : [ 40%] Blossom recombination completed (Wall 0.000149347s, CPU 0.000168s): 25 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 40%] Meshing surface 708 (Plane, Frontal-Delaunay for Quads)
Info : [ 40%] Blossom: 1190 internal 132 closed
Info : [ 40%] Blossom recombination completed (Wall 0.0081269s, CPU 0.008134s): 416 quads, 0 triangles, 0 invalid quads, 1 quads with Q < 0.1, avg Q = 0.744994, min Q = 0.0703248
Info : [ 50%] Meshing surface 709 (Plane, Frontal-Delaunay for Quads)
Info : [ 50%] Blossom: 1130 internal 132 closed
Info : [ 50%] Blossom recombination completed (Wall 0.00788828s, CPU 0.007883s): 395 quads, 0 triangles, 0 invalid quads, 3 quads with Q < 0.1, avg Q = 0.762586, min Q = 0.0293523
Info : [ 60%] Meshing surface 710 (Plane, Frontal-Delaunay for Quads)
Info : [ 60%] Blossom: 7 internal 8 closed
Info : [ 60%] Blossom recombination completed (Wall 0.00010683s, CPU 0.000119s): 4 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 60%] Meshing surface 711 (Plane, Frontal-Delaunay for Quads)
Info : [ 60%] Blossom: 7 internal 8 closed
Info : [ 60%] Blossom recombination completed (Wall 9.78485e-05s, CPU 0s): 4 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 70%] Meshing surface 712 (Plane, Frontal-Delaunay for Quads)
Info : [ 70%] Blossom: 197 internal 103 closed
Info : [ 70%] Blossom recombination completed (Wall 0.00110224s, CPU 0.00112s): 80 quads, 6 triangles, 0 invalid quads, 6 quads with Q < 0.1, avg Q = 0.564073, min Q = 0.0244822
Info : [ 70%] Meshing surface 713 (Plane, Frontal-Delaunay for Quads)
Info : [ 70%] Blossom: 191 internal 102 closed
Info : [ 70%] Blossom recombination completed (Wall 0.00106949s, CPU 0.001082s): 75 quads, 12 triangles, 0 invalid quads, 8 quads with Q < 0.1, avg Q = 0.520627, min Q = 0.0178184
Info : [ 80%] Meshing surface 714 (Plane, Frontal-Delaunay for Quads)
Info : [ 80%] Blossom: 5 internal 6 closed
Info : [ 80%] Blossom recombination completed (Wall 0.000105347s, CPU 0.000119s): 3 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 80%] Meshing surface 715 (Plane, Frontal-Delaunay for Quads)
Info : [ 80%] Blossom: 5 internal 6 closed
Info : [ 80%] Blossom recombination completed (Wall 9.53451e-05s, CPU 0.000111s): 3 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 90%] Meshing surface 716 (Plane, Frontal-Delaunay for Quads)
Info : [ 90%] Blossom: 67 internal 68 closed
Info : [ 90%] Blossom recombination completed (Wall 0.000272594s, CPU 0.000292s): 18 quads, 32 triangles, 0 invalid quads, 4 quads with Q < 0.1, avg Q = 0.275269, min Q = 0.0598336
Info : [ 90%] Meshing surface 717 (Plane, Frontal-Delaunay for Quads)
Info : [ 90%] Blossom: 67 internal 68 closed
Info : [ 90%] Blossom recombination completed (Wall 0.000273298s, CPU 0.000291s): 18 quads, 32 triangles, 0 invalid quads, 4 quads with Q < 0.1, avg Q = 0.275269, min Q = 0.0598336
Info : [100%] Meshing surface 718 (Plane, Frontal-Delaunay for Quads)
Info : [100%] Blossom: 98 internal 98 closed
Info : [100%] Blossom recombination completed (Wall 0.000356156s, CPU 0.000371s): 34 quads, 30 triangles, 0 invalid quads, 2 quads with Q < 0.1, avg Q = 0.258902, min Q = 0.0875293
Info : Done meshing 2D (Wall 0.0813879s, CPU 0.08142s)
Info : 2754 nodes 3758 elements
Info : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/GreatCell.msh'...
Info : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/GreatCell.msh'
Warning : Cannot apply Blossom: odd number of triangles (1413) in surface 704
Warning : Cannot apply Blossom: odd number of triangles (1455) in surface 705
Warning : ------------------------------
Warning : Mesh generation error summary
Warning : 2 warnings
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/mesh_GreatCell_VPF/domain.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_right.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_top.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_left.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_bottom.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE1.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE2.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE3.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE4.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE5.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE6.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE7.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE8.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE1a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE2a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE3a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE4a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE5a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE6a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE7a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE8a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS1.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS2.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS3.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS4.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS5.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS6.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS7.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS8.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS1a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS2a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS3a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS4a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS5a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS6a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS7a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS8a.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/meta.yaml')]
msh_domain_VPF = mesh_GreatCell_VPF(…
(click to toggle)
msh_domain_VPF = mesh_GreatCell_VPF(
lc2=h,
lc=20 * h,
r0=0.097,
r1=0.094,
r2=0.090,
r3=0.065,
out_dir=mesh_path_VPF,
meshname=meshname,
mode="domain",
)
meshes_VPF = ot.Meshes.from_gmsh(msh_domain_VPF, dim=[2], reindex=True, log=False)
meshes_VPF.save(mesh_path_VPF, overwrite=True)Info : Meshing 1D...
Info : [ 0%] Meshing curve 101 (Line)
Info : [ 10%] Meshing curve 102 (Line)
Info : [ 10%] Meshing curve 103 (Line)
Info : [ 10%] Meshing curve 104 (Line)
Info : [ 10%] Meshing curve 105 (Line)
Info : [ 10%] Meshing curve 106 (Line)
Info : [ 10%] Meshing curve 107 (Line)
Info : [ 10%] Meshing curve 108 (Line)
Info : [ 10%] Meshing curve 109 (Line)
Info : [ 10%] Meshing curve 110 (Line)
Info : [ 10%] Meshing curve 111 (Line)
Info : [ 20%] Meshing curve 112 (Line)
Info : [ 20%] Meshing curve 113 (Line)
Info : [ 20%] Meshing curve 114 (Line)
Info : [ 20%] Meshing curve 115 (Line)
Info : [ 20%] Meshing curve 116 (Line)
Info : [ 20%] Meshing curve 117 (Line)
Info : [ 20%] Meshing curve 118 (Line)
Info : [ 20%] Meshing curve 119 (Line)
Info : [ 20%] Meshing curve 120 (Line)
Info : [ 20%] Meshing curve 121 (Line)
Info : [ 20%] Meshing curve 122 (Line)
Info : [ 30%] Meshing curve 123 (Line)
Info : [ 30%] Meshing curve 124 (Line)
Info : [ 30%] Meshing curve 125 (Line)
Info : [ 30%] Meshing curve 126 (Line)
Info : [ 30%] Meshing curve 127 (Line)
Info : [ 30%] Meshing curve 128 (Line)
Info : [ 30%] Meshing curve 129 (Line)
Info : [ 30%] Meshing curve 130 (Line)
Info : [ 30%] Meshing curve 131 (Line)
Info : [ 30%] Meshing curve 132 (Line)
Info : [ 30%] Meshing curve 133 (Line)
Info : [ 40%] Meshing curve 134 (Line)
Info : [ 40%] Meshing curve 135 (Line)
Info : [ 40%] Meshing curve 136 (Line)
Info : [ 40%] Meshing curve 137 (Line)
Info : [ 40%] Meshing curve 138 (Line)
Info : [ 40%] Meshing curve 139 (Line)
Info : [ 40%] Meshing curve 140 (Line)
Info : [ 40%] Meshing curve 141 (Line)
Info : [ 40%] Meshing curve 142 (Line)
Info : [ 40%] Meshing curve 143 (Line)
Info : [ 40%] Meshing curve 144 (Line)
Info : [ 50%] Meshing curve 145 (Line)
Info : [ 50%] Meshing curve 146 (Line)
Info : [ 50%] Meshing curve 147 (Line)
Info : [ 50%] Meshing curve 148 (Line)
Info : [ 50%] Meshing curve 149 (Line)
Info : [ 50%] Meshing curve 150 (Line)
Info : [ 50%] Meshing curve 151 (Line)
Info : [ 50%] Meshing curve 152 (Line)
Info : [ 50%] Meshing curve 153 (Line)
Info : [ 50%] Meshing curve 154 (Line)
Info : [ 60%] Meshing curve 155 (Line)
Info : [ 60%] Meshing curve 156 (Line)
Info : [ 60%] Meshing curve 157 (Line)
Info : [ 60%] Meshing curve 158 (Line)
Info : [ 60%] Meshing curve 159 (Line)
Info : [ 60%] Meshing curve 160 (Line)
Info : [ 60%] Meshing curve 161 (Line)
Info : [ 60%] Meshing curve 162 (Line)
Info : [ 60%] Meshing curve 163 (Line)
Info : [ 60%] Meshing curve 164 (Line)
Info : [ 60%] Meshing curve 401 (Circle)
Info : [ 70%] Meshing curve 402 (Circle)
Info : [ 70%] Meshing curve 403 (Circle)
Info : [ 70%] Meshing curve 404 (Circle)
Info : [ 70%] Meshing curve 411 (Circle)
Info : [ 70%] Meshing curve 412 (Circle)
Info : [ 70%] Meshing curve 413 (Circle)
Info : [ 70%] Meshing curve 414 (Circle)
Info : [ 70%] Meshing curve 421 (Circle)
Info : [ 70%] Meshing curve 422 (Circle)
Info : [ 70%] Meshing curve 423 (Circle)
Info : [ 70%] Meshing curve 424 (Circle)
Info : [ 80%] Meshing curve 431 (Circle)
Info : [ 80%] Meshing curve 432 (Circle)
Info : [ 80%] Meshing curve 433 (Circle)
Info : [ 80%] Meshing curve 434 (Circle)
Info : [ 80%] Meshing curve 501 (Line)
Info : [ 80%] Meshing curve 502 (Line)
Info : [ 80%] Meshing curve 503 (Line)
Info : [ 80%] Meshing curve 504 (Line)
Info : [ 80%] Meshing curve 505 (Line)
Info : [ 80%] Meshing curve 506 (Line)
Info : [ 80%] Meshing curve 507 (Line)
Info : [ 90%] Meshing curve 508 (Line)
Info : [ 90%] Meshing curve 509 (Line)
Info : [ 90%] Meshing curve 510 (Line)
Info : [ 90%] Meshing curve 511 (Line)
Info : [ 90%] Meshing curve 512 (Line)
Info : [ 90%] Meshing curve 513 (Line)
Info : [ 90%] Meshing curve 514 (Line)
Info : [ 90%] Meshing curve 515 (Line)
Info : [ 90%] Meshing curve 516 (Line)
Info : [ 90%] Meshing curve 517 (Line)
Info : [ 90%] Meshing curve 518 (Line)
Info : [100%] Meshing curve 519 (Line)
Info : [100%] Meshing curve 520 (Line)
Info : [100%] Meshing curve 521 (Line)
Info : [100%] Meshing curve 522 (Line)
Info : [100%] Meshing curve 523 (Line)
Info : [100%] Meshing curve 524 (Line)
Info : [100%] Meshing curve 525 (Line)
Info : [100%] Meshing curve 526 (Line)
Info : [100%] Meshing curve 5040 (Line)
Info : [100%] Meshing curve 5120 (Line)
Info : Done meshing 1D (Wall 0.0282566s, CPU 0.029098s)
Info : Meshing 2D...
Info : [ 0%] Meshing surface 701 (Plane, Frontal-Delaunay for Quads)
Info : [ 0%] Blossom: 51 internal 52 closed
Info : [ 0%] Blossom recombination completed (Wall 0.000122938s, CPU 0.000141s): 26 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 10%] Meshing surface 702 (Plane, Frontal-Delaunay for Quads)
Info : [ 10%] Blossom: 79 internal 80 closed
Info : [ 10%] Blossom recombination completed (Wall 0.000180874s, CPU 0.0002s): 40 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 20%] Meshing surface 703 (Plane, Frontal-Delaunay for Quads)
Info : [ 20%] Blossom: 129 internal 130 closed
Info : [ 20%] Blossom recombination completed (Wall 0.000293985s, CPU 0.000314s): 65 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 20%] Meshing surface 704 (Plane, Frontal-Delaunay for Quads)
Info : [ 20%] Blossom recombination completed (Wall 0.00787375s, CPU 0.008068s): 639 quads, 133 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.843335, min Q = 0.363603
Info : [ 30%] Meshing surface 705 (Plane, Frontal-Delaunay for Quads)
Info : [ 30%] Blossom recombination completed (Wall 0.0061093s, CPU 0.006115s): 665 quads, 125 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 0.844908, min Q = 0.460748
Info : [ 30%] Meshing surface 706 (Plane, Frontal-Delaunay for Quads)
Info : [ 30%] Blossom: 49 internal 50 closed
Info : [ 30%] Blossom recombination completed (Wall 0.000169616s, CPU 0.000183s): 25 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 40%] Meshing surface 707 (Plane, Frontal-Delaunay for Quads)
Info : [ 40%] Blossom: 49 internal 50 closed
Info : [ 40%] Blossom recombination completed (Wall 0.000157237s, CPU 0.000175s): 25 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 40%] Meshing surface 708 (Plane, Frontal-Delaunay for Quads)
Info : [ 40%] Blossom: 1190 internal 132 closed
Info : [ 40%] Blossom recombination completed (Wall 0.00817059s, CPU 0.008167s): 416 quads, 0 triangles, 0 invalid quads, 1 quads with Q < 0.1, avg Q = 0.744994, min Q = 0.0703248
Info : [ 50%] Meshing surface 709 (Plane, Frontal-Delaunay for Quads)
Info : [ 50%] Blossom: 1130 internal 132 closed
Info : [ 50%] Blossom recombination completed (Wall 0.00784339s, CPU 0.007846s): 395 quads, 0 triangles, 0 invalid quads, 3 quads with Q < 0.1, avg Q = 0.762586, min Q = 0.0293523
Info : [ 60%] Meshing surface 710 (Plane, Frontal-Delaunay for Quads)
Info : [ 60%] Blossom: 7 internal 8 closed
Info : [ 60%] Blossom recombination completed (Wall 0.000104435s, CPU 0.000118s): 4 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 60%] Meshing surface 711 (Plane, Frontal-Delaunay for Quads)
Info : [ 60%] Blossom: 7 internal 8 closed
Info : [ 60%] Blossom recombination completed (Wall 8.88631e-05s, CPU 0.000106s): 4 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 70%] Meshing surface 712 (Plane, Frontal-Delaunay for Quads)
Info : [ 70%] Blossom: 197 internal 103 closed
Info : [ 70%] Blossom recombination completed (Wall 0.00111195s, CPU 0.001126s): 80 quads, 6 triangles, 0 invalid quads, 6 quads with Q < 0.1, avg Q = 0.564073, min Q = 0.0244822
Info : [ 70%] Meshing surface 713 (Plane, Frontal-Delaunay for Quads)
Info : [ 70%] Blossom: 191 internal 102 closed
Info : [ 70%] Blossom recombination completed (Wall 0.0010809s, CPU 0.001096s): 75 quads, 12 triangles, 0 invalid quads, 8 quads with Q < 0.1, avg Q = 0.520627, min Q = 0.0178184
Info : [ 80%] Meshing surface 714 (Plane, Frontal-Delaunay for Quads)
Info : [ 80%] Blossom: 5 internal 6 closed
Info : [ 80%] Blossom recombination completed (Wall 0.000104234s, CPU 0.000116s): 3 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 80%] Meshing surface 715 (Plane, Frontal-Delaunay for Quads)
Info : [ 80%] Blossom: 5 internal 6 closed
Info : [ 80%] Blossom recombination completed (Wall 9.0275e-05s, CPU 0.000106s): 3 quads, 0 triangles, 0 invalid quads, 0 quads with Q < 0.1, avg Q = 1, min Q = 1
Info : [ 90%] Meshing surface 716 (Plane, Frontal-Delaunay for Quads)
Info : [ 90%] Blossom: 67 internal 68 closed
Info : [ 90%] Blossom recombination completed (Wall 0.000270639s, CPU 0.000289s): 18 quads, 32 triangles, 0 invalid quads, 4 quads with Q < 0.1, avg Q = 0.275269, min Q = 0.0598336
Info : [ 90%] Meshing surface 717 (Plane, Frontal-Delaunay for Quads)
Info : [ 90%] Blossom: 67 internal 68 closed
Info : [ 90%] Blossom recombination completed (Wall 0.000268847s, CPU 0.000289s): 18 quads, 32 triangles, 0 invalid quads, 4 quads with Q < 0.1, avg Q = 0.275269, min Q = 0.0598336
Info : [100%] Meshing surface 718 (Plane, Frontal-Delaunay for Quads)
Info : [100%] Blossom: 98 internal 98 closed
Info : [100%] Blossom recombination completed (Wall 0.000363562s, CPU 0.000376s): 34 quads, 30 triangles, 0 invalid quads, 2 quads with Q < 0.1, avg Q = 0.258902, min Q = 0.0875293
Info : Done meshing 2D (Wall 0.083331s, CPU 0.084113s)
Info : 2754 nodes 3758 elements
Info : Writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/GreatCell.msh'...
Info : Done writing '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/GreatCell.msh'
Warning : Cannot apply Blossom: odd number of triangles (1413) in surface 704
Warning : Cannot apply Blossom: odd number of triangles (1455) in surface 705
Warning : ------------------------------
Warning : Mesh generation error summary
Warning : 2 warnings
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 1453 elements.
[0] info: VTU file written.
[PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/domain.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Central_sample.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Rubber_sheath.vtu'),
PosixPath('/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/meta.yaml')]
plot_contourf_with_annotations(meshes_VPF)
mesh_dir = Path(mesh_path_VPF).resolve()…
(click to toggle)
mesh_dir = Path(mesh_path_VPF).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",
"Inlet.vtu",
"Outlet_R_embeddedFracture.vtu",
"Outlet_R_fullFracture.vtu",
"Outlet_L_fullFracture.vtu",
]
# Strip cell-type bulk_element_ids from 0D point meshes before identifySubdomains
for name in [
"Inlet.vtu",
"Outlet_R_embeddedFracture.vtu",
"Outlet_R_fullFracture.vtu",
"Outlet_L_fullFracture.vtu",
]:
p = mesh_dir / name
m = meshio.read(str(p))
m.cell_data.pop("bulk_element_ids", None)
meshio.write(str(p), m)
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.00859943 s
[0] info: MeshNodeSearcher construction time: 0.000102446 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 8.563e-06 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.0001325 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 4.81e-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 8.5359e-05 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 4.41e-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 8.4217e-05 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 3.8e-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 8.4138e-05 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 3.2e-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 8.2615e-05 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 3.3e-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 8.2215e-05 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 3.5e-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 8.2064e-05 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 3.61e-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 8.0442e-05 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 3.51e-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 8.2976e-05 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 3.7e-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 8.2054e-05 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 3.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 8.1974e-05 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 3.41e-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 8.7052e-05 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 3.3e-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 8.2385e-05 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 3.3e-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 8.0953e-05 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 3.01e-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 8.0683e-05 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 3.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 8.2695e-05 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 4.71e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE1' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1163e-05 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 3.41e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE1a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1403e-05 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 3.3e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE2' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1533e-05 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 3.21e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE2a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1995e-05 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 4.21e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE3' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2194e-05 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 3.2e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE3a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1343e-05 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 3.71e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE4' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.4918e-05 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 3.8e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE4a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2034e-05 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 4.81e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE5' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2695e-05 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 3.4e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE5a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1043e-05 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 3.5e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE6' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.0762e-05 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 4.41e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE6a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2324e-05 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 2.91e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE7' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.3096e-05 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 3.11e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE7a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2595e-05 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 3.2e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE8' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2124e-05 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 3e-07 s
[0] info: There is already a 'bulk_node_ids' property present in the subdomain mesh 'PEE8a' and it is equal to the newly computed values.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 7.9961e-05 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 2.1e-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 8.2365e-05 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 2.2e-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 8.1583e-05 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 1.9e-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 8.6701e-05 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 3.8e-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 8.2876e-05 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 4.51e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'Inlet' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1043e-05 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 3.4e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'Outlet_R_embeddedFracture' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.1323e-05 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 2.4e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'Outlet_R_fullFracture' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2255e-05 s
[0] info: identifySubdomainMesh(): identifySubdomainMeshNodes took 2.91e-07 s
[0] warning: There is already a 'bulk_node_ids' property present in the subdomain mesh 'Outlet_L_fullFracture' and it is not equal to the newly computed values.
[0] info: Overwriting 'bulk_node_ids' property.
[0] info: identifySubdomainMesh(): identifySubdomainMeshElements took 8.2084e-05 s
[0] info: identifySubdomains time: 0.00362675 s
[0] info: writing time: 0.0446033 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/mesh_GreatCell_VPF/domain.vtu', '--', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/DSS8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE1.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE1a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE2.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE2a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE3.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE3a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE4.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE4a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE5.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE5a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE6.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE6a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE7.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE7a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE8.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/PEE8a.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_bottom.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_left.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_right.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/p_top.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu'], returncode=0)
In this section, all input data and boundary conditions provided in $\texttt{M}_{2b}$, except a single wing fracture, defined as $\Gamma = \left[0, 0.04\right] \times \{0\}$, is considered.
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 3
model_type = "M2b"
output_prefix = "M2b_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],
}
# Project file
prj_file = Path("M2_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))…
(click to toggle)
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path_VPF,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
n_mpi=2,
)
vtu_files_dict_embedded = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path_VPF,
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",
crack_type="half",
fracture_model_type="VolumetricDeviatoric",
mesh_size=h,
n_mpi=2,
)[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/M2b_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/mesh_GreatCell_VPF with crack type: half and h1: 0.001
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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.00565214 s.
[0] info: Total CPU time: 0.005637 s.
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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/mesh_GreatCell_VPF/domain.mesh" 2
******************************************************************************
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/mesh_GreatCell_VPF/domain.mesh, #Elements: 2905, #Nodes: 2753, #Parts: 2
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: 117.
Timing Information ----------------------------------------------------------
I/O: 0.001 sec
Partitioning: 0.002 sec (METIS time)
Reporting: 0.000 sec
Memory Information ----------------------------------------------------------
Max memory used: 0.899 MB
rusage.ru_maxrss: 109.141 MB
proc/self/stat/VmPeak: 27.105 MB
******************************************************************************
[0] info: Partitioning the mesh in the node wise way ...
[0] info: partitionMesh(): Partition IDs per element computed in 0.000120573 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.3025e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 0.000187765 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 0.000109005 s
[0] info: partitionMesh(): distribute elements into partitions took 8.1313e-05 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8337e-05 s
[0] info: partitionMesh(): markDuplicateGhostCells took 7.91e-07 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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.11e-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 3.91e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.4e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.31e-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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-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.4e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/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 1.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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 6.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.9e-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.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.7e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.7e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 7.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.31e-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/mesh_GreatCell_VPF/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.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.12e-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.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/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.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.6e-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.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.81e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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 2.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.5e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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 1.81e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.8e-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 6.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.5e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.5e-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.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE1.vtu' read: 3 nodes, 2 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 1.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE1a.vtu' read: 3 nodes, 2 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 2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.01e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.7e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/PEE2.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE2a.vtu' read: 3 nodes, 2 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 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.41e-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.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE3.vtu' read: 3 nodes, 2 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.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.5e-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.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.11e-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/mesh_GreatCell_VPF/PEE3a.vtu' read: 3 nodes, 2 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 2.7e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.31e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE4.vtu' read: 3 nodes, 2 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.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.61e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/PEE4a.vtu' read: 3 nodes, 2 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 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3e-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/mesh_GreatCell_VPF/PEE5.vtu' read: 3 nodes, 2 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 1.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.51e-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 2.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE5a.vtu' read: 3 nodes, 2 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 1.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.4e-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 2.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.1e-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/mesh_GreatCell_VPF/PEE6.vtu' read: 3 nodes, 2 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 2.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.51e-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 2.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.21e-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/mesh_GreatCell_VPF/PEE6a.vtu' read: 3 nodes, 2 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.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.51e-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 2.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.7e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.1e-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/mesh_GreatCell_VPF/PEE7.vtu' read: 3 nodes, 2 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 1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.61e-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 2.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.11e-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/mesh_GreatCell_VPF/PEE7a.vtu' read: 3 nodes, 2 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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.61e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.1e-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/mesh_GreatCell_VPF/PEE8.vtu' read: 3 nodes, 2 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.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3e-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 2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.11e-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/mesh_GreatCell_VPF/PEE8a.vtu' read: 3 nodes, 2 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 1.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.21e-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 2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-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/mesh_GreatCell_VPF/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.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.1e-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 4e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-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/mesh_GreatCell_VPF/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.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.2e-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.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-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/mesh_GreatCell_VPF/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 9e-08 s
[0] info: partitionMesh(): distribute nodes to partitions took 5e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.3e-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 2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-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/mesh_GreatCell_VPF/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.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 5.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.1e-07 s
[0] info: Mesh 'Inlet' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Inlet
[0] info: Property global_element_ids is added to mesh Inlet
[0] info: partitionMesh(): Partition IDs per element computed in 1.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.3e-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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-07 s
[0] info: Mesh 'Outlet_R_embeddedFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_embeddedFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_embeddedFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 2.9e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 5.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.2e-07 s
[0] info: Mesh 'Outlet_R_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 1.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.11e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.61e-07 s
[0] info: Mesh 'Outlet_L_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_L_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_L_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 1.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 3.2e-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.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.1e-07 s
[0] info: Writing the partitions data into binary files took 0.000619919 s
[0] info: Total runtime: 0.0882983 s.
[0] info: Total CPU time: 0.038419 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/M2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_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/M2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_B.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_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/M2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_C.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2b_VPF_C.prj']
plotter = Plotter(…
(click to toggle)
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="M2b")
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict_embedded,
model_type="M2b",
ylim_range=[-7.5, 2.5],
layout="single",
external_data=external_data["strain"],
)
plotter.plot_field_variables(vtu_files_dict_embedded, show_pressure=False)[0] info: Reading meshes took 0.008903433999999821 s
[0] info: Collection of 2905 regular elements and computing element map took 2.130199999994531e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.354999999816144e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011610689999999035 s
[0] info: Reset nodes in regular elements took 0.005296642000000018 s
[0] info: creation of merged mesh took 0.0004974230000001079 s
[0] info: merge properties into merged mesh took 0.00038055599999986534 s
[0] info: writing mesh took 0.012161748999999888 s
[0] info: Reading meshes took 0.009131680999999947 s
[0] info: Collection of 2905 regular elements and computing element map took 2.055200000006252e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4049999999563596e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011852549999999962 s
[0] info: Reset nodes in regular elements took 0.005486448999999949 s
[0] info: creation of merged mesh took 0.0007052880000000261 s
[0] info: merge properties into merged mesh took 0.0003760100000000932 s
[0] info: writing mesh took 0.013208593999999962 s
[0] info: Reading meshes took 0.010908271000000136 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0740999999935283e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.154999999921415e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011511229999998651 s
[0] info: Reset nodes in regular elements took 0.005355651000000128 s
[0] info: creation of merged mesh took 0.0005063570000001238 s
[0] info: merge properties into merged mesh took 0.00037156199999999195 s
[0] info: writing mesh took 0.012869441000000093 s
[0] info: Reading meshes took 0.010502285999999916 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0811000000175994e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3850000002999536e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012917359999997657 s
[0] info: Reset nodes in regular elements took 0.0052743780000001905 s
[0] info: creation of merged mesh took 0.0004888400000000459 s
[0] info: merge properties into merged mesh took 0.0003715730000000139 s
[0] info: writing mesh took 0.01619536800000021 s
[0] info: Reading meshes took 0.005911302999999979 s
[0] info: Collection of 2905 regular elements and computing element map took 1.2518999999988623e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.193999999899887e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006634150000000005 s
[0] info: Reset nodes in regular elements took 0.002995035999999951 s
[0] info: creation of merged mesh took 0.00028958900000009 s
[0] info: merge properties into merged mesh took 0.0002374700000000729 s
[0] info: writing mesh took 0.011667389999999944 s
[0] info: Reading meshes took 0.005130560000000006 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0210999999825674e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.256999999840971e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006657090000001809 s
[0] info: Reset nodes in regular elements took 0.0030200939999998067 s
[0] info: creation of merged mesh took 0.000291591000000313 s
[0] info: merge properties into merged mesh took 0.0002446400000000182 s
[0] info: writing mesh took 0.008026746000000085 s
Load: A, File 0, Benchmark: M2b, Material: Gneiss
[0] info: Reading meshes took 0.005237331999999872 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3751000000006286e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.264000000140598e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006634450000000403 s
[0] info: Reset nodes in regular elements took 0.0030043800000001397 s
[0] info: creation of merged mesh took 0.0002904089999999915 s
[0] info: merge properties into merged mesh took 0.00024854600000012717 s
[0] info: writing mesh took 0.012101428000000025 s
Load: A, File 1, Benchmark: M2b, Material: Greywacke
[0] info: Reading meshes took 0.00945830499999989 s
[0] info: Collection of 2905 regular elements and computing element map took 2.034099999992378e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.194000000039665e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001154248000000191 s
[0] info: Reset nodes in regular elements took 0.005283332000000085 s
[0] info: creation of merged mesh took 0.0004971629999999116 s
[0] info: merge properties into merged mesh took 0.0003674369999999705 s
[0] info: writing mesh took 0.013230836999999829 s
Load: B, File 0, Benchmark: M2b, Material: Gneiss
[0] info: Reading meshes took 0.010873749000000155 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1964000000096462e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3550000000381885e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011487800000000714 s
[0] info: Reset nodes in regular elements took 0.005243931999999951 s
[0] info: creation of merged mesh took 0.0004914339999999573 s
[0] info: merge properties into merged mesh took 0.00046810900000004985 s
[0] info: writing mesh took 0.013806069000000143 s
Load: B, File 1, Benchmark: M2b, Material: Greywacke
[0] info: Reading meshes took 0.008909763999999987 s
[0] info: Collection of 2905 regular elements and computing element map took 2.11320000000903e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2450000000405765e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012899639999999213 s
[0] info: Reset nodes in regular elements took 0.005381008999999937 s
[0] info: creation of merged mesh took 0.0004977339999998609 s
[0] info: merge properties into merged mesh took 0.00037086200000002734 s
[0] info: writing mesh took 0.014483816000000038 s
Load: C, File 0, Benchmark: M2b, Material: Gneiss
[0] info: Reading meshes took 0.008513663999999865 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1172000000069247e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.244999999818532e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011308420000000208 s
[0] info: Reset nodes in regular elements took 0.0030766199999998634 s
[0] info: creation of merged mesh took 0.0003957489999999453 s
[0] info: merge properties into merged mesh took 0.0002293069999999009 s
[0] info: writing mesh took 0.01626716699999986 s
Load: C, File 1, Benchmark: M2b, Material: Greywacke
[0] info: Reading meshes took 0.008552201999999953 s
[0] info: Collection of 2905 regular elements and computing element map took 2.064100000009894e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.18500000018318e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012925469999998107 s
[0] info: Reset nodes in regular elements took 0.005530736000000092 s
[0] info: creation of merged mesh took 0.0005007279999997838 s
[0] info: merge properties into merged mesh took 0.0003771709999997874 s
[0] info: writing mesh took 0.015963506999999932 s
In this benchmark, 2D plane strain numerical simulations are performed to establish a baseline model for assessing the impact of fracture orientation on strain distribution under poly-axial loading. A planar fracture within the specimen, $\Gamma = \left[-0.094, 0.094\right] \times \{0\}$, is considered, under poly-axial loading applied on PEE’s and DSS’s
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 3
model_type = "M2a"
output_prefix = "M2a_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],
}
# Project file
prj_file = Path("M2_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))# Create SingleOGSModel…
(click to toggle)
# Create SingleOGSModel
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path_VPF,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
n_mpi=2,
)
# Run simulations
vtu_files_dict_full = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path_VPF,
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",
crack_type="full",
fracture_model_type="VolumetricDeviatoric",
mesh_size=h,
n_mpi=2,
)[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/M2a_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/mesh_GreatCell_VPF with crack type: full and h1: 0.001
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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.0117906 s.
[0] info: Total CPU time: 0.011654 s.
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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/mesh_GreatCell_VPF/domain.mesh" 2
******************************************************************************
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/mesh_GreatCell_VPF/domain.mesh, #Elements: 2905, #Nodes: 2753, #Parts: 2
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: 117.
Timing Information ----------------------------------------------------------
I/O: 0.001 sec
Partitioning: 0.002 sec (METIS time)
Reporting: 0.000 sec
Memory Information ----------------------------------------------------------
Max memory used: 0.899 MB
rusage.ru_maxrss: 109.281 MB
proc/self/stat/VmPeak: 27.105 MB
******************************************************************************
[0] info: Partitioning the mesh in the node wise way ...
[0] info: partitionMesh(): Partition IDs per element computed in 0.000170889 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.944e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 0.000233003 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 0.000150968 s
[0] info: partitionMesh(): distribute elements into partitions took 0.000113813 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.4107e-05 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.042e-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/mesh_GreatCell_VPF/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.51e-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.61e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.6e-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.3e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.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 5.6e-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 5.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 7.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.11e-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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.21e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/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 2.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.5e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/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.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.8e-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.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.9e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/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 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.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.61e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.4e-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.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.61e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE1.vtu' read: 3 nodes, 2 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.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE1a.vtu' read: 3 nodes, 2 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 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE2.vtu' read: 3 nodes, 2 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 2.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.5e-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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE2a.vtu' read: 3 nodes, 2 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 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.41e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE3.vtu' read: 3 nodes, 2 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 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 5.81e-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.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE3a.vtu' read: 3 nodes, 2 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 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 5.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.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE4.vtu' read: 3 nodes, 2 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 2.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.01e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.81e-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/mesh_GreatCell_VPF/PEE4a.vtu' read: 3 nodes, 2 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 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 6.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.8e-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/mesh_GreatCell_VPF/PEE5.vtu' read: 3 nodes, 2 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 2.51e-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.11e-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.91e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 7.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.1e-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/mesh_GreatCell_VPF/PEE5a.vtu' read: 3 nodes, 2 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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/PEE6.vtu' read: 3 nodes, 2 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 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.51e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE6a.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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 3.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/PEE7.vtu' read: 3 nodes, 2 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 3.3e-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 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.51e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE7a.vtu' read: 3 nodes, 2 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 3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE8.vtu' read: 3 nodes, 2 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 2.81e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE8a.vtu' read: 3 nodes, 2 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 2.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.5e-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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1e-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 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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 3.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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 1.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.7e-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/mesh_GreatCell_VPF/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 3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 9e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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 1.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.72e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-07 s
[0] info: Mesh 'Inlet' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Inlet
[0] info: Property global_element_ids is added to mesh Inlet
[0] info: partitionMesh(): Partition IDs per element computed in 3.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.5e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.81e-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 2.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-07 s
[0] info: Mesh 'Outlet_R_embeddedFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_embeddedFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_embeddedFracture
[0] info: partitionMesh(): Partition IDs per element computed in 3.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.41e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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 1.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-07 s
[0] info: Mesh 'Outlet_R_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.7e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-07 s
[0] info: Mesh 'Outlet_L_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_L_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_L_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.51e-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 7.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-07 s
[0] info: Writing the partitions data into binary files took 0.0017062 s
[0] info: Total runtime: 0.0985655 s.
[0] info: Total CPU time: 0.047707 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/M2a_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_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/M2a_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_B.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_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/M2a_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_C.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/M2a_VPF_C.prj']
plotter = Plotter(…
(click to toggle)
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="M2a")
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict_full,
model_type="M2a",
ylim_range=[-7.5, 2.5],
layout="subplots",
external_data=external_data["strain"],
)[0] info: Reading meshes took 0.012879045000000033 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1743000000018498e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.39599999987783e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0014089739999998407 s
[0] info: Reset nodes in regular elements took 0.005431136000000114 s
[0] info: creation of merged mesh took 0.0005297029999999925 s
[0] info: merge properties into merged mesh took 0.00041189399999996823 s
[0] info: writing mesh took 0.015421305000000052 s
[0] info: Reading meshes took 0.00995390499999993 s
[0] info: Collection of 2905 regular elements and computing element map took 2.796299999996421e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.665000000152574e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011623700000000792 s
[0] info: Reset nodes in regular elements took 0.00529322600000004 s
[0] info: creation of merged mesh took 0.0005124460000001108 s
[0] info: merge properties into merged mesh took 0.0003885589999998995 s
[0] info: writing mesh took 0.014477075000000061 s
[0] info: Reading meshes took 0.009143558000000107 s
[0] info: Collection of 2905 regular elements and computing element map took 2.2394000000147685e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.645000000052079e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011544989999998645 s
[0] info: Reset nodes in regular elements took 0.005276601000000047 s
[0] info: creation of merged mesh took 0.0005041930000000416 s
[0] info: merge properties into merged mesh took 0.0003876769999999752 s
[0] info: writing mesh took 0.013191187999999965 s
[0] info: Reading meshes took 0.005577117000000076 s
[0] info: Collection of 2905 regular elements and computing element map took 1.7906999999928175e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0650000000242983e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006708660000001032 s
[0] info: Reset nodes in regular elements took 0.003135488999999936 s
[0] info: creation of merged mesh took 0.0003083069999998411 s
[0] info: merge properties into merged mesh took 0.00026379899999984247 s
[0] info: writing mesh took 0.01290518499999993 s
[0] info: Reading meshes took 0.009080782000000065 s
[0] info: Collection of 2905 regular elements and computing element map took 2.2583999999881144e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.715000000070745e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001504979999999989 s
[0] info: Reset nodes in regular elements took 0.005392506999999824 s
[0] info: creation of merged mesh took 0.0007248280000000662 s
[0] info: merge properties into merged mesh took 0.00038172799999980356 s
[0] info: writing mesh took 0.01644916200000024 s
[0] info: Reading meshes took 0.009044607999999954 s
[0] info: Collection of 2905 regular elements and computing element map took 2.2514000000084522e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.5850000001946825e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012419500000000472 s
[0] info: Reset nodes in regular elements took 0.005308799999999891 s
[0] info: creation of merged mesh took 0.0005076690000000994 s
[0] info: merge properties into merged mesh took 0.0003753390000000856 s
[0] info: writing mesh took 0.010099826000000034 s
plotter.plot_field_variables(vtu_files_dict_full, show_pressure=False)Load: A, File 0, Benchmark: M2a, Material: Gneiss
[0] info: Reading meshes took 0.009051157999999893 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0832000000137185e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3750000001386837e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011541779999999502 s
[0] info: Reset nodes in regular elements took 0.005524617000000065 s
[0] info: creation of merged mesh took 0.0005074189999998424 s
[0] info: merge properties into merged mesh took 0.00037692000000011383 s
[0] info: writing mesh took 0.01543545699999993 s
Load: A, File 1, Benchmark: M2a, Material: Greywacke
[0] info: Reading meshes took 0.005635035000000066 s
[0] info: Collection of 2905 regular elements and computing element map took 1.260899999988574e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.062999999941084e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0007286739999998737 s
[0] info: Reset nodes in regular elements took 0.003196401000000071 s
[0] info: creation of merged mesh took 0.0002931840000000019 s
[0] info: merge properties into merged mesh took 0.00027598799999983825 s
[0] info: writing mesh took 0.013599656000000238 s
Load: B, File 0, Benchmark: M2a, Material: Gneiss
[0] info: Reading meshes took 0.01144797800000008 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0320000000184635e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.165000000082685e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011511230000000872 s
[0] info: Reset nodes in regular elements took 0.005382632000000109 s
[0] info: creation of merged mesh took 0.0005059659999999688 s
[0] info: merge properties into merged mesh took 0.00036935900000001354 s
[0] info: writing mesh took 0.011954765000000034 s
Load: B, File 1, Benchmark: M2a, Material: Greywacke
[0] info: Reading meshes took 0.009962367999999833 s
[0] info: Collection of 2905 regular elements and computing element map took 2.182400000005913e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2249999999400814e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011518340000000737 s
[0] info: Reset nodes in regular elements took 0.005439777999999951 s
[0] info: creation of merged mesh took 0.0005020299999998201 s
[0] info: merge properties into merged mesh took 0.00037849299999992425 s
[0] info: writing mesh took 0.01413574900000003 s
Load: C, File 0, Benchmark: M2a, Material: Gneiss
[0] info: Reading meshes took 0.005356812999999905 s
[0] info: Collection of 2905 regular elements and computing element map took 1.2990000000101531e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.1740000000214366e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006906659999998954 s
[0] info: Reset nodes in regular elements took 0.003058090999999763 s
[0] info: creation of merged mesh took 0.00030002399999995433 s
[0] info: merge properties into merged mesh took 0.00023785999999992313 s
[0] info: writing mesh took 0.013367295000000112 s
Load: C, File 1, Benchmark: M2a, Material: Greywacke
[0] info: Reading meshes took 0.009034943000000073 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1461999999861092e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.364999999977414e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012931990000000226 s
[0] info: Reset nodes in regular elements took 0.005479047999999986 s
[0] info: creation of merged mesh took 0.0005038229999998478 s
[0] info: merge properties into merged mesh took 0.0003927349999999219 s
[0] info: writing mesh took 0.013438681999999869 s
We use all inputs and BCs from $\texttt{M}_{2b}$ for a single wing fracture $\Gamma = [0,\,0.04]\times\{0\}.$ A Dirichlet BC of $p(0.04,0)=3.45\text{ MPa}$ is applied at the fracture’s right tip. After a 3000 s equilibration, fluid is injected at the left tip with $ Q_0^{\mathrm{v}}(0,0)=4.167\times10^{-7}\,\mathrm{m}^3/\mathrm{s}\;(25\text{ ml/min}).$
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 3
model_type = "HM2b"
output_prefix = "HM2b_VPF"
# Load
PEE_load_values = {
"A": [10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6, 7.80e6, 9.95e6],
"E": [9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6, 7.80e6],
"B": [7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6],
"F": [3.82e6, 7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6],
"C": [1.0e6, 3.82e6, 7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6],
}
for p in materials.values():
p["fluid"][
"injectionFlowRate_Inlet"
] = 4.167e-7 # Injection flow rate m³/s (25 ml/min)
# Project file
prj_file = Path("HM2b_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))sing_ogs_model = SingleOGSModel(…
(click to toggle)
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path_VPF,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
n_mpi=2,
)
vtu_files_dict_embedded_HM = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path_VPF,
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",
crack_type="half",
fracture_model_type="Isotropic",
mesh_size=h,
n_mpi=2,
)[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/HM2b_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/mesh_GreatCell_VPF with crack type: half and h1: 0.001
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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.0126011 s.
[0] info: Total CPU time: 0.012447 s.
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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/mesh_GreatCell_VPF/domain.mesh" 2
******************************************************************************
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/mesh_GreatCell_VPF/domain.mesh, #Elements: 2905, #Nodes: 2753, #Parts: 2
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: 117.
Timing Information ----------------------------------------------------------
I/O: 0.001 sec
Partitioning: 0.002 sec (METIS time)
Reporting: 0.000 sec
Memory Information ----------------------------------------------------------
Max memory used: 0.899 MB
rusage.ru_maxrss: 108.988 MB
proc/self/stat/VmPeak: 27.105 MB
******************************************************************************
[0] info: Partitioning the mesh in the node wise way ...
[0] info: partitionMesh(): Partition IDs per element computed in 0.000190018 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.0291e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 0.000236228 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 0.000117478 s
[0] info: partitionMesh(): distribute elements into partitions took 8.0903e-05 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.7286e-05 s
[0] info: partitionMesh(): markDuplicateGhostCells took 7.72e-07 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/mesh_GreatCell_VPF/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.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.5e-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.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.31e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.2e-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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.41e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.21e-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.01e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.5e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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 3.01e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-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.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.9e-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.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.81e-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 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 3.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 7.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 4.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/mesh_GreatCell_VPF/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 3.9e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-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.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 2.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.01e-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/mesh_GreatCell_VPF/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.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/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.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.61e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-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 3.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-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 9e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 3.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.11e-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.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.5e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.92e-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.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/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.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/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.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/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 3.71e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.3e-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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.41e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE1.vtu' read: 3 nodes, 2 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.71e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-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.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE1a.vtu' read: 3 nodes, 2 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 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 7.71e-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.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.11e-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/mesh_GreatCell_VPF/PEE2.vtu' read: 3 nodes, 2 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 3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE2a.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.21e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE3.vtu' read: 3 nodes, 2 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.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.61e-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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/PEE3a.vtu' read: 3 nodes, 2 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 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE4.vtu' read: 3 nodes, 2 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.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/PEE4a.vtu' read: 3 nodes, 2 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 2.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 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/mesh_GreatCell_VPF/PEE5.vtu' read: 3 nodes, 2 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 2.71e-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.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.01e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 8.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.3e-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/mesh_GreatCell_VPF/PEE5a.vtu' read: 3 nodes, 2 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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 6.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE6.vtu' read: 3 nodes, 2 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 3.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.91e-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 3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE6a.vtu' read: 3 nodes, 2 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 2.51e-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.11e-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 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/PEE7.vtu' read: 3 nodes, 2 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 2.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.8e-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 1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.1e-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/mesh_GreatCell_VPF/PEE7a.vtu' read: 3 nodes, 2 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 3.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.6e-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.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE8.vtu' read: 3 nodes, 2 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 3.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.9e-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 4.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-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/mesh_GreatCell_VPF/PEE8a.vtu' read: 3 nodes, 2 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 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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 3.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.01e-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/mesh_GreatCell_VPF/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 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.1e-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 6e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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 2.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.11e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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 2.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 8.1e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.7e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/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 3.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.31e-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.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-07 s
[0] info: Mesh 'Inlet' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Inlet
[0] info: Property global_element_ids is added to mesh Inlet
[0] info: partitionMesh(): Partition IDs per element computed in 3.01e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.71e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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 2.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-07 s
[0] info: Mesh 'Outlet_R_embeddedFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_embeddedFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_embeddedFracture
[0] info: partitionMesh(): Partition IDs per element computed in 3.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 5.41e-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 2.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-07 s
[0] info: Mesh 'Outlet_R_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 3.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.2e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.11e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-07 s
[0] info: Mesh 'Outlet_L_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_L_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_L_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.31e-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 2.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-07 s
[0] info: Writing the partitions data into binary files took 0.00150166 s
[0] info: Total runtime: 0.104672 s.
[0] info: Total CPU time: 0.051331 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/HM2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_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/HM2b_VPF_E.prj
============================================================
Running simulation for load case: E with method: VPF, tension_cutoff: False
============================================================
------------------------------------------------------------
* Running the simulation for sample Gneiss:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_E.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_E.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_E.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_E.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/HM2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_B.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_B.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_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/HM2b_VPF_F.prj
============================================================
Running simulation for load case: F with method: VPF, tension_cutoff: False
============================================================
------------------------------------------------------------
* Running the simulation for sample Gneiss:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_F.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_F.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_F.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_F.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/HM2b_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_C.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_C.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2b_VPF_C.prj']
plotter = Plotter(…
(click to toggle)
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="HM2b")
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict_embedded_HM,
model_type="HM2b",
ylim_range=[-7.5, 2.5],
layout="subplots",
external_data=external_data["strain"],
)[0] info: Reading meshes took 0.01286290999999995 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9760000000035305e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2450000000405765e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010592640000000042 s
[0] info: Reset nodes in regular elements took 0.004862032999999988 s
[0] info: creation of merged mesh took 0.0004595560000000276 s
[0] info: merge properties into merged mesh took 0.00034441200000001615 s
[0] info: writing mesh took 0.012760133999999868 s
[0] info: Reading meshes took 0.014078140000000072 s
[0] info: Collection of 2905 regular elements and computing element map took 1.956899999999706e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0450000001458477e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010545669999999507 s
[0] info: Reset nodes in regular elements took 0.004847800999999929 s
[0] info: creation of merged mesh took 0.0004535469999999986 s
[0] info: merge properties into merged mesh took 0.0003406759999999842 s
[0] info: writing mesh took 0.01298415300000011 s
[0] info: Reading meshes took 0.012843240000000034 s
[0] info: Collection of 2905 regular elements and computing element map took 1.969000000001664e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2240000000793856e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010597350000001171 s
[0] info: Reset nodes in regular elements took 0.004860080000000044 s
[0] info: creation of merged mesh took 0.00045535999999990473 s
[0] info: merge properties into merged mesh took 0.00043049200000000454 s
[0] info: writing mesh took 0.012281779999999909 s
[0] info: Reading meshes took 0.013456688999999855 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9599999999897477e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.124000000020999e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010645120000001285 s
[0] info: Reset nodes in regular elements took 0.0048554929999999885 s
[0] info: creation of merged mesh took 0.0004570219999999736 s
[0] info: merge properties into merged mesh took 0.0003401650000001144 s
[0] info: writing mesh took 0.012167436000000142 s
[0] info: Reading meshes took 0.013594998999999941 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9189000000086054e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9940000001449363e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010597250000001779 s
[0] info: Reset nodes in regular elements took 0.004856465000000032 s
[0] info: creation of merged mesh took 0.0004579730000000559 s
[0] info: merge properties into merged mesh took 0.000349168999999927 s
[0] info: writing mesh took 0.012838641999999956 s
[0] info: Reading meshes took 0.011475799000000064 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9069000000149217e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.314999999837198e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010606470000000812 s
[0] info: Reset nodes in regular elements took 0.004968333999999963 s
[0] info: creation of merged mesh took 0.0004671569999998848 s
[0] info: merge properties into merged mesh took 0.00034231900000003535 s
[0] info: writing mesh took 0.012145562999999804 s
[0] info: Reading meshes took 0.013729241000000059 s
[0] info: Collection of 2905 regular elements and computing element map took 1.980000000001425e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4049999999563596e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010587629999998516 s
[0] info: Reset nodes in regular elements took 0.004945750000000082 s
[0] info: creation of merged mesh took 0.0004600660000000367 s
[0] info: merge properties into merged mesh took 0.00034605399999998454 s
[0] info: writing mesh took 0.012407900999999999 s
[0] info: Reading meshes took 0.01344922699999973 s
[0] info: Collection of 2905 regular elements and computing element map took 1.975000000009608e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2850000000195223e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001059855000000054 s
[0] info: Reset nodes in regular elements took 0.0048559129999998785 s
[0] info: creation of merged mesh took 0.000455960000000033 s
[0] info: merge properties into merged mesh took 0.00034531299999995824 s
[0] info: writing mesh took 0.014643015000000092 s
[0] info: Reading meshes took 0.013470338999999942 s
[0] info: Collection of 2905 regular elements and computing element map took 1.954000000004008e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0049999999448573e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010684290000000374 s
[0] info: Reset nodes in regular elements took 0.004881192000000034 s
[0] info: creation of merged mesh took 0.00046297100000014524 s
[0] info: merge properties into merged mesh took 0.00034410100000004107 s
[0] info: writing mesh took 0.012219175000000027 s
[0] info: Reading meshes took 0.011400815000000009 s
[0] info: Collection of 2905 regular elements and computing element map took 1.998000000003053e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3450000000989633e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011181429999997938 s
[0] info: Reset nodes in regular elements took 0.0051173390000001096 s
[0] info: creation of merged mesh took 0.00048023799999974415 s
[0] info: merge properties into merged mesh took 0.0003520729999999528 s
[0] info: writing mesh took 0.01217347599999985 s
plotter.plot_field_variables(vtu_files_dict_embedded_HM)Load: A, File 0, Benchmark: HM2b, Material: Gneiss
[0] info: Reading meshes took 0.008231635999999876 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9559000000057836e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1750000000219103e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010655539999999686 s
[0] info: Reset nodes in regular elements took 0.00485911799999994 s
[0] info: creation of merged mesh took 0.0004554800000000636 s
[0] info: merge properties into merged mesh took 0.0003534450000000078 s
[0] info: writing mesh took 0.010775268000000171 s
Load: A, File 1, Benchmark: HM2b, Material: Greywacke
[0] info: Reading meshes took 0.014060143000000025 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0931999999973527e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1950000001224055e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001064662000000105 s
[0] info: Reset nodes in regular elements took 0.004873691000000013 s
[0] info: creation of merged mesh took 0.0004593360000000324 s
[0] info: merge properties into merged mesh took 0.0003510719999999523 s
[0] info: writing mesh took 0.013114550999999919 s
Load: E, File 0, Benchmark: HM2b, Material: Gneiss
[0] info: Reading meshes took 0.01200565000000009 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9930000000112358e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2850000000195223e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010568410000000306 s
[0] info: Reset nodes in regular elements took 0.004957837999999937 s
[0] info: creation of merged mesh took 0.00047615099999998023 s
[0] info: merge properties into merged mesh took 0.00034490199999992477 s
[0] info: writing mesh took 0.014245834000000013 s
Load: E, File 1, Benchmark: HM2b, Material: Greywacke
[0] info: Reading meshes took 0.013474465000000047 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9680000000077413e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1140000000817736e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001066856000000005 s
[0] info: Reset nodes in regular elements took 0.004871827999999967 s
[0] info: creation of merged mesh took 0.000462921000000005 s
[0] info: merge properties into merged mesh took 0.00034950899999985907 s
[0] info: writing mesh took 0.013130845000000058 s
Load: B, File 0, Benchmark: HM2b, Material: Gneiss
[0] info: Reading meshes took 0.00954111000000002 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9489999999899865e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2749999998582524e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010592849999999654 s
[0] info: Reset nodes in regular elements took 0.004990676999999888 s
[0] info: creation of merged mesh took 0.00045707200000011383 s
[0] info: merge properties into merged mesh took 0.00034790700000009167 s
[0] info: writing mesh took 0.013056992999999961 s
Load: B, File 1, Benchmark: HM2b, Material: Greywacke
[0] info: Reading meshes took 0.011988545000000128 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9210000000047245e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0350000002066224e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001064350999999908 s
[0] info: Reset nodes in regular elements took 0.004911808999999989 s
[0] info: creation of merged mesh took 0.0004582040000000731 s
[0] info: merge properties into merged mesh took 0.00034669499999995246 s
[0] info: writing mesh took 0.01313162599999984 s
Load: F, File 0, Benchmark: HM2b, Material: Gneiss
[0] info: Reading meshes took 0.008189783000000173 s
[0] info: Collection of 2905 regular elements and computing element map took 1.972000000005636e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.324999999998468e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010634410000001093 s
[0] info: Reset nodes in regular elements took 0.004855783999999863 s
[0] info: creation of merged mesh took 0.0006113450000000409 s
[0] info: merge properties into merged mesh took 0.00034565300000011234 s
[0] info: writing mesh took 0.011488798000000022 s
Load: F, File 1, Benchmark: HM2b, Material: Greywacke
[0] info: Reading meshes took 0.005261819000000001 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3050000000180972e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.3840000000774353e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0007131799999999799 s
[0] info: Reset nodes in regular elements took 0.0029420860000000104 s
[0] info: creation of merged mesh took 0.0002890870000000767 s
[0] info: merge properties into merged mesh took 0.00025743999999994216 s
[0] info: writing mesh took 0.021540891999999978 s
Load: C, File 0, Benchmark: HM2b, Material: Gneiss
[0] info: Reading meshes took 0.008912046000000062 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9920999999811784e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0049999999448573e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010610770000001324 s
[0] info: Reset nodes in regular elements took 0.0048593989999998755 s
[0] info: creation of merged mesh took 0.0004733559999998693 s
[0] info: merge properties into merged mesh took 0.0003539069999998201 s
[0] info: writing mesh took 0.014027573000000126 s
Load: C, File 1, Benchmark: HM2b, Material: Greywacke
[0] info: Reading meshes took 0.012367610000000084 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9470000000021415e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.14499999998219e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010563500000000392 s
[0] info: Reset nodes in regular elements took 0.004901312000000102 s
[0] info: creation of merged mesh took 0.0004603269999998716 s
[0] info: merge properties into merged mesh took 0.0003286970000000444 s
[0] info: writing mesh took 0.013104655999999881 s
plotter.material_names = ["Gneiss", "Greywacke"]…
(click to toggle)
plotter.material_names = ["Gneiss", "Greywacke"]
plotter.vtu_file_names = {"VPF": vtu_files_dict_embedded_HM}
plotter.plot_avg_width_vs_stress(
benchmark_tag="HM2b",
metric="width",
methods_to_include=["VPF"],
pee_load_values=PEE_load_values,
external_data=external_data["average"],
w0=next(iter(materials.values()))["w_init"],
)
plotter.plot_avg_width_vs_stress(
benchmark_tag="HM2b",
metric="permeability",
methods_to_include=["VPF"],
pee_load_values=PEE_load_values,
external_data=external_data["average"],
w0=next(iter(materials.values()))["w_init"],
)[0] info: Reading meshes took 0.005621212999999958 s
[0] info: Collection of 2905 regular elements and computing element map took 2.4316999999829392e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 1.943000000004247e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006278709999998355 s
[0] info: Reset nodes in regular elements took 0.00293496400000004 s
[0] info: creation of merged mesh took 0.00029374399999992917 s
[0] info: merge properties into merged mesh took 0.00021788999999983183 s
[0] info: writing mesh took 0.006712604999999927 s
[0] info: Reading meshes took 0.010722347000000187 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0791999999936195e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3950000000171343e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001090421000000008 s
[0] info: Reset nodes in regular elements took 0.00483924899999999 s
[0] info: creation of merged mesh took 0.0004527749999998498 s
[0] info: merge properties into merged mesh took 0.000342207999999955 s
[0] info: writing mesh took 0.010683669000000062 s
[0] info: Reading meshes took 0.008194951000000117 s
[0] info: Collection of 2905 regular elements and computing element map took 2.8101999999918803e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.366999999838583e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001315272000000034 s
[0] info: Reset nodes in regular elements took 0.005185162999999937 s
[0] info: creation of merged mesh took 0.0004840419999998513 s
[0] info: merge properties into merged mesh took 0.00035518700000003456 s
[0] info: writing mesh took 0.011131738000000002 s
[0] info: Reading meshes took 0.011959159999999969 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0341000000145826e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.364999999977414e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001119866000000025 s
[0] info: Reset nodes in regular elements took 0.005276390000000131 s
[0] info: creation of merged mesh took 0.00048507399999997425 s
[0] info: merge properties into merged mesh took 0.00036277900000003527 s
[0] info: writing mesh took 0.010852926000000096 s
[0] info: Reading meshes took 0.008363574999999956 s
[0] info: Collection of 2905 regular elements and computing element map took 5.92889999999624e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.2169999998620256e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016741049999999813 s
[0] info: Reset nodes in regular elements took 0.005141876999999795 s
[0] info: creation of merged mesh took 0.0004852549999998512 s
[0] info: merge properties into merged mesh took 0.0003624489999998204 s
[0] info: writing mesh took 0.010425208000000019 s
[0] info: Reading meshes took 0.012223622000000045 s
[0] info: Collection of 2905 regular elements and computing element map took 2.5677999999862422e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0850000001247935e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011245829999999568 s
[0] info: Reset nodes in regular elements took 0.005126924000000033 s
[0] info: creation of merged mesh took 0.00048705699999995744 s
[0] info: merge properties into merged mesh took 0.0003708319999999876 s
[0] info: writing mesh took 0.01039643400000001 s
[0] info: Reading meshes took 0.00835268900000008 s
[0] info: Collection of 2905 regular elements and computing element map took 2.8312999999835498e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.526000000115715e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016040890000001973 s
[0] info: Reset nodes in regular elements took 0.007279294000000158 s
[0] info: creation of merged mesh took 0.00048084799999981165 s
[0] info: merge properties into merged mesh took 0.00037150299999999525 s
[0] info: writing mesh took 0.008513953000000019 s
[0] info: Reading meshes took 0.012379988000000175 s
[0] info: Collection of 2905 regular elements and computing element map took 2.8522999999891496e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.356000000038662e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001566262000000096 s
[0] info: Reset nodes in regular elements took 0.0051395330000001405 s
[0] info: creation of merged mesh took 0.0004891700000000387 s
[0] info: merge properties into merged mesh took 0.0003724140000000986 s
[0] info: writing mesh took 0.010369614000000027 s
[0] info: Reading meshes took 0.003560922000000133 s
[0] info: Collection of 2905 regular elements and computing element map took 1.4180999999835464e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.1539999999209414e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.000642102999999894 s
[0] info: Reset nodes in regular elements took 0.003049818999999898 s
[0] info: creation of merged mesh took 0.0002797530000000492 s
[0] info: merge properties into merged mesh took 0.0002310400000000712 s
[0] info: writing mesh took 0.007658006999999856 s
[0] info: Reading meshes took 0.00508425899999998 s
[0] info: Collection of 2905 regular elements and computing element map took 1.209900000009867e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.1429999998989757e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006445659999998465 s
[0] info: Reset nodes in regular elements took 0.0030275149999998696 s
[0] info: creation of merged mesh took 0.00028682400000001884 s
[0] info: merge properties into merged mesh took 0.0002288859999999282 s
[0] info: writing mesh took 0.007934515999999947 s
[0] info: Reading meshes took 0.010013994999999998 s
[0] info: Collection of 2905 regular elements and computing element map took 3.266899999987416e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.207999999923274e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0017141259999999825 s
[0] info: Reset nodes in regular elements took 0.00527915499999998 s
[0] info: creation of merged mesh took 0.000479866000000051 s
[0] info: merge properties into merged mesh took 0.0003629090000001334 s
[0] info: writing mesh took 0.011407655000000183 s
[0] info: Reading meshes took 0.012464956000000083 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9629000000076502e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.243999999957836e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010626090000001032 s
[0] info: Reset nodes in regular elements took 0.004939821000000011 s
[0] info: creation of merged mesh took 0.0004517539999999709 s
[0] info: merge properties into merged mesh took 0.0003452029999999606 s
[0] info: writing mesh took 0.010998054999999951 s
[0] info: Reading meshes took 0.007724687999999924 s
[0] info: Collection of 2905 regular elements and computing element map took 4.1042000000102163e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9750000001271815e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010389440000000416 s
[0] info: Reset nodes in regular elements took 0.004830644999999967 s
[0] info: creation of merged mesh took 0.0004565110000001038 s
[0] info: merge properties into merged mesh took 0.000488158999999877 s
[0] info: writing mesh took 0.009309667999999993 s
[0] info: Reading meshes took 0.013334914000000087 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9379000000041557e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3150000000592428e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010633310000001117 s
[0] info: Reset nodes in regular elements took 0.004853721000000144 s
[0] info: creation of merged mesh took 0.0004592150000000128 s
[0] info: merge properties into merged mesh took 0.0003677770000001246 s
[0] info: writing mesh took 0.012233646000000098 s
[0] info: Reading meshes took 0.009258881000000052 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9219000000125774e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.023999999962612e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001060936999999873 s
[0] info: Reset nodes in regular elements took 0.004838767000000077 s
[0] info: creation of merged mesh took 0.0004550089999999507 s
[0] info: merge properties into merged mesh took 0.00034506300000014534 s
[0] info: writing mesh took 0.010073194999999924 s
[0] info: Reading meshes took 0.013479613999999973 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9409000000081278e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9440000000047206e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001210103000000018 s
[0] info: Reset nodes in regular elements took 0.004855824000000064 s
[0] info: creation of merged mesh took 0.00046144800000003094 s
[0] info: merge properties into merged mesh took 0.00034517300000014295 s
[0] info: writing mesh took 0.010039023000000036 s
[0] info: Reading meshes took 0.008389544999999998 s
[0] info: Collection of 2905 regular elements and computing element map took 2.7690999999885335e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.95600000002716e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0015253200000000522 s
[0] info: Reset nodes in regular elements took 0.005231562000000078 s
[0] info: creation of merged mesh took 0.00047996699999997006 s
[0] info: merge properties into merged mesh took 0.0003583630000001392 s
[0] info: writing mesh took 0.009978951999999985 s
[0] info: Reading meshes took 0.014076768000000017 s
[0] info: Collection of 2905 regular elements and computing element map took 4.49880000001901e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.24799999990222e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001109410999999838 s
[0] info: Reset nodes in regular elements took 0.004916425999999863 s
[0] info: creation of merged mesh took 0.0004574120000000459 s
[0] info: merge properties into merged mesh took 0.0003439299999998813 s
[0] info: writing mesh took 0.010389674000000015 s
[0] info: Reading meshes took 0.009724797999999923 s
[0] info: Collection of 2905 regular elements and computing element map took 3.2377999999999574e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.387999999939552e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0018291699999999356 s
[0] info: Reset nodes in regular elements took 0.0064774290000000345 s
[0] info: creation of merged mesh took 0.00045130400000004123 s
[0] info: merge properties into merged mesh took 0.000345513000000075 s
[0] info: writing mesh took 0.010195320000000008 s
[0] info: Reading meshes took 0.009682932999999894 s
[0] info: Collection of 2905 regular elements and computing element map took 3.8788000000122835e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.95600000002716e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010713220000000412 s
[0] info: Reset nodes in regular elements took 0.00487049500000003 s
[0] info: creation of merged mesh took 0.00047757300000017544 s
[0] info: merge properties into merged mesh took 0.0003594239999999971 s
[0] info: writing mesh took 0.011216616000000013 s
[0] info: Reading meshes took 0.009805789000000065 s
[0] info: Collection of 2905 regular elements and computing element map took 3.281900000007276e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.977999999988825e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016762190000001453 s
[0] info: Reset nodes in regular elements took 0.004860080000000044 s
[0] info: creation of merged mesh took 0.00045695199999995495 s
[0] info: merge properties into merged mesh took 0.0003480869999998859 s
[0] info: writing mesh took 0.010847908999999989 s
[0] info: Reading meshes took 0.0119901280000001 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0171000000068773e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.254999999979802e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011197960000000062 s
[0] info: Reset nodes in regular elements took 0.0052141860000001206 s
[0] info: creation of merged mesh took 0.00048213999999990875 s
[0] info: merge properties into merged mesh took 0.00034542299999995585 s
[0] info: writing mesh took 0.010465417999999893 s
[0] info: Reading meshes took 0.005656625999999942 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9108999999906118e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9649999999659116e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010603460000000453 s
[0] info: Reset nodes in regular elements took 0.004914322000000082 s
[0] info: creation of merged mesh took 0.0004622499999999974 s
[0] info: merge properties into merged mesh took 0.00034069500000000197 s
[0] info: writing mesh took 0.01084121799999993 s
[0] info: Reading meshes took 0.006417698999999999 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3049999999958928e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.2029999999784167e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0008189699999998634 s
[0] info: Reset nodes in regular elements took 0.003107505999999871 s
[0] info: creation of merged mesh took 0.0002926140000001354 s
[0] info: merge properties into merged mesh took 0.00023498599999993708 s
[0] info: writing mesh took 0.007651216999999821 s
[0] info: Reading meshes took 0.007998842999999978 s
[0] info: Collection of 2905 regular elements and computing element map took 4.01510000000993e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.165000000082685e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010968110000000308 s
[0] info: Reset nodes in regular elements took 0.005213174000000098 s
[0] info: creation of merged mesh took 0.0004786649999999337 s
[0] info: merge properties into merged mesh took 0.0003792350000000333 s
[0] info: writing mesh took 0.011021139999999985 s
[0] info: Reading meshes took 0.010608675000000067 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9539999999818036e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.094000000203323e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010624190000001477 s
[0] info: Reset nodes in regular elements took 0.004862734000000035 s
[0] info: creation of merged mesh took 0.00046556500000005663 s
[0] info: merge properties into merged mesh took 0.0003392440000000718 s
[0] info: writing mesh took 0.00987315199999994 s
[0] info: Reading meshes took 0.003866404999999906 s
[0] info: Collection of 2905 regular elements and computing element map took 1.2439000000030731e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 1.992999999922418e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006398589999998539 s
[0] info: Reset nodes in regular elements took 0.0029624660000000524 s
[0] info: creation of merged mesh took 0.00027663899999996744 s
[0] info: merge properties into merged mesh took 0.00023164100000006016 s
[0] info: writing mesh took 0.010248940999999956 s
[0] info: Reading meshes took 0.013624563000000034 s
[0] info: Collection of 2905 regular elements and computing element map took 1.978999999985298e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.505999999875442e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010612770000000271 s
[0] info: Reset nodes in regular elements took 0.004865458000000045 s
[0] info: creation of merged mesh took 0.0004587550000001439 s
[0] info: merge properties into merged mesh took 0.0003532550000000523 s
[0] info: writing mesh took 0.010315823000000002 s
[0] info: Reading meshes took 0.00568978600000003 s
[0] info: Collection of 2905 regular elements and computing element map took 3.785699999991898e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.853999999885559e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010437800000000497 s
[0] info: Reset nodes in regular elements took 0.004913520999999976 s
[0] info: creation of merged mesh took 0.000460035999999997 s
[0] info: merge properties into merged mesh took 0.0003439809999998822 s
[0] info: writing mesh took 0.010919966999999975 s
[0] info: Reading meshes took 0.011253442000000113 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9149000000107108e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1439999998994494e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010645019999999672 s
[0] info: Reset nodes in regular elements took 0.00497560500000005 s
[0] info: creation of merged mesh took 0.00046195899999990075 s
[0] info: merge properties into merged mesh took 0.00034523300000000035 s
[0] info: writing mesh took 0.01062113500000006 s
[0] info: Reading meshes took 0.009674782000000048 s
[0] info: Collection of 2905 regular elements and computing element map took 3.271899999979233e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.038000000068266e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001530326999999998 s
[0] info: Reset nodes in regular elements took 0.00485104599999997 s
[0] info: creation of merged mesh took 0.00046512399999998344 s
[0] info: merge properties into merged mesh took 0.00034367999999984633 s
[0] info: writing mesh took 0.01029741400000006 s
[0] info: Reading meshes took 0.011404871000000094 s
[0] info: Collection of 2905 regular elements and computing element map took 5.406200000002137e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.254999999979802e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010658040000000035 s
[0] info: Reset nodes in regular elements took 0.0048543309999999895 s
[0] info: creation of merged mesh took 0.0004694809999998828 s
[0] info: merge properties into merged mesh took 0.00035695100000010527 s
[0] info: writing mesh took 0.011231619000000137 s
[0] info: Reading meshes took 0.005962819999999924 s
[0] info: Collection of 2905 regular elements and computing element map took 4.412699999978287e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.264999999919027e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011019189999998957 s
[0] info: Reset nodes in regular elements took 0.005243501000000039 s
[0] info: creation of merged mesh took 0.00048680700000014454 s
[0] info: merge properties into merged mesh took 0.00036737600000003034 s
[0] info: writing mesh took 0.010244323 s
[0] info: Reading meshes took 0.013982946000000052 s
[0] info: Collection of 2905 regular elements and computing element map took 3.324999999998468e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.097999999925662e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012398670000000056 s
[0] info: Reset nodes in regular elements took 0.004925790000000152 s
[0] info: creation of merged mesh took 0.0004542579999999852 s
[0] info: merge properties into merged mesh took 0.00035322500000001256 s
[0] info: writing mesh took 0.010049559000000041 s
[0] info: Reading meshes took 0.006564420999999987 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9178000000064088e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.034999999984578e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010609470000000343 s
[0] info: Reset nodes in regular elements took 0.004844475999999931 s
[0] info: creation of merged mesh took 0.0004621700000000395 s
[0] info: merge properties into merged mesh took 0.00034388100000004584 s
[0] info: writing mesh took 0.009978381000000036 s
[0] info: Reading meshes took 0.008196351999999907 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9379000000041557e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.154999999921415e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010572910000001823 s
[0] info: Reset nodes in regular elements took 0.004879079000000175 s
[0] info: creation of merged mesh took 0.00046485400000007004 s
[0] info: merge properties into merged mesh took 0.0003427590000000258 s
[0] info: writing mesh took 0.010590438000000146 s
[0] info: Reading meshes took 0.008452150000000103 s
[0] info: Collection of 2905 regular elements and computing element map took 5.749700000001745e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.4470000000185195e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0018253850000000682 s
[0] info: Reset nodes in regular elements took 0.00526404200000008 s
[0] info: creation of merged mesh took 0.0005479390000000528 s
[0] info: merge properties into merged mesh took 0.00037515799999998656 s
[0] info: writing mesh took 0.01018166900000006 s
[0] info: Reading meshes took 0.008983884999999914 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9320000000044857e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.034999999984578e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001056639999999831 s
[0] info: Reset nodes in regular elements took 0.004922696000000171 s
[0] info: creation of merged mesh took 0.0004554200000002062 s
[0] info: merge properties into merged mesh took 0.00034436199999987593 s
[0] info: writing mesh took 0.012927557000000034 s
[0] info: Reading meshes took 0.008118655000000086 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9760000000035305e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1350000000429645e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011478879999999858 s
[0] info: Reset nodes in regular elements took 0.0048861900000001235 s
[0] info: creation of merged mesh took 0.00046453400000001643 s
[0] info: merge properties into merged mesh took 0.0003481270000000869 s
[0] info: writing mesh took 0.010883842000000143 s
[0] info: Reading meshes took 0.013619154999999994 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9360000000023803e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.055000000085073e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011482689999999796 s
[0] info: Reset nodes in regular elements took 0.004856333999999851 s
[0] info: creation of merged mesh took 0.0004612079999999352 s
[0] info: merge properties into merged mesh took 0.0003398750000001005 s
[0] info: writing mesh took 0.00853407500000003 s
[0] info: Reading meshes took 0.004642080000000215 s
[0] info: Collection of 2905 regular elements and computing element map took 2.4656999999983498e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 1.9229999999037517e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006321169999998766 s
[0] info: Reset nodes in regular elements took 0.002964168999999961 s
[0] info: creation of merged mesh took 0.0002793530000000377 s
[0] info: merge properties into merged mesh took 0.00021594700000004963 s
[0] info: writing mesh took 0.00972432599999995 s
[0] info: Reading meshes took 0.011448016999999977 s
[0] info: Collection of 2905 regular elements and computing element map took 2.6128999999874836e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.516000000036712e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001073335000000064 s
[0] info: Reset nodes in regular elements took 0.004844056000000041 s
[0] info: creation of merged mesh took 0.0005932880000001362 s
[0] info: merge properties into merged mesh took 0.0003452930000000798 s
[0] info: writing mesh took 0.011798126999999825 s
[0] info: Reading meshes took 0.008978336999999836 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9659999999976918e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0440000000631073e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011086389999999113 s
[0] info: Reset nodes in regular elements took 0.004865218000000171 s
[0] info: creation of merged mesh took 0.000459825999999941 s
[0] info: merge properties into merged mesh took 0.0003401249999999134 s
[0] info: writing mesh took 0.010054725999999903 s
[0] info: Reading meshes took 0.008201009000000203 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9328999999901342e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0239999997405675e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001059674000000177 s
[0] info: Reset nodes in regular elements took 0.004933070999999956 s
[0] info: creation of merged mesh took 0.000460217000000096 s
[0] info: merge properties into merged mesh took 0.00034719500000002235 s
[0] info: writing mesh took 0.013273421000000063 s
[0] info: Reading meshes took 0.008265887999999944 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9680000000077413e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9850000000664068e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010668149999999432 s
[0] info: Reset nodes in regular elements took 0.004847922000000171 s
[0] info: creation of merged mesh took 0.000463131000000061 s
[0] info: merge properties into merged mesh took 0.0004089089999999018 s
[0] info: writing mesh took 0.009625706000000012 s
[0] info: Reading meshes took 0.011623031000000061 s
[0] info: Collection of 2905 regular elements and computing element map took 1.943000000004247e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.044999999923803e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010653540000000739 s
[0] info: Reset nodes in regular elements took 0.004946010000000056 s
[0] info: creation of merged mesh took 0.000501730000000089 s
[0] info: merge properties into merged mesh took 0.0003440510000001229 s
[0] info: writing mesh took 0.010600032000000148 s
[0] info: Reading meshes took 0.008997915999999773 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9650000000037693e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.063999999941558e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011078280000000884 s
[0] info: Reset nodes in regular elements took 0.00486141200000012 s
[0] info: creation of merged mesh took 0.00045708200000005306 s
[0] info: merge properties into merged mesh took 0.00036133800000004435 s
[0] info: writing mesh took 0.013327563000000042 s
[0] info: Reading meshes took 0.011677394000000119 s
[0] info: Collection of 2905 regular elements and computing element map took 1.898899999996928e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.544999999993692e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010547379999998885 s
[0] info: Reset nodes in regular elements took 0.004941523000000059 s
[0] info: creation of merged mesh took 0.00046709699999980536 s
[0] info: merge properties into merged mesh took 0.0003397339999997584 s
[0] info: writing mesh took 0.010811082000000027 s
[0] info: Reading meshes took 0.009650594000000012 s
[0] info: Collection of 2905 regular elements and computing element map took 6.534799999990959e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.228000000023769e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0018105019999998806 s
[0] info: Reset nodes in regular elements took 0.0049913880000000965 s
[0] info: creation of merged mesh took 0.000459825999999941 s
[0] info: merge properties into merged mesh took 0.00034357000000007076 s
[0] info: writing mesh took 0.010656408000000006 s
[0] info: Reading meshes took 0.011962124999999713 s
[0] info: Collection of 2905 regular elements and computing element map took 1.869799999987265e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0450000001458477e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010604559999998209 s
[0] info: Reset nodes in regular elements took 0.004896725000000046 s
[0] info: creation of merged mesh took 0.00044826900000005665 s
[0] info: merge properties into merged mesh took 0.0003386229999997603 s
[0] info: writing mesh took 0.010636047000000204 s
[0] info: Reading meshes took 0.009678516999999998 s
[0] info: Collection of 2905 regular elements and computing element map took 3.25189999998976e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.108000000086932e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001585111000000028 s
[0] info: Reset nodes in regular elements took 0.00495659599999998 s
[0] info: creation of merged mesh took 0.00045854499999986587 s
[0] info: merge properties into merged mesh took 0.0003357390000000571 s
[0] info: writing mesh took 0.010603717999999818 s
[0] info: Reading meshes took 0.012381721000000123 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9600000000119522e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4049999999563596e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011584039999998907 s
[0] info: Reset nodes in regular elements took 0.004830023999999877 s
[0] info: creation of merged mesh took 0.00046842999999996415 s
[0] info: merge properties into merged mesh took 0.0003383729999999474 s
[0] info: writing mesh took 0.010643428000000066 s
[0] info: Reading meshes took 0.009800983000000096 s
[0] info: Collection of 2905 regular elements and computing element map took 6.515900000003683e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.937999999787834e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0018068860000000075 s
[0] info: Reset nodes in regular elements took 0.004898818999999888 s
[0] info: creation of merged mesh took 0.00045738200000000617 s
[0] info: merge properties into merged mesh took 0.00035671999999986603 s
[0] info: writing mesh took 0.009969266999999782 s
[0] info: Reading meshes took 0.01115342000000008 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9519999999939586e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.264999999919027e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010547670000000675 s
[0] info: Reset nodes in regular elements took 0.00496094299999994 s
[0] info: creation of merged mesh took 0.00045521899999978466 s
[0] info: merge properties into merged mesh took 0.00034247899999995113 s
[0] info: writing mesh took 0.011503871000000165 s
[0] info: Reading meshes took 0.009631665999999983 s
[0] info: Collection of 2905 regular elements and computing element map took 3.291000000005262e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.417999999979273e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016080149999999627 s
[0] info: Reset nodes in regular elements took 0.0048531800000000125 s
[0] info: creation of merged mesh took 0.0004623909999998954 s
[0] info: merge properties into merged mesh took 0.0003401149999999742 s
[0] info: writing mesh took 0.01034983300000003 s
[0] info: Reading meshes took 0.011665085000000186 s
[0] info: Collection of 2905 regular elements and computing element map took 1.917900000014683e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.8739999999860544e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001067066000000061 s
[0] info: Reset nodes in regular elements took 0.004841181999999833 s
[0] info: creation of merged mesh took 0.00046170999999994855 s
[0] info: merge properties into merged mesh took 0.00033931399999986844 s
[0] info: writing mesh took 0.00998304800000005 s
[0] info: Reading meshes took 0.009045949000000109 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0401000000003222e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.14499999998219e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001061538000000084 s
[0] info: Reset nodes in regular elements took 0.005015626000000051 s
[0] info: creation of merged mesh took 0.0004680990000001106 s
[0] info: merge properties into merged mesh took 0.00034832800000006436 s
[0] info: writing mesh took 0.008386600999999994 s
[0] info: Reading meshes took 0.005106843999999944 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3591000000090503e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.40300000009519e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.000639347999999984 s
[0] info: Reset nodes in regular elements took 0.0029831579999999303 s
[0] info: creation of merged mesh took 0.00029037999999981245 s
[0] info: merge properties into merged mesh took 0.00022836599999997986 s
[0] info: writing mesh took 0.005869898999999901 s
[0] info: Reading meshes took 0.0038190740000001444 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9500000000061135e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.003999999862117e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0008015640000000879 s
[0] info: Reset nodes in regular elements took 0.0030512299999998493 s
[0] info: creation of merged mesh took 0.0003041300000001801 s
[0] info: merge properties into merged mesh took 0.00025394400000000594 s
[0] info: writing mesh took 0.012099972999999986 s
[0] info: Reading meshes took 0.005493589999999937 s
[0] info: Collection of 2905 regular elements and computing element map took 2.403699999997677e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4859999999969915e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.000726360000000037 s
[0] info: Reset nodes in regular elements took 0.003056077999999962 s
[0] info: creation of merged mesh took 0.00030224700000003324 s
[0] info: merge properties into merged mesh took 0.0002559280000000719 s
[0] info: writing mesh took 0.011847571999999973 s
[0] info: Reading meshes took 0.0037824690000001215 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3740999999845016e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.2029999999784167e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006720479999999807 s
[0] info: Reset nodes in regular elements took 0.003085382000000081 s
[0] info: creation of merged mesh took 0.00029098100000002347 s
[0] info: merge properties into merged mesh took 0.0002473539999998664 s
[0] info: writing mesh took 0.007687712000000069 s
[0] info: Reading meshes took 0.005471666000000042 s
[0] info: Collection of 2905 regular elements and computing element map took 2.424700000003277e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 7.732000000038042e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006768749999999102 s
[0] info: Reset nodes in regular elements took 0.0031174910000000278 s
[0] info: creation of merged mesh took 0.000304351000000036 s
[0] info: merge properties into merged mesh took 0.0002548860000000097 s
[0] info: writing mesh took 0.016142184999999865 s
[0] info: Reading meshes took 0.0037592829999999466 s
[0] info: Collection of 2905 regular elements and computing element map took 1.342100000001345e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.4140000001171558e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006662589999999469 s
[0] info: Reset nodes in regular elements took 0.003041135000000139 s
[0] info: creation of merged mesh took 0.0002952769999999827 s
[0] info: merge properties into merged mesh took 0.0002467530000000995 s
[0] info: writing mesh took 0.007992973999999986 s
[0] info: Reading meshes took 0.00531044199999986 s
[0] info: Collection of 2905 regular elements and computing element map took 1.472199999996704e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.513999999953498e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006660880000000091 s
[0] info: Reset nodes in regular elements took 0.003048947000000135 s
[0] info: creation of merged mesh took 0.0002939849999998856 s
[0] info: merge properties into merged mesh took 0.00024899699999991753 s
[0] info: writing mesh took 0.009959132000000093 s
[0] info: Reading meshes took 0.0037304590000002413 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3720999999966565e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.1129999998592552e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006691830000000731 s
[0] info: Reset nodes in regular elements took 0.0030407249999999664 s
[0] info: creation of merged mesh took 0.00029399500000004686 s
[0] info: merge properties into merged mesh took 0.0002495169999998659 s
[0] info: writing mesh took 0.010293026999999899 s
[0] info: Reading meshes took 0.005352956000000075 s
[0] info: Collection of 2905 regular elements and computing element map took 1.4211999999957925e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.723999999787452e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0008080740000000475 s
[0] info: Reset nodes in regular elements took 0.003038120000000033 s
[0] info: creation of merged mesh took 0.00030100500000007635 s
[0] info: merge properties into merged mesh took 0.00024608200000009184 s
[0] info: writing mesh took 0.011696413000000128 s
[0] info: Reading meshes took 0.0038119930000000135 s
[0] info: Collection of 2905 regular elements and computing element map took 2.084200000007641e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.95600000002716e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0007059990000000127 s
[0] info: Reset nodes in regular elements took 0.0030456119999999753 s
[0] info: creation of merged mesh took 0.00030145699999994946 s
[0] info: merge properties into merged mesh took 0.0002539340000000667 s
[0] info: writing mesh took 0.011086198999999963 s
[0] info: Reading meshes took 0.005349730999999913 s
[0] info: Collection of 2905 regular elements and computing element map took 1.425199999993687e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.4439999999348316e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006740610000000036 s
[0] info: Reset nodes in regular elements took 0.0030527029999998234 s
[0] info: creation of merged mesh took 0.000297390000000064 s
[0] info: merge properties into merged mesh took 0.00024436000000016556 s
[0] info: writing mesh took 0.008710250999999891 s
[0] info: Reading meshes took 0.0037416359999999926 s
[0] info: Collection of 2905 regular elements and computing element map took 3.05760000001154e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.3940000000166606e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.000659919999999925 s
[0] info: Reset nodes in regular elements took 0.003042678000000132 s
[0] info: creation of merged mesh took 0.0002896690000000479 s
[0] info: merge properties into merged mesh took 0.00024314800000002634 s
[0] info: writing mesh took 0.0067154600000001174 s
[0] info: Reading meshes took 0.005451915999999946 s
[0] info: Collection of 2905 regular elements and computing element map took 2.2283999999928028e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.846000000029548e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006756829999998715 s
[0] info: Reset nodes in regular elements took 0.003109688999999971 s
[0] info: creation of merged mesh took 0.0004571630000000937 s
[0] info: merge properties into merged mesh took 0.00026238700000003057 s
[0] info: writing mesh took 0.013757795000000073 s
[0] info: Reading meshes took 0.0038602860000001016 s
[0] info: Collection of 2905 regular elements and computing element map took 2.234400000000747e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.874999999986528e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0007348620000000583 s
[0] info: Reset nodes in regular elements took 0.003067365000000155 s
[0] info: creation of merged mesh took 0.00030240800000003176 s
[0] info: merge properties into merged mesh took 0.0002580309999999919 s
[0] info: writing mesh took 0.0072805959999999725 s
[0] info: Reading meshes took 0.012835248000000021 s
[0] info: Collection of 2905 regular elements and computing element map took 2.9955000000025933e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.836999999868752e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0015159060000000668 s
[0] info: Reset nodes in regular elements took 0.005301988999999896 s
[0] info: creation of merged mesh took 0.0005011889999999575 s
[0] info: merge properties into merged mesh took 0.00037915399999999266 s
[0] info: writing mesh took 0.012432096999999809 s
[0] info: Reading meshes took 0.008541335000000094 s
[0] info: Collection of 2905 regular elements and computing element map took 4.2394000000056664e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1350000000429645e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011377530000000746 s
[0] info: Reset nodes in regular elements took 0.005410825000000008 s
[0] info: creation of merged mesh took 0.0004907230000001928 s
[0] info: merge properties into merged mesh took 0.00037386599999988945 s
[0] info: writing mesh took 0.010970833999999874 s
[0] info: Reading meshes took 0.0059359089999999615 s
[0] info: Collection of 2905 regular elements and computing element map took 1.3790999999985232e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 1.9730000000439674e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006550720000000343 s
[0] info: Reset nodes in regular elements took 0.003053965000000103 s
[0] info: creation of merged mesh took 0.0003012659999999112 s
[0] info: merge properties into merged mesh took 0.000241676000000135 s
[0] info: writing mesh took 0.008580094000000038 s
[0] info: Reading meshes took 0.008346028999999922 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1182000000008472e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.254999999979802e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011388549999999942 s
[0] info: Reset nodes in regular elements took 0.005398245000000079 s
[0] info: creation of merged mesh took 0.0004951190000002104 s
[0] info: merge properties into merged mesh took 0.00037407599999994545 s
[0] info: writing mesh took 0.010426078999999921 s
[0] info: Reading meshes took 0.00517797100000017 s
[0] info: Collection of 2905 regular elements and computing element map took 1.2198999999935012e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.233000000018137e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006544809999999845 s
[0] info: Reset nodes in regular elements took 0.002982537000000063 s
[0] info: creation of merged mesh took 0.00028439999999996246 s
[0] info: merge properties into merged mesh took 0.00022883699999987073 s
[0] info: writing mesh took 0.010132824999999901 s
[0] info: Reading meshes took 0.009176177000000063 s
[0] info: Collection of 2905 regular elements and computing element map took 4.333600000006044e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3150000000592428e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011225400000001162 s
[0] info: Reset nodes in regular elements took 0.005264121000000177 s
[0] info: creation of merged mesh took 0.0004989860000002011 s
[0] info: merge properties into merged mesh took 0.0003852340000001231 s
[0] info: writing mesh took 0.010586711999999832 s
[0] info: Reading meshes took 0.011974463999999907 s
[0] info: Collection of 2905 regular elements and computing element map took 2.6660000000067186e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3550000000381885e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011390460000000324 s
[0] info: Reset nodes in regular elements took 0.004945800000000222 s
[0] info: creation of merged mesh took 0.00046694700000005085 s
[0] info: merge properties into merged mesh took 0.00035668000000010913 s
[0] info: writing mesh took 0.010372307999999997 s
[0] info: Reading meshes took 0.007959092999999973 s
[0] info: Collection of 2905 regular elements and computing element map took 2.793299999992449e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.435999999996554e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011182940000000752 s
[0] info: Reset nodes in regular elements took 0.004855682999999944 s
[0] info: creation of merged mesh took 0.000460636999999986 s
[0] info: merge properties into merged mesh took 0.00033737100000008624 s
[0] info: writing mesh took 0.011002351999999993 s
[0] info: Reading meshes took 0.008199647000000088 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9500000000061135e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3950000000171343e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010615880000000022 s
[0] info: Reset nodes in regular elements took 0.0049341720000000144 s
[0] info: creation of merged mesh took 0.00045795400000003816 s
[0] info: merge properties into merged mesh took 0.0003435599999999095 s
[0] info: writing mesh took 0.01011434599999994 s
array([ 1000000. , 2318019.48466054, 5500000. ,
8681980.51533946, 10000000. ])
vpf_profiles = {}…
(click to toggle)
vpf_profiles = {}
for load_case, file_list in plotter.vtu_file_names["VPF"].items():
vpf_profiles[load_case] = plotter.extract_vpf_width_from_list(
file_list,
plotter.material_names,
)
plotter.plot_fracture_aperture_profiles(
widthProfile=vpf_profiles,
benchmark_tag="HM2b",
downsample=1,
ylim=(0, 10e-6),
method_label="VPF",
external_data=external_data["widthProfile"],
)[0] info: Reading meshes took 0.005965914999999988 s
[0] info: Collection of 2905 regular elements and computing element map took 4.1862999999864314e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1550000001434597e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010991340000001681 s
[0] info: Reset nodes in regular elements took 0.005229448999999997 s
[0] info: creation of merged mesh took 0.0004935870000000175 s
[0] info: merge properties into merged mesh took 0.00036169799999985486 s
[0] info: writing mesh took 0.010282782000000212 s
[0] info: Reading meshes took 0.012667403000000022 s
[0] info: Collection of 2905 regular elements and computing element map took 2.8684000000112064e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.5070000000979604e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016329630000000428 s
[0] info: Reset nodes in regular elements took 0.004854191000000174 s
[0] info: creation of merged mesh took 0.0004664970000001212 s
[0] info: merge properties into merged mesh took 0.0003558990000001039 s
[0] info: writing mesh took 0.009967515000000038 s
[0] info: Reading meshes took 0.00836451699999996 s
[0] info: Collection of 2905 regular elements and computing element map took 2.8582999999748893e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.265999999919501e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001589837999999899 s
[0] info: Reset nodes in regular elements took 0.0069744819999999486 s
[0] info: creation of merged mesh took 0.0004853750000000101 s
[0] info: merge properties into merged mesh took 0.0003674369999999705 s
[0] info: writing mesh took 0.010745022000000048 s
[0] info: Reading meshes took 0.005550936000000117 s
[0] info: Collection of 2905 regular elements and computing element map took 2.3836999999859998e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.565999999954883e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.000681501999999945 s
[0] info: Reset nodes in regular elements took 0.0031734059999999342 s
[0] info: creation of merged mesh took 0.0003210160000000073 s
[0] info: merge properties into merged mesh took 0.00028784700000006325 s
[0] info: writing mesh took 0.010804903000000143 s
[0] info: Reading meshes took 0.008463317000000137 s
[0] info: Collection of 2905 regular elements and computing element map took 2.898400000006518e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.47700000005824e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016037989999999613 s
[0] info: Reset nodes in regular elements took 0.00681867600000019 s
[0] info: creation of merged mesh took 0.00047903599999998825 s
[0] info: merge properties into merged mesh took 0.0003848230000000896 s
[0] info: writing mesh took 0.01164105900000001 s
[0] info: Reading meshes took 0.011514416999999888 s
[0] info: Collection of 2905 regular elements and computing element map took 1.970999999989509e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1039999999205037e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012421309999997021 s
[0] info: Reset nodes in regular elements took 0.005212563999999809 s
[0] info: creation of merged mesh took 0.000489701000000009 s
[0] info: merge properties into merged mesh took 0.00037086200000002734 s
[0] info: writing mesh took 0.011002010999999978 s
[0] info: Reading meshes took 0.0036768980000001505 s
[0] info: Collection of 2905 regular elements and computing element map took 1.2508999999827353e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.063000000163129e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0006450969999998168 s
[0] info: Reset nodes in regular elements took 0.002945972000000019 s
[0] info: creation of merged mesh took 0.0003485879999998165 s
[0] info: merge properties into merged mesh took 0.00023900200000004368 s
[0] info: writing mesh took 0.010184854000000021 s
[0] info: Reading meshes took 0.015041497999999986 s
[0] info: Collection of 2905 regular elements and computing element map took 2.9674999999951268e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.467000000119015e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0015820259999999031 s
[0] info: Reset nodes in regular elements took 0.005123669999999914 s
[0] info: creation of merged mesh took 0.0004831009999999303 s
[0] info: merge properties into merged mesh took 0.0003583519999998952 s
[0] info: writing mesh took 0.01028600699999993 s
[0] info: Reading meshes took 0.00805059099999994 s
[0] info: Collection of 2905 regular elements and computing element map took 0.0001294860000000675 s
[0] info: Collection of 2844 nodes and computing offsets took 4.185999999961609e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012725869999998807 s
[0] info: Reset nodes in regular elements took 0.0051220160000000625 s
[0] info: creation of merged mesh took 0.0004914650000000798 s
[0] info: merge properties into merged mesh took 0.00036067699999997593 s
[0] info: writing mesh took 0.010727224999999896 s
[0] info: Reading meshes took 0.012471265999999925 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9328999999901342e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 8.462999999903076e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.00106104600000001 s
[0] info: Reset nodes in regular elements took 0.004832758999999909 s
[0] info: creation of merged mesh took 0.000466225999999903 s
[0] info: merge properties into merged mesh took 0.0003426089999998272 s
[0] info: writing mesh took 0.013595078000000038 s
[0] info: Reading meshes took 0.009760801000000097 s
[0] info: Collection of 2905 regular elements and computing element map took 3.306000000002918e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.228000000023769e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0019606090000001686 s
[0] info: Reset nodes in regular elements took 0.005116086999999991 s
[0] info: creation of merged mesh took 0.00045732300000000947 s
[0] info: merge properties into merged mesh took 0.000350721999999859 s
[0] info: writing mesh took 0.011547457000000039 s
[0] info: Reading meshes took 0.00997802999999986 s
[0] info: Collection of 2905 regular elements and computing element map took 1.8317999999961643e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3849999998558644e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001058431999999998 s
[0] info: Reset nodes in regular elements took 0.004971709000000324 s
[0] info: creation of merged mesh took 0.00045443800000000145 s
[0] info: merge properties into merged mesh took 0.00034688499999990796 s
[0] info: writing mesh took 0.010060936000000131 s
[0] info: Reading meshes took 0.0056235760000000745 s
[0] info: Collection of 2905 regular elements and computing element map took 1.926999999990464e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9850000000664068e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010574210000000583 s
[0] info: Reset nodes in regular elements took 0.004893390999999969 s
[0] info: creation of merged mesh took 0.0004558910000000971 s
[0] info: merge properties into merged mesh took 0.00034790700000009167 s
[0] info: writing mesh took 0.010897473000000213 s
[0] info: Reading meshes took 0.013532784000000131 s
[0] info: Collection of 2905 regular elements and computing element map took 8.802399999985333e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 8.922999999994019e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016419460000001163 s
[0] info: Reset nodes in regular elements took 0.0048878619999999096 s
[0] info: creation of merged mesh took 0.000481940000000014 s
[0] info: merge properties into merged mesh took 0.0003594840000000765 s
[0] info: writing mesh took 0.010211715000000066 s
[0] info: Reading meshes took 0.008529135999999937 s
[0] info: Collection of 2905 regular elements and computing element map took 2.920399999983836e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.696999999831419e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0015917810000001253 s
[0] info: Reset nodes in regular elements took 0.005133453999999871 s
[0] info: creation of merged mesh took 0.0004921250000000654 s
[0] info: merge properties into merged mesh took 0.0003589539999999669 s
[0] info: writing mesh took 0.011649301999999917 s
[0] info: Reading meshes took 0.008981061000000068 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9628999999854457e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1250000001037392e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001076889999999997 s
[0] info: Reset nodes in regular elements took 0.004969354999999842 s
[0] info: creation of merged mesh took 0.00046839900000006374 s
[0] info: merge properties into merged mesh took 0.0003462039999999611 s
[0] info: writing mesh took 0.011809573999999934 s
[0] info: Reading meshes took 0.00861718999999983 s
[0] info: Collection of 2905 regular elements and computing element map took 3.775700000008264e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.974000000044441e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010385319999999254 s
[0] info: Reset nodes in regular elements took 0.004854640999999882 s
[0] info: creation of merged mesh took 0.0004574229999998458 s
[0] info: merge properties into merged mesh took 0.0003452720000001186 s
[0] info: writing mesh took 0.009916987999999849 s
[0] info: Reading meshes took 0.012365716000000138 s
[0] info: Collection of 2905 regular elements and computing element map took 2.5347999999869586e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.283999999936782e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001063079999999994 s
[0] info: Reset nodes in regular elements took 0.005082146000000121 s
[0] info: creation of merged mesh took 0.000481168999999948 s
[0] info: merge properties into merged mesh took 0.00036444199999996485 s
[0] info: writing mesh took 0.009974694999999922 s
[0] info: Reading meshes took 0.005637557000000015 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9078999999866397e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0250000000453525e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010580110000000253 s
[0] info: Reset nodes in regular elements took 0.004912468999999975 s
[0] info: creation of merged mesh took 0.0004552390000001072 s
[0] info: merge properties into merged mesh took 0.00034853800000012036 s
[0] info: writing mesh took 0.010799604000000018 s
[0] info: Reading meshes took 0.014041152999999973 s
[0] info: Collection of 2905 regular elements and computing element map took 3.331000000006412e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.338000000021381e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001202029999999965 s
[0] info: Reset nodes in regular elements took 0.00488521800000008 s
[0] info: creation of merged mesh took 0.0004623699999999342 s
[0] info: merge properties into merged mesh took 0.0003482979999998026 s
[0] info: writing mesh took 0.009992532000000054 s
We performed five hydro-mechanical (HMca) simulations with different angles between the second principal stress direction (σ₂ = 10 MPa) and the PEE 5 fracture plane $\Gamma = [-0.094,\,0.094]\times\{0\}.$ The initial pore pressure was uniform at $p_0 = 0.1$ MPa, with Dirichlet conditions $p(-0.094,0)=p(0.094,0)=3.45\text{ MPa}.$ After equilibrating for 3000 s, we injected fluid at the center at a rate $ Q_0^{\text{v}}(0,0)=4.167\times10^{-7}\,\mathrm{m}^3/\mathrm{s}\;(25\,\mathrm{ml/min})$ for 500 s, starting from an initial fracture aperture $w_{\text{ini}}=1\times10^{-6}$ m.
# Times for load curves…
(click to toggle)
# Times for load curves
times = "0.0 1000. 3500"
simulation_end_time = 3500.0
n_fracture_p_ncs = 3
model_type = "HM2a"
output_prefix = "HM2a_VPF"
# Load
PEE_load_values = {
"A": [10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6, 7.80e6, 9.95e6],
# "E": [9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6, 7.80e6],
# "B": [7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6, 3.82e6],
# "F": [3.82e6, 7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6, 1.0e6],
# "C": [1.0e6, 3.82e6, 7.80e6, 9.95e6, 10.0e6, 6.64e6, 4.46e6, 1.17e6],
}
# To save time, we only run the first load case A.
# If you want to run all load cases, uncomment the lines above.
for p in materials.values():
p["fluid"][
"injectionFlowRate_Inlet"
] = 4.167e-7 # Injection flow rate m³/s (25 ml/min)
# Project file
prj_file = Path("HM2a_VPF.prj")
prj = ot.Project(input_file=prj_file, output_file=Path(out_dir, f"{output_prefix}.prj"))sing_ogs_model = SingleOGSModel(…
(click to toggle)
sing_ogs_model = SingleOGSModel(
model=prj,
out_dir=out_dir,
mesh_path=mesh_path_VPF,
output_prefix=output_prefix,
method="VPF",
n_fracture_p_ncs=n_fracture_p_ncs,
model_type=model_type,
materials=materials,
n_mpi=2,
)
vtu_files_dict_full_HM = sing_ogs_model.run_simulations_with_fracture(
times=times,
base_project_file=prj_file,
mesh_path=mesh_path_VPF,
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",
crack_type="full",
fracture_model_type="Isotropic",
mesh_size=h,
n_mpi=2,
)[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/HM2a_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/mesh_GreatCell_VPF with crack type: full and h1: 0.001
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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.0133066 s.
[0] info: Total CPU time: 0.013168 s.
[0] info: Mesh 'domain' read: 2753 nodes, 2905 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/mesh_GreatCell_VPF/domain.mesh" 2
******************************************************************************
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/mesh_GreatCell_VPF/domain.mesh, #Elements: 2905, #Nodes: 2753, #Parts: 2
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: 117.
Timing Information ----------------------------------------------------------
I/O: 0.001 sec
Partitioning: 0.002 sec (METIS time)
Reporting: 0.000 sec
Memory Information ----------------------------------------------------------
Max memory used: 0.899 MB
rusage.ru_maxrss: 109.219 MB
proc/self/stat/VmPeak: 27.105 MB
******************************************************************************
[0] info: Partitioning the mesh in the node wise way ...
[0] info: partitionMesh(): Partition IDs per element computed in 0.000235006 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.3741e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 0.000174223 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 9.6967e-05 s
[0] info: partitionMesh(): distribute elements into partitions took 7.5455e-05 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.6325e-05 s
[0] info: partitionMesh(): markDuplicateGhostCells took 7.71e-07 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/mesh_GreatCell_VPF/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 3.11e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.71e-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.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5e-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.5e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.41e-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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.7e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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 2.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.11e-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.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2e-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/mesh_GreatCell_VPF/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.41e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.7e-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/mesh_GreatCell_VPF/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 4.21e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.21e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 9.51e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 6.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 1.372e-06 s
[0] info: partitionMesh(): markDuplicateGhostCells took 5e-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/mesh_GreatCell_VPF/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 4.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.41e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.81e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.41e-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/mesh_GreatCell_VPF/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 4.81e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.62e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.1e-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/mesh_GreatCell_VPF/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 4.41e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.61e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 1.002e-06 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 2.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.51e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.11e-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/mesh_GreatCell_VPF/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 4.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.6e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.11e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.6e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 4.8e-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/mesh_GreatCell_VPF/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 4.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.5e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.71e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.91e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3e-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/mesh_GreatCell_VPF/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 4.71e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.9e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.62e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.81e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.91e-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/mesh_GreatCell_VPF/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 5.01e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.41e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.71e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.81e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.31e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.01e-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/mesh_GreatCell_VPF/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 4.61e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.1e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.61e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.71e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.01e-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/mesh_GreatCell_VPF/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 4.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.11e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.8e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 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/mesh_GreatCell_VPF/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 4.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.7e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 9.02e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.81e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.8e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.11e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 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/mesh_GreatCell_VPF/PEE1.vtu' read: 3 nodes, 2 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 4.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 9.41e-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 5.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.3e-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/mesh_GreatCell_VPF/PEE1a.vtu' read: 3 nodes, 2 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 4.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.91e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 9.02e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.9e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.11e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.51e-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/mesh_GreatCell_VPF/PEE2.vtu' read: 3 nodes, 2 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.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 5.21e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.71e-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 5.61e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3e-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/mesh_GreatCell_VPF/PEE2a.vtu' read: 3 nodes, 2 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 4.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 9.02e-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 5.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 4.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.91e-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/mesh_GreatCell_VPF/PEE3.vtu' read: 3 nodes, 2 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.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.1758e-05 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.31e-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 5.41e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.4e-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/mesh_GreatCell_VPF/PEE3a.vtu' read: 3 nodes, 2 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 4.41e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.31e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.81e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 5.71e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.01e-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/mesh_GreatCell_VPF/PEE4.vtu' read: 3 nodes, 2 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 4.31e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 4.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 8.61e-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 5.31e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 5.41e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.9e-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/mesh_GreatCell_VPF/PEE4a.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.01e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.81e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.7e-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/mesh_GreatCell_VPF/PEE5.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.11e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.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.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 7.21e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 3.11e-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/mesh_GreatCell_VPF/PEE5a.vtu' read: 3 nodes, 2 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.6e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.21e-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 3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.71e-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/mesh_GreatCell_VPF/PEE6.vtu' read: 3 nodes, 2 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 2.51e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.51e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 5.11e-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.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/PEE6a.vtu' read: 3 nodes, 2 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 2.5e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.21e-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 1.2e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.21e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.8e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.61e-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/mesh_GreatCell_VPF/PEE7.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.61e-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 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 2.01e-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/mesh_GreatCell_VPF/PEE7a.vtu' read: 3 nodes, 2 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 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 4.91e-07 s
[0] info: partitionMesh(): setting number of nodes and of all mesh base nodes took 1.31e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 3.2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 6.41e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/PEE8.vtu' read: 3 nodes, 2 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 2.4e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.41e-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 1.41e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 4.4e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.6e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/PEE8a.vtu' read: 3 nodes, 2 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 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 3.3e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.9e-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 3e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.61e-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/mesh_GreatCell_VPF/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 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 7e-08 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 6.11e-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 1.9e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.8e-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/mesh_GreatCell_VPF/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 2.3e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 8e-08 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 2.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.91e-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/mesh_GreatCell_VPF/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 2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 8e-08 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 8e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 1.91e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.2e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-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/mesh_GreatCell_VPF/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 2.2e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 7e-08 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 7e-08 s
[0] info: partitionMesh(): distribute elements into partitions took 2.51e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.9e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.81e-07 s
[0] info: Mesh 'Inlet' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Inlet.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Inlet
[0] info: Property global_element_ids is added to mesh Inlet
[0] info: partitionMesh(): Partition IDs per element computed in 3.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.6e-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 1.1e-07 s
[0] info: partitionMesh(): distribute elements into partitions took 2.01e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.7e-07 s
[0] info: Mesh 'Outlet_R_embeddedFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_embeddedFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_embeddedFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_embeddedFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.1e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 2.4e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.91e-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 2.3e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 2.91e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.7e-07 s
[0] info: Mesh 'Outlet_R_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_R_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_R_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_R_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 1.8e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.81e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.81e-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 2e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.1e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.9e-07 s
[0] info: Mesh 'Outlet_L_fullFracture' from file '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF/Outlet_L_fullFracture.vtu' read: 2 nodes, 1 elements.
[0] info: Property global_node_ids is added to mesh Outlet_L_fullFracture
[0] info: Property global_element_ids is added to mesh Outlet_L_fullFracture
[0] info: partitionMesh(): Partition IDs per element computed in 2.11e-07 s
[0] info: partitionMesh(): distribute nodes to partitions took 1.4e-07 s
[0] info: partitionMesh(): sorting [base nodes | higher order nodes] took 4.5e-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 2.1e-07 s
[0] info: partitionMesh(): determine / append ghost nodes took 3.01e-07 s
[0] info: partitionMesh(): markDuplicateGhostCells took 1.6e-07 s
[0] info: Writing the partitions data into binary files took 0.00140838 s
[0] info: Total runtime: 0.109038 s.
[0] info: Total CPU time: 0.059081 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/HM2a_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.002 based on mesh size 0.001
ls 0.002
Material properties for 'Gneiss' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2a_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2a_VPF_A.prj']
------------------------------------------------------------
* Running the simulation for sample Greywacke:
------------------------------------------------------------
DEBUG: Setting ls to 0.002 based on mesh size 0.001
ls 0.002
Material properties for 'Greywacke' (VPF) applied successfully.
mpirun --bind-to none -n 2 ogs -o /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF -m /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF /var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2a_VPF_A.prj
['mpirun', '--bind-to', 'none', '-n', '2', 'ogs', '-o', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF', '-m', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/mesh_GreatCell_VPF', '/var/lib/gitlab-runner/builds/F1XUyv4cx/0/ogs/build/release-petsc/Tests/Data/HMPhaseField/GreatCell/GreatCellHM_VPF/HM2a_VPF_A.prj']
plotter = Plotter(…
(click to toggle)
plotter = Plotter(
output_dir=out_dir,
save_extracted_data=True,
)
data_dir = Path("external_data")
external_data = Plotter.load_external_data(data_dir, benchmark_tag="HM2a")
plotter.plot_volumetric_strain_vs_angle(
vtu_files_dict_full_HM,
model_type="HM2a",
ylim_range=[-7.5, 2.5],
layout="subplots",
external_data=external_data["strain"],
)[0] info: Reading meshes took 0.012576174999999967 s
[0] info: Collection of 2905 regular elements and computing element map took 2.167299999999983e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.576000000116153e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011434109999999276 s
[0] info: Reset nodes in regular elements took 0.005331433000000052 s
[0] info: creation of merged mesh took 0.0004893509999999157 s
[0] info: merge properties into merged mesh took 0.00037283399999998856 s
[0] info: writing mesh took 0.013907379999999803 s
[0] info: Reading meshes took 0.009099740000000134 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1743000000018498e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4259999999175506e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012050249999999707 s
[0] info: Reset nodes in regular elements took 0.005242479000000078 s
[0] info: creation of merged mesh took 0.0004956109999998404 s
[0] info: merge properties into merged mesh took 0.0005130469999998777 s
[0] info: writing mesh took 0.012459297000000147 s
plotter.plot_field_variables(vtu_files_dict_full_HM)Load: A, File 0, Benchmark: HM2a, Material: Gneiss
[0] info: Reading meshes took 0.011713297999999872 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0781000000136274e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.4650000000358006e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011522250000000067 s
[0] info: Reset nodes in regular elements took 0.005259444000000002 s
[0] info: creation of merged mesh took 0.000489711999999809 s
[0] info: merge properties into merged mesh took 0.00037250399999999573 s
[0] info: writing mesh took 0.013055851000000063 s
Load: A, File 1, Benchmark: HM2a, Material: Greywacke
[0] info: Reading meshes took 0.009174353000000135 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1201999999886922e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3859999999386048e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011464559999998514 s
[0] info: Reset nodes in regular elements took 0.005237901999999961 s
[0] info: creation of merged mesh took 0.0005539090000001856 s
[0] info: merge properties into merged mesh took 0.0003733860000001421 s
[0] info: writing mesh took 0.01441089299999998 s
plotter.material_names = ["Gneiss", "Greywacke"]…
(click to toggle)
plotter.material_names = ["Gneiss", "Greywacke"]
plotter.vtu_file_names = {"VPF": vtu_files_dict_full_HM}
plotter.plot_avg_width_vs_stress(
benchmark_tag="HM2a",
metric="width",
methods_to_include=["VPF"],
pee_load_values=PEE_load_values,
external_data=external_data["average"],
w0=next(iter(materials.values()))["w_init"],
)
plotter.plot_avg_width_vs_stress(
benchmark_tag="HM2a",
metric="permeability",
methods_to_include=["VPF"],
pee_load_values=PEE_load_values,
external_data=external_data["average"],
w0=next(iter(materials.values()))["w_init"],
)[0] info: Reading meshes took 0.008636548999999993 s
[0] info: Collection of 2905 regular elements and computing element map took 5.841899999992073e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.6069999999343025e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001657479999999989 s
[0] info: Reset nodes in regular elements took 0.005431804999999956 s
[0] info: creation of merged mesh took 0.0005051140000000842 s
[0] info: merge properties into merged mesh took 0.00038056700000010935 s
[0] info: writing mesh took 0.01048175200000001 s
[0] info: Reading meshes took 0.00904951399999998 s
[0] info: Collection of 2905 regular elements and computing element map took 2.087100000003339e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3550000000381885e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011457649999999653 s
[0] info: Reset nodes in regular elements took 0.005313096000000073 s
[0] info: creation of merged mesh took 0.0005007480000001063 s
[0] info: merge properties into merged mesh took 0.0003797350000001032 s
[0] info: writing mesh took 0.012454980999999865 s
[0] info: Reading meshes took 0.00859722900000004 s
[0] info: Collection of 2905 regular elements and computing element map took 2.9674999999951268e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.4470000000185195e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0016265129999999406 s
[0] info: Reset nodes in regular elements took 0.005589173000000169 s
[0] info: creation of merged mesh took 0.0005195769999999378 s
[0] info: merge properties into merged mesh took 0.00038033600000009216 s
[0] info: writing mesh took 0.010422914999999922 s
[0] info: Reading meshes took 0.01279889100000009 s
[0] info: Collection of 2905 regular elements and computing element map took 2.9154000000142233e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.73800000011515e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012016400000001148 s
[0] info: Reset nodes in regular elements took 0.005359667000000012 s
[0] info: creation of merged mesh took 0.0004884600000001349 s
[0] info: merge properties into merged mesh took 0.0003797450000000424 s
[0] info: writing mesh took 0.01045538300000004 s
[0] info: Reading meshes took 0.006009039000000049 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1191999999947697e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.5149999999539716e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011432109999998108 s
[0] info: Reset nodes in regular elements took 0.005350801999999932 s
[0] info: creation of merged mesh took 0.0004943680000000228 s
[0] info: merge properties into merged mesh took 0.00036880799999994274 s
[0] info: writing mesh took 0.010366869000000056 s
[0] info: Reading meshes took 0.009096444999999953 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1182000000008472e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.374999999916639e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0012037230000001564 s
[0] info: Reset nodes in regular elements took 0.005223009999999917 s
[0] info: creation of merged mesh took 0.0004924060000000008 s
[0] info: merge properties into merged mesh took 0.0003792040000001329 s
[0] info: writing mesh took 0.010852945000000114 s
[0] info: Reading meshes took 0.007296058999999966 s
[0] info: Collection of 2905 regular elements and computing element map took 2.1432000000043416e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2249999999400814e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011571720000000951 s
[0] info: Reset nodes in regular elements took 0.005228658000000053 s
[0] info: creation of merged mesh took 0.0004899119999999257 s
[0] info: merge properties into merged mesh took 0.0003806669999999457 s
[0] info: writing mesh took 0.011237087000000034 s
[0] info: Reading meshes took 0.011112628000000013 s
[0] info: Collection of 2905 regular elements and computing element map took 2.0770999999975004e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.7160000001534854e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011453940000001328 s
[0] info: Reset nodes in regular elements took 0.005332305000000037 s
[0] info: creation of merged mesh took 0.0004993260000001332 s
[0] info: merge properties into merged mesh took 0.0003766800000000181 s
[0] info: writing mesh took 0.01043909799999998 s
[0] info: Reading meshes took 0.007188395999999875 s
[0] info: Collection of 2905 regular elements and computing element map took 4.199399999982312e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.2249999999400814e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001117712000000104 s
[0] info: Reset nodes in regular elements took 0.00530833899999994 s
[0] info: creation of merged mesh took 0.0004910430000000243 s
[0] info: merge properties into merged mesh took 0.000372053999999844 s
[0] info: writing mesh took 0.01029903600000015 s
[0] info: Reading meshes took 0.011508767999999892 s
[0] info: Collection of 2905 regular elements and computing element map took 2.110200000005058e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.495000000075521e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011511330000000264 s
[0] info: Reset nodes in regular elements took 0.005235458000000026 s
[0] info: creation of merged mesh took 0.0004889710000000047 s
[0] info: merge properties into merged mesh took 0.00038311999999995905 s
[0] info: writing mesh took 0.010823169000000021 s
[0] info: Reading meshes took 0.00849015700000022 s
[0] info: Collection of 2905 regular elements and computing element map took 3.622400000002912e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 4.375999999917113e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0017606559999998606 s
[0] info: Reset nodes in regular elements took 0.005704659000000056 s
[0] info: creation of merged mesh took 0.00045706199999995256 s
[0] info: merge properties into merged mesh took 0.00036018499999990183 s
[0] info: writing mesh took 0.01000014299999985 s
[0] info: Reading meshes took 0.012574551000000156 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9749999999874035e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.1750000000219103e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001059083999999988 s
[0] info: Reset nodes in regular elements took 0.004944347999999987 s
[0] info: creation of merged mesh took 0.00046122900000011846 s
[0] info: merge properties into merged mesh took 0.00035076099999997723 s
[0] info: writing mesh took 0.011010823999999975 s
[0] info: Reading meshes took 0.00963669300000003 s
[0] info: Collection of 2905 regular elements and computing element map took 3.2398999999960765e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.188000000044823e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0018360009999998095 s
[0] info: Reset nodes in regular elements took 0.005340066999999893 s
[0] info: creation of merged mesh took 0.0004570219999999736 s
[0] info: merge properties into merged mesh took 0.00034647499999995723 s
[0] info: writing mesh took 0.010226106000000179 s
[0] info: Reading meshes took 0.00878541399999988 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9519999999939586e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 2.9549999998046417e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010590340000000698 s
[0] info: Reset nodes in regular elements took 0.00491390199999997 s
[0] info: creation of merged mesh took 0.00045599100000015547 s
[0] info: merge properties into merged mesh took 0.00034664499999981224 s
[0] info: writing mesh took 0.01032118900000012 s
[0] info: Reading meshes took 0.009544973999999762 s
[0] info: Collection of 2905 regular elements and computing element map took 3.255000000024211e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 5.118000000248202e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001837982999999932 s
[0] info: Reset nodes in regular elements took 0.0052316919999999545 s
[0] info: creation of merged mesh took 0.00045815400000015494 s
[0] info: merge properties into merged mesh took 0.00033232399999993945 s
[0] info: writing mesh took 0.012726722000000024 s
[0] info: Reading meshes took 0.013706195000000143 s
[0] info: Collection of 2905 regular elements and computing element map took 1.976999999997453e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3950000000171343e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0010647729999999633 s
[0] info: Reset nodes in regular elements took 0.0048587870000000866 s
[0] info: creation of merged mesh took 0.0004713030000000895 s
[0] info: merge properties into merged mesh took 0.00032386100000003637 s
[0] info: writing mesh took 0.010556326000000116 s
array([1000000.])
vpf_profiles = {}…
(click to toggle)
vpf_profiles = {}
for load_case, file_list in plotter.vtu_file_names["VPF"].items():
vpf_profiles[load_case] = plotter.extract_vpf_width_from_list(
file_list,
plotter.material_names,
)
plotter.plot_fracture_aperture_profiles(
widthProfile=vpf_profiles,
benchmark_tag="HM2a",
downsample=1,
ylim=(0, 5.0e-5),
method_label="VPF",
external_data=external_data["widthProfile"],
)[0] info: Reading meshes took 0.005908637999999966 s
[0] info: Collection of 2905 regular elements and computing element map took 4.1903000000065305e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.324999999998468e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011226189999999914 s
[0] info: Reset nodes in regular elements took 0.005243450999999899 s
[0] info: creation of merged mesh took 0.00048417399999989286 s
[0] info: merge properties into merged mesh took 0.0003566299999999689 s
[0] info: writing mesh took 0.01054148300000013 s
[0] info: Reading meshes took 0.009517873000000066 s
[0] info: Collection of 2905 regular elements and computing element map took 1.9159000000046333e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.5359999999151626e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011372819999999617 s
[0] info: Reset nodes in regular elements took 0.004855111999999995 s
[0] info: creation of merged mesh took 0.00046609600000002693 s
[0] info: merge properties into merged mesh took 0.00034285899999986214 s
[0] info: writing mesh took 0.009923166999999955 s
[0] info: Reading meshes took 0.005660741999999885 s
[0] info: Collection of 2905 regular elements and computing element map took 1.914000000002858e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.0440000000631073e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.001059723999999873 s
[0] info: Reset nodes in regular elements took 0.004914211000000002 s
[0] info: creation of merged mesh took 0.00046439299999989636 s
[0] info: merge properties into merged mesh took 0.00033948400000016754 s
[0] info: writing mesh took 0.010830070999999997 s
[0] info: Reading meshes took 0.011078426000000086 s
[0] info: Collection of 2905 regular elements and computing element map took 1.952000000016163e-05 s
[0] info: Collection of 2844 nodes and computing offsets took 3.3349999999376934e-06 s
[0] info: Make nodes unique (2753 unique nodes) / computing map took 0.0011516639999999967 s
[0] info: Reset nodes in regular elements took 0.00484233299999981 s
[0] info: creation of merged mesh took 0.0004707130000001225 s
[0] info: merge properties into merged mesh took 0.00033936400000000866 s
[0] info: writing mesh took 0.010073894999999888 s
pairs_to_check = {…
(click to toggle)
pairs_to_check = {
"M1_VPF_A_Greywacke": "M1",
"M2a_VPF_A_Greywacke": "M2a",
"M2b_VPF_A_Greywacke": "M2b",
}
for case, label in pairs_to_check.items():
print(f"\n===== {label} case =====")
new_result = np.load(Path(out_dir, f"extracted_{case}_volStrain.npz"))
expected_result = np.load(Path("expected", f"extracted_{case}_volStrain.npz"))
eps_v_new = new_result["eps_v"]
eps_v_expected = expected_result["eps_v"]
phi_new = new_result["phi"]
phi_expected = expected_result["phi"]
print(
f"eps_v_new shape: {eps_v_new.shape}, eps_v_expected shape: {eps_v_expected.shape}"
)
print(f"phi_new shape: {phi_new.shape}, phi_expected shape: {phi_expected.shape}")
np.testing.assert_allclose(eps_v_new, eps_v_expected, atol=5e-4)
np.testing.assert_allclose(phi_new, phi_expected, atol=1e-8)
print(f"\n{label} case passed.")===== M1 case =====
eps_v_new shape: (88,), eps_v_expected shape: (88,)
phi_new shape: (88,), phi_expected shape: (88,)
M1 case passed.
===== M2a case =====
eps_v_new shape: (74,), eps_v_expected shape: (74,)
phi_new shape: (74,), phi_expected shape: (74,)
M2a case passed.
===== M2b case =====
eps_v_new shape: (74,), eps_v_expected shape: (74,)
phi_new shape: (74,), phi_expected shape: (74,)
M2b case passed.
McDermott, C.I., Fraser-Harris, A., Sauter, M., Couples, G.D., Edlmann, K., Kolditz, O., Lightbody, A., Somerville, J. and Wang, W., 2018. New experimental equipment recreating geo-reservoir conditions in large, fractured, porous samples to investigate coupled thermal, hydraulic and polyaxial stress processes. Scientific reports, 8(1), p.14549.
Mollaali, M., Kolditz, O., Hu, M., Park, C.H., Park, J.W., McDermott, C.I., Chittenden, N., Bond, A., Yoon, J.S., Zhou, J. and Pan, P.Z., Liu H., Hou W., Lei H., Zhang L., Nagel T., Barsch M., Wang W., Nguyen S., Kwon S. and Yoshioka K., 2023. Comparative verification of hydro-mechanical fracture behavior: Task G of international research project DECOVALEX–2023. International Journal of Rock Mechanics and Mining Sciences, 170, p.105530.
Mollaali, M., Wang, W., You, T., Nagel, T., Fraser-Harris, A., McDermott, C., and Kolditz, O., 2025. Numerical benchmarking of GREAT cell experiments: Poly-axial stress effects on fluid flow in fractured rock using smeared and discrete methods.
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