@@ -1016,7 +1016,6 @@ def plot_structures_property(
1016
1016
shape = shape ,
1017
1017
ax = ax ,
1018
1018
eps_component = eps_component ,
1019
- transpose = transpose ,
1020
1019
)
1021
1020
else :
1022
1021
# For custom medium, apply pcolormesh clipped by the shape.
@@ -1034,7 +1033,6 @@ def plot_structures_property(
1034
1033
ax ,
1035
1034
grid ,
1036
1035
eps_component = eps_component ,
1037
- transpose = transpose ,
1038
1036
)
1039
1037
1040
1038
if cbar :
@@ -1359,7 +1357,7 @@ def plot_heat_charge_property(
1359
1357
vlim : Optional [tuple [float , float ]] = None ,
1360
1358
transpose : bool = False ,
1361
1359
) -> Ax :
1362
- """Plot each of scebe 's components on a plane defined by one nonzero x,y,z coordinate.
1360
+ """Plot each of scene 's components on a plane defined by one nonzero x,y,z coordinate.
1363
1361
The thermal conductivity is plotted in grayscale based on its value.
1364
1362
1365
1363
Parameters
@@ -1412,6 +1410,7 @@ def plot_structures_heat_conductivity(
1412
1410
ax : Ax = None ,
1413
1411
hlim : Optional [tuple [float , float ]] = None ,
1414
1412
vlim : Optional [tuple [float , float ]] = None ,
1413
+ transpose : bool = False ,
1415
1414
) -> Ax :
1416
1415
"""Plot each of scene's structures on a plane defined by one nonzero x,y,z coordinate.
1417
1416
The thermal conductivity is plotted in grayscale based on its value.
@@ -1462,6 +1461,7 @@ def plot_structures_heat_conductivity(
1462
1461
ax = ax ,
1463
1462
hlim = hlim ,
1464
1463
vlim = vlim ,
1464
+ transpose = transpose ,
1465
1465
)
1466
1466
1467
1467
@equal_aspect
@@ -1699,6 +1699,7 @@ def plot_heat_conductivity(
1699
1699
ax : Ax = None ,
1700
1700
hlim : Optional [tuple [float , float ]] = None ,
1701
1701
vlim : Optional [tuple [float , float ]] = None ,
1702
+ transpose : bool = False ,
1702
1703
):
1703
1704
"""Plot each of scebe's components on a plane defined by one nonzero x,y,z coordinate.
1704
1705
The thermal conductivity is plotted in grayscale based on its value.
@@ -1745,6 +1746,7 @@ def plot_heat_conductivity(
1745
1746
ax = ax ,
1746
1747
hlim = hlim ,
1747
1748
vlim = vlim ,
1749
+ transpose = transpose ,
1748
1750
)
1749
1751
1750
1752
""" Misc """
0 commit comments