plotting.meshing — mesh and field inspection
tempura/plotting/meshing.py is the inspection toolkit. It is read-only: it
consumes a finalized pescado problem plus Tempura's region shapes and renders
2D plane cuts of the mesh and of solved scalar fields, for debugging,
documentation, and regression figures. It is a secondary helper module, not part
of the core modeling contract.
Plane cuts
The central idea is the PlaneSpec: a description of one 2D slice through the 3D
problem — which axis is fixed, at what value, and which two axes are displayed.
make_standard_plane_specs(...) builds the usual XY/XZ/YZ trio for a device,
nearest_axis_value(...) snaps a requested cut to the nearest realized mesh
plane, and transpose_plane_spec(...) / make_xy_emphasis_axes(...) arrange the
panels.
Rendering
plot_problem_regions_with_mesh(...) draws the solver-owned regions with the
control-volume edges of the discretization overlaid, so you can see exactly how
the mesh resolves each layer. plot_scalar_field_on_planes(...) renders a solved
field (for example a superposed gate potential) on the same plane specs, and the
contour/footprint helpers add region outlines and gate footprints.
The worked examples (Triple Quantum Dot, Minimal Kitaev Chain) use these helpers end to end.
API
plotting
Plotting helpers for Tempura.
PlaneSpec
dataclass
Describe one 2D slice through a finalized 3D problem.
Attributes:
| Name | Type | Description |
|---|---|---|
title |
str
|
Panel title. |
plot_region |
Box
|
2D plotting region in the displayed axes. |
plane_axis |
int
|
Fixed axis in 3D coordinates. |
plane_value |
float
|
Position of the fixed slicing plane. |
axis_indices |
tuple[int, int]
|
Indices of the displayed axes in the 3D coordinate system. |
axis_labels |
tuple[str, str]
|
Labels for the displayed axes. |
Source code in tempura/plotting/meshing.py
27 28 29 30 31 32 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 | |
__post_init__()
Validate that the slice description is internally consistent.
Source code in tempura/plotting/meshing.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | |
add_gate_footprint_contours_xy(ax, x_values, y_values, footprints, *, coordinate_scale=1.0, color='black', linewidth=0.8, alpha=0.7)
Overlay direct XY gate-footprint contours on one existing axis.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ax
|
Axes
|
Axis on which to draw the contours. |
required |
x_values
|
ndarray
|
Plane x coordinates used by the footprint masks. |
required |
y_values
|
ndarray
|
Plane y coordinates used by the footprint masks. |
required |
footprints
|
Mapping[str, ndarray]
|
Mapping of gate name to |
required |
coordinate_scale
|
float
|
Multiplicative scale applied to the displayed coordinates. |
1.0
|
color
|
str
|
Contour color. |
'black'
|
linewidth
|
float
|
Contour line width. |
0.8
|
alpha
|
float
|
Contour alpha. |
0.7
|
Returns:
| Type | Description |
|---|---|
None
|
|
Source code in tempura/plotting/meshing.py
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | |
add_plane_cut_guides(ax, *, x=None, y=None, coordinate_scale=1.0, color='black', linewidth=1.0, linestyle='--')
Overlay one or two cut-guide lines on an existing 2D plane plot.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ax
|
Axes
|
Axis on which to draw the guide lines. |
required |
x
|
float | None
|
Optional vertical guide x coordinate. |
None
|
y
|
float | None
|
Optional horizontal guide y coordinate. |
None
|
coordinate_scale
|
float
|
Multiplicative scale applied to the displayed coordinates. |
1.0
|
color
|
str
|
Line color. |
'black'
|
linewidth
|
float
|
Line width. |
1.0
|
linestyle
|
str
|
Matplotlib line style. |
'--'
|
Returns:
| Type | Description |
|---|---|
None
|
|
Source code in tempura/plotting/meshing.py
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 | |
add_region_contours_on_planes(problem, axes, plane_specs, region_shapes, *, region_display_names=None, coordinate_scale=1.0, linewidth=1.0, alpha=0.9)
Overlay region-outline contours on existing plane plots.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
problem
|
Any
|
Finalized Pescado problem with a |
required |
axes
|
Sequence[Axes]
|
Matplotlib axes matching |
required |
plane_specs
|
Sequence[PlaneSpec]
|
Plane definitions describing each plotted cut. |
required |
region_shapes
|
RegionShapeMap
|
Mapping of region name to solver-owned shape. |
required |
region_display_names
|
RegionDisplayMap | None
|
Optional mapping that merges several solver regions under one display label. |
None
|
coordinate_scale
|
float
|
Multiplicative scale applied to displayed coordinates. |
1.0
|
linewidth
|
float
|
Contour line width. |
1.0
|
alpha
|
float
|
Contour alpha. |
0.9
|
Returns:
| Type | Description |
|---|---|
None
|
|
Source code in tempura/plotting/meshing.py
1058 1059 1060 1061 1062 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 | |
expand_plane_grid(plane_specs_by_key, grid, *, title_overrides=None)
Expand a named subplot grid into an ordered plane-spec sequence.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plane_specs_by_key
|
Mapping[str, PlaneSpec]
|
Mapping from plane key to :class: |
required |
grid
|
Sequence[Sequence[str]]
|
Row-major grid of plane keys. |
required |
title_overrides
|
Mapping[tuple[int, int], str] | None
|
Optional subplot-title overrides keyed by
|
None
|
Returns:
| Type | Description |
|---|---|
list[PlaneSpec]
|
Tuple of |
int
|
subplot grid order. |
Source code in tempura/plotting/meshing.py
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 | |
make_standard_plane_specs(device, *, xy_title, xy_plane_z, xz_title, xz_plane_y, yz_title=None, yz_plane_x=None, z_padding=1.0)
Build the standard XY/XZ/YZ plotting cuts for one device.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
device
|
Any
|
Finalized device whose bounds define the default plotting regions. |
required |
xy_title
|
str
|
Title for the XY panel. |
required |
xy_plane_z
|
float
|
Fixed z coordinate for the XY cut. |
required |
xz_title
|
str
|
Title for the XZ panel. |
required |
xz_plane_y
|
float
|
Fixed y coordinate for the XZ cut. |
required |
yz_title
|
str | None
|
Optional title for the YZ panel. |
None
|
yz_plane_x
|
float | None
|
Optional fixed x coordinate for the YZ cut. |
None
|
z_padding
|
float
|
Extra z extent added around the realized layer stack. |
1.0
|
Returns:
| Type | Description |
|---|---|
dict[str, PlaneSpec]
|
Mapping containing |
dict[str, PlaneSpec]
|
class: |
Source code in tempura/plotting/meshing.py
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 | |
make_xy_emphasis_axes(*, figsize=(12.0, 9.8), layout='stack', width_ratios=(1.0, 1.0), height_ratios=(1.0, 1.0, 1.0))
Return three axes for XY, XZ, and YZ cuts in a compact layout.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
figsize
|
tuple[float, float]
|
Matplotlib figure size. |
(12.0, 9.8)
|
layout
|
str
|
Either |
'stack'
|
width_ratios
|
tuple[float, float]
|
Width ratios used by |
(1.0, 1.0)
|
height_ratios
|
tuple[float, float, float]
|
Height ratios used by |
(1.0, 1.0, 1.0)
|
Returns:
| Type | Description |
|---|---|
Figure
|
Tuple of |
ndarray
|
|
Source code in tempura/plotting/meshing.py
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 | |
nearest_axis_value(coordinates, axis, target)
Snap a requested cut to the nearest finalized mesh plane.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coordinates
|
ndarray
|
Full solver coordinate array with one row per mesh site. |
required |
axis
|
int
|
Cartesian axis to inspect. |
required |
target
|
float
|
Requested coordinate along |
required |
Returns:
| Type | Description |
|---|---|
float
|
Realized mesh coordinate along |
Source code in tempura/plotting/meshing.py
77 78 79 80 81 82 83 84 85 86 87 88 89 | |
plot_problem_regions_with_mesh(problem, region_shapes, plane_specs, *, axes=None, region_names=None, region_display_names=None, ncols=None, figsize=(13.0, 11.0), suptitle='Pescado region cuts with overlaid mesh nodes', fill_mode='regions', background_alpha=0.88, tile_edgecolors='white', tile_linewidth=0.6, show_volume_edges=False, show_mesh_points=True, mesh_point_size=12.0, mesh_facecolors='white', mesh_edgecolors='black', mesh_linewidth=0.35, coordinate_scale=1.0, axis_unit=None)
Plot finalized region slices with overlaid mesh nodes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
problem
|
Any
|
Finalized Pescado problem with a |
required |
region_shapes
|
RegionShapeMap
|
Mapping returned by |
required |
plane_specs
|
Sequence[PlaneSpec]
|
Sequence of |
required |
region_names
|
Sequence[str] | None
|
Optional region order for coloring. Defaults to every
region except |
None
|
region_display_names
|
RegionDisplayMap | None
|
Optional mapping from solver-owned region names to display labels. Regions that share a display label are drawn with the same color and collapsed into one legend entry. |
None
|
ncols
|
int | None
|
Number of subplot columns. Defaults to |
None
|
figsize
|
tuple[float, float]
|
Matplotlib figure size. |
(13.0, 11.0)
|
suptitle
|
str
|
Figure title. |
'Pescado region cuts with overlaid mesh nodes'
|
fill_mode
|
str
|
|
'regions'
|
background_alpha
|
float
|
Alpha used for the ownership tiles under the markers. |
0.88
|
tile_edgecolors
|
str
|
Edge color for the projected mesh control volumes. |
'white'
|
tile_linewidth
|
float
|
Edge line width for the projected mesh control volumes. |
0.6
|
show_volume_edges
|
bool
|
Whether to overlay the projected control-volume boundaries on top of the filled region cross-section. |
False
|
show_mesh_points
|
bool
|
Whether to overlay the selected mesh sites as points. |
True
|
mesh_point_size
|
float
|
Scatter marker size for finalized mesh nodes. |
12.0
|
mesh_facecolors
|
str
|
Scatter face color. |
'white'
|
mesh_edgecolors
|
str
|
Scatter edge color. |
'black'
|
mesh_linewidth
|
float
|
Scatter edge line width. |
0.35
|
coordinate_scale
|
float
|
Multiplicative scale applied to displayed coordinates. |
1.0
|
axis_unit
|
str | None
|
Optional axis-unit label appended to x/y/z labels. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Figure, ndarray]
|
Tuple of |
Notes
For each requested plane, Tempura first selects the mesh sites whose control volumes intersect that plane. The optional marker overlay shows those selected sites explicitly. The colored background can either show the projected control volumes directly or a sampled cross-section of the finalized region shapes.
Source code in tempura/plotting/meshing.py
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 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 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 | |
plot_scalar_field_on_planes(problem, scalar_values, plane_specs, *, axes=None, ncols=None, nrows=None, figsize=(13.0, 11.0), suptitle='Scalar field cuts', colorbar_label='Value', cmap='coolwarm', symmetric=True, vmin=None, vmax=None, tile_edgecolors='none', tile_linewidth=0.0, show_volume_edges=False, aspect='equal', colorbar_shrink=1.0, coordinate_scale=1.0, axis_unit=None)
Plot one scalar field on a set of mesh-aligned 2D plane cuts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
problem
|
Any
|
Finalized Pescado problem with a |
required |
scalar_values
|
ndarray
|
One scalar value per solver mesh site. |
required |
plane_specs
|
Sequence[PlaneSpec]
|
Sequence of cuts to render. |
required |
axes
|
Sequence[Axes] | None
|
Optional existing axes that should receive the plots. |
None
|
ncols
|
int | None
|
Number of subplot columns when axes are created internally. |
None
|
nrows
|
int | None
|
Number of subplot rows when axes are created internally. |
None
|
figsize
|
tuple[float, float]
|
Matplotlib figure size used when axes are created internally. |
(13.0, 11.0)
|
suptitle
|
str
|
Figure title. |
'Scalar field cuts'
|
colorbar_label
|
str
|
Label shown on the shared colorbar. |
'Value'
|
cmap
|
str
|
Matplotlib colormap name. |
'coolwarm'
|
symmetric
|
bool
|
Whether to choose symmetric color limits around zero when
|
True
|
vmin
|
float | None
|
Optional lower color limit. |
None
|
vmax
|
float | None
|
Optional upper color limit. |
None
|
tile_edgecolors
|
str
|
Edge color for optional projected control-volume outlines. |
'none'
|
tile_linewidth
|
float
|
Line width for optional projected control-volume outlines. |
0.0
|
show_volume_edges
|
bool
|
Whether to overlay projected control-volume edges. |
False
|
aspect
|
str | float
|
Matplotlib aspect setting applied to each panel. |
'equal'
|
colorbar_shrink
|
float
|
Shrink factor passed to the shared colorbar. |
1.0
|
coordinate_scale
|
float
|
Multiplicative scale applied to displayed coordinates. |
1.0
|
axis_unit
|
str | None
|
Optional axis-unit label appended to x/y/z labels. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Figure, ndarray]
|
Tuple of |
Source code in tempura/plotting/meshing.py
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 1218 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 | |
save_problem_regions_with_mesh(problem, region_shapes, plane_specs, output_path, *, region_names=None, region_display_names=None, ncols=None, figsize=(13.0, 11.0), suptitle='Pescado region cuts with overlaid mesh nodes', dpi=220, fill_mode='regions', background_alpha=0.88, tile_edgecolors='white', tile_linewidth=0.6, show_volume_edges=False, show_mesh_points=True, mesh_point_size=12.0, mesh_facecolors='white', mesh_edgecolors='black', mesh_linewidth=0.35, coordinate_scale=1.0, axis_unit=None)
Render region slices with overlaid mesh nodes and save the figure.
This is a convenience wrapper around plot_problem_regions_with_mesh(...)
that also creates the parent directory and closes the Matplotlib figure
after saving.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
problem
|
Any
|
Finalized Pescado problem with a |
required |
region_shapes
|
RegionShapeMap
|
Mapping of region name to solver-owned shape. |
required |
plane_specs
|
Sequence[PlaneSpec]
|
Sequence of cuts to render. |
required |
output_path
|
str | Path
|
Destination image path. |
required |
region_names
|
Sequence[str] | None
|
Optional region order for coloring. |
None
|
region_display_names
|
RegionDisplayMap | None
|
Optional mapping that merges several solver regions under one display label. |
None
|
ncols
|
int | None
|
Number of subplot columns. |
None
|
figsize
|
tuple[float, float]
|
Matplotlib figure size. |
(13.0, 11.0)
|
suptitle
|
str
|
Figure title. |
'Pescado region cuts with overlaid mesh nodes'
|
dpi
|
int
|
Output resolution passed to |
220
|
fill_mode
|
str
|
Either |
'regions'
|
background_alpha
|
float
|
Alpha used for the filled region background. |
0.88
|
tile_edgecolors
|
str
|
Edge color for projected control volumes. |
'white'
|
tile_linewidth
|
float
|
Edge line width for projected control volumes. |
0.6
|
show_volume_edges
|
bool
|
Whether to overlay projected control-volume edges. |
False
|
show_mesh_points
|
bool
|
Whether to overlay the selected mesh sites as markers. |
True
|
mesh_point_size
|
float
|
Scatter marker size. |
12.0
|
mesh_facecolors
|
str
|
Scatter face color. |
'white'
|
mesh_edgecolors
|
str
|
Scatter edge color. |
'black'
|
mesh_linewidth
|
float
|
Scatter edge line width. |
0.35
|
coordinate_scale
|
float
|
Multiplicative scale applied to displayed coordinates. |
1.0
|
axis_unit
|
str | None
|
Optional axis-unit label appended to x/y/z labels. |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Output path after the figure has been written. |
Source code in tempura/plotting/meshing.py
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 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 | |
transpose_plane_spec(spec, *, title=None)
Return one plane spec with the displayed axes swapped.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
spec
|
PlaneSpec
|
Original plane specification. |
required |
title
|
str | None
|
Optional replacement title for the transposed panel. |
None
|
Returns:
| Type | Description |
|---|---|
PlaneSpec
|
Copy of |
PlaneSpec
|
reversed. |
Source code in tempura/plotting/meshing.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |