Viz¶
Matplotlib plotting, entity selection, inspection helpers, and VTK export.
g.plot¶
apeGmsh.viz.Plot.Plot ¶
Bases: _HasLogging
Plotting composite attached to a apeGmsh instance as g.plot.
Provides matplotlib-based visualisation of both BRep geometry and mesh,
with optional entity-tag labels for introspection. All methods return
self so they can be chained::
(g.plot
.geometry(label_tags=True, show=False)
.mesh(alpha=0.6, show=False)
.label_entities(dims=[2])
.show())
The figure is created on the first drawing call and reused for
subsequent layering calls. Call clear() to start a new figure.
Parameters¶
parent : _SessionBase
The owning instance — used for name and _verbose.
Source code in src/apeGmsh/viz/Plot.py
figsize ¶
Set the matplotlib figure size (width, height in inches).
Call this before any drawing method to control the size of the figure when it's first created. If a figure already exists, it is resized in place.
Parameters¶
size : (width, height) tuple in inches
Example¶
::
(g.plot
.figsize((12, 9))
.geometry(show=False)
.mesh()
.show())
Source code in src/apeGmsh/viz/Plot.py
use_axes ¶
Install an externally-owned 3D axes as the current drawing target.
Useful when you want to embed apeGmsh plots into a larger
matplotlib layout (e.g., side-by-side comparisons via
fig.add_subplot(121, projection='3d')). Subsequent drawing
methods draw onto ax instead of creating their own figure.
Parameters¶
ax : a 3D Axes3D instance
Example¶
::
fig = plt.figure(figsize=(12, 5))
ax1 = fig.add_subplot(121, projection='3d')
ax2 = fig.add_subplot(122, projection='3d')
g.plot.use_axes(ax1).geometry()
g.plot.use_axes(ax2).mesh()
plt.show()
Source code in src/apeGmsh/viz/Plot.py
geometry ¶
geometry(*, n_curve_samples: int = 60, show_points: bool = True, show_curves: bool = True, show_surfaces: bool = True, label_tags: bool = False, color_points: str = COLOR_POINTS, color_curves: str = COLOR_CURVES, color_surfaces: str = COLOR_SURFACES, surface_alpha: float = 0.25, show: bool = False) -> Plot
Plot BRep geometry by parametric sampling. No mesh required.
Parameters¶
n_curve_samples : points sampled along each curve
show_points : scatter-plot geometric vertices
show_curves : draw sampled curve polylines
show_surfaces : draw filled surface patches (best-fit-plane
triangulation, hole-aware)
label_tags : annotate each entity with its tag (e.g. C3)
color_points/curves/surfaces : matplotlib colour specs
surface_alpha : opacity of surface patches
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
mesh ¶
mesh(*, color: str = COLOR_MESH, edge_color: str = 'white', alpha: float = 0.7, linewidth: float = 0.3, show: bool = False) -> Plot
Plot the surface mesh as filled polygons.
For a 3-D volume mesh, only the dim=2 (surface) elements are drawn; interior tetrahedra are not individually shown. If no surface mesh exists, falls back to dim=1 edge elements (useful for 2-D models).
Parameters¶
color : face colour
edge_color : element edge colour
alpha : face opacity
linewidth : element outline width
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 | |
quality ¶
quality(*, quality_name: str = 'minSICN', cmap: str = 'RdYlGn', vmin: float | None = None, vmax: float | None = None, alpha: float = 0.85, linewidth: float = 0.2, show_colorbar: bool = True, show: bool = False) -> Plot
Plot surface mesh elements coloured by a quality metric.
Parameters¶
quality_name : gmsh quality metric — "minSICN" (default),
"minSIGE", "gamma", "minEdge",
"maxEdge", "minAngle", "maxAngle"
cmap : matplotlib colormap name
vmin / vmax : colormap range clamp (None = data min / max)
alpha : face opacity
linewidth : element edge width
show_colorbar : add a colour bar
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 | |
label_entities ¶
label_entities(*, dims: list[int] | None = None, show_dim: bool = True, fontsize: int = 7, show: bool = False) -> Plot
Annotate the current axes with entity tags positioned at each entity's geometric centroid. Works without a mesh.
Parameters¶
dims : dimensions to label (default: all present in model)
show_dim : prefix label with dimension indicator (P / C / S / V)
fontsize : annotation font size
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
label_nodes ¶
label_nodes(*, dim: int = -1, tag: int = -1, stride: int = 1, fontsize: int = 5, color: str = 'black', prefix: str = 'n', offset: tuple[float, float, float] | None = None, show: bool = False) -> Plot
Annotate mesh nodes with their tag ids.
Parameters¶
dim, tag : restrict to nodes on the given entity
(dim=-1 returns all nodes; see gmsh.model.mesh.getNodes)
stride : label every Nth node (useful for dense meshes)
fontsize : annotation font size
color : text colour
prefix : string prepended to each node tag (e.g. 'n' -> n17)
offset : (dx, dy, dz) text offset applied to each label; defaults
to a small positive x offset so labels do not overlap markers
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
label_elements ¶
label_elements(*, dim: int = -1, tag: int = -1, stride: int = 1, fontsize: int = 5, color: str = 'darkred', prefix: str = 'e', show: bool = False) -> Plot
Annotate mesh elements with their tag ids at element centroids.
Parameters¶
dim, tag : restrict to elements on the given entity
(dim=-1 returns elements of all dimensions)
stride : label every Nth element
fontsize : annotation font size
color : text colour
prefix : string prepended to each element tag (e.g. 'e' -> e42)
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
show ¶
Flush the current figure to the screen.
Handles are not reset — a subsequent savefig() or chained
drawing call still targets the same figure. Use clear() to
explicitly discard the current figure. In Jupyter, the inline
backend closes the figure after rendering, which
_ensure_axes() detects so the next cell starts fresh anyway.
Source code in src/apeGmsh/viz/Plot.py
savefig ¶
Save the current figure to path.
A drawing method must have been called first (otherwise there
is no figure to save). All keyword arguments are forwarded to
matplotlib.figure.Figure.savefig — common ones are
dpi=110, bbox_inches='tight', transparent=True.
Example¶
::
g.plot.geometry().savefig('out.png', dpi=120)
Source code in src/apeGmsh/viz/Plot.py
clear ¶
physical_groups ¶
physical_groups(*, dims: list[int] | None = None, names: list[str] | None = None, cmap: str = 'tab20', n_curve_samples: int = 40, point_size: int = 60, linewidth: float = 2.5, surface_alpha: float = 0.35, label_groups: bool = True, show_legend: bool = True, show: bool = False) -> Plot
Colour BRep entities by the physical group they belong to.
Iterates over gmsh.model.getPhysicalGroups() and draws every
entity in each group with a distinct colour. Works at the
geometry level — no mesh required.
Parameters¶
dims : physical-group dimensions to draw (default: all)
names : only draw groups whose name is in this list
(None draws all groups)
cmap : matplotlib colormap used to cycle group colours
n_curve_samples : points sampled per curve
point_size : marker size for dim=0 groups
linewidth : width for dim=1 groups
surface_alpha : opacity for dim=2 group patches
label_groups : annotate each group at its centroid
show_legend : draw a legend mapping colour -> group name
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 | |
physical_groups_mesh ¶
physical_groups_mesh(*, dims: list[int] | None = None, names: list[str] | None = None, cmap: str = 'tab20', alpha: float = 0.8, linewidth: float = 0.3, edge_color: str = 'white', point_size: int = 50, seg_width: float = 2.5, show_legend: bool = True, show: bool = False) -> Plot
Colour mesh entities by the physical group they belong to.
For each physical group, collects the mesh nodes/elements on every member entity and renders them in the group's colour.
Parameters¶
dims : physical-group dimensions to draw (default: all)
names : only draw groups whose name is in this list
cmap : matplotlib colormap used to cycle group colours
alpha : face opacity for dim=2 group polygons
linewidth : element outline width for dim=2 polygons
edge_color : edge colour for dim=2 polygons
point_size : scatter size for dim=0 group nodes
seg_width : line width for dim=1 group segments
show_legend : draw legend mapping colour -> group name
show : call plt.show() at the end
Returns¶
self — for method chaining
Source code in src/apeGmsh/viz/Plot.py
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 | |
Selection — viewer pick-result¶
The frozen DimTag snapshot exposed by an interactive viewer's
.selection property (g.model.viewer() / g.mesh.viewer()). For
programmatic entity selection use g.model.select(...) (see
Selection).
apeGmsh.viz.Selection.Selection ¶
Frozen snapshot of a set of Gmsh DimTags with set-algebra,
refinement, and conversion helpers.
Selection objects are exposed by an interactive viewer's
.selection property (g.model.viewer() /
g.mesh.viewer()) — you do not normally instantiate them
directly.
Attributes¶
dim : int
Common dimension of all entries, or -1 if mixed (only
possible after cross-dim set operations).
dimtags : tuple[DimTag, ...]
Frozen tuple of (dim, tag) pairs.
Source code in src/apeGmsh/viz/Selection.py
filter ¶
filter(*, tags: Sequence[Tag] | None = None, exclude_tags: Sequence[Tag] | None = None, labels: str | Sequence[str] | None = None, kinds: str | Sequence[str] | None = None, physical: str | Tag | None = None, in_box: BBox | None = None, in_sphere: tuple[float, float, float, float] | None = None, on_plane: tuple[str, float, float] | None = None, on_axis: tuple[str, float] | None = None, at_point: tuple[float, float, float, float] | None = None, length_range: tuple[float, float] | None = None, area_range: tuple[float, float] | None = None, volume_range: tuple[float, float] | None = None, aligned: tuple[str, float] | None = None, horizontal: bool | None = None, vertical: bool | None = None, predicate: Callable[[int, int], bool] | None = None) -> Selection
Re-apply filters to this selection.
Source code in src/apeGmsh/viz/Selection.py
limit ¶
sorted_by ¶
Sort by a coordinate ("x", "y", "z"), a metric
("length", "area", "volume", "mass"), or a
callable (dim, tag) -> float.
Source code in src/apeGmsh/viz/Selection.py
bbox ¶
Return the axis-aligned bounding box of the union.
Source code in src/apeGmsh/viz/Selection.py
centers ¶
masses ¶
(N,) array of length/area/volume values (via occ.getMass).
Source code in src/apeGmsh/viz/Selection.py
to_list ¶
to_tags ¶
to_physical ¶
Promote this selection to a physical group.
Parameters¶
name : physical-group name
tag : requested physical-group tag (-1 = auto-assign)
Returns¶
Tag the physical-group tag assigned by Gmsh.
Source code in src/apeGmsh/viz/Selection.py
to_dataframe ¶
Return a DataFrame with columns
dim, tag, kind, label, x, y, z, mass.
kind is read from Model._metadata (entity metadata).
label is read from g.labels (the single source of truth).
Source code in src/apeGmsh/viz/Selection.py
g.inspect¶
apeGmsh.viz.Inspect.Inspect ¶
Composite introspection helper attached to a apeGmsh instance as self.inspect.
All geometry-query logic lives here so that apeGmsh itself stays focused on model lifecycle / IO / visualisation.
Parameters¶
parent : _SessionBase
The owning apeGmsh instance (provides _verbose).
Source code in src/apeGmsh/viz/Inspect.py
get_geometry_info ¶
Build a nested mapping with flat DataFrames and type summaries per dimension. Pure geometric introspection — no mesh, no sampling.
Returns¶
mapping : dict { label: { 'df' : pd.DataFrame, # flat entity table (one row per entity) 'summary' : pd.DataFrame, # type counts for this dimension 'entities': { tag: dict } # raw per-entity data } } global_summary : pd.DataFrame Single table with entity counts and types across all dimensions.
Source code in src/apeGmsh/viz/Inspect.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | |
get_mesh_info ¶
Introspect the current mesh. Returns counts, per-entity breakdowns
and a per-element-type quality summary. No geometric re-sampling —
only what gmsh.model.mesh can report directly.
Returns¶
mapping : dict { 'nodes' : {'count': int, 'df': pd.DataFrame}, 'elements' : { 'df' : pd.DataFrame, # one row per (dim, tag, elem_type) 'summary' : pd.DataFrame, # counts per element type 'quality' : pd.DataFrame, # min/mean/max SICN per elem type }, } global_summary : pd.DataFrame Single table with node / element counts indexed by dim.
Source code in src/apeGmsh/viz/Inspect.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | |
print_summary ¶
Print a comprehensive model summary by introspecting the live Gmsh session. Two data sources are distinguished:
- [gmsh] — read directly from the Gmsh API (ground truth).
- [tracked] — recorded by apeGmsh's
Meshwrapper for settings that Gmsh exposes no getter for (transfinite, per-entity sizes, recombine, fields, per-entity algorithm).
The summary covers:
- Geometry — entity counts and types per dimension
- Physical groups — names, dimensions, member counts
- Mesh options — global settings readable via
gmsh.option.getNumber - Mesh directives — write-only settings tracked by apeGmsh
- Mesh statistics — node/element counts, element types, quality (if mesh has been generated)
Returns¶
str The formatted summary text (also printed to stdout).
Source code in src/apeGmsh/viz/Inspect.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 | |
VTK export¶
apeGmsh.viz.VTKExport.VTKExport ¶
Convenience wrapper: accumulate fields, then write one .vtu.
vtk = VTKExport(g) # g is a apeGmsh instance vtk.add_node_scalar("T", T) vtk.add_node_vector("u", disp) vtk.add_elem_scalar("sig_xx", sig) vtk.write("results.vtu")
Source code in src/apeGmsh/viz/VTKExport.py
add_node_scalar ¶
add_node_vector ¶
Add a nodal vector field (3 components per node).
If data is (N, 2), a zero z-component is appended automatically.
Source code in src/apeGmsh/viz/VTKExport.py
add_elem_scalar ¶
add_elem_vector ¶
Add an element vector field (3 components per element).
Source code in src/apeGmsh/viz/VTKExport.py
write ¶
Write accumulated fields to a .vtu file.
Source code in src/apeGmsh/viz/VTKExport.py
write_mode_series ¶
write_mode_series(base_name: str, mode_shapes: list[ndarray], frequencies: list[float]) -> list[Path]
Write mode shapes as a time-series PVD for ParaView animation.
Source code in src/apeGmsh/viz/VTKExport.py
Notebook preview¶
apeGmsh.viz.NotebookPreview.preview ¶
preview(session: Any = None, *, mode: str = 'mesh', dims: list[int] | None = None, show_nodes: bool = True, browser: bool = False, return_fig: bool = False) -> Any
Unified entry point — routes to preview_model or preview_mesh.
Parameters¶
mode : {"model", "mesh"}
Which scene to render. Default "mesh".
show_nodes : bool
Mesh mode only — render the full mesh-node cloud as a
separate trace. Ignored in model mode.
browser : bool
Open in a new browser tab instead of rendering inline.
return_fig : bool
Skip display and return the raw plotly Figure.