Skip to content

Commit 6f0cb60

Browse files
authored
Update PostProcessor.py
1 parent 6470484 commit 6f0cb60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyaedt/modules/PostProcessor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2713,7 +2713,7 @@ def create_report(
27132713
report.point_number = polyline_points
27142714
if context == "Differential Pairs":
27152715
report.differential_pairs = True
2716-
elif self.post_solution_type in ["Q3D Extractor", "2D Extractor"] and context:
2716+
elif self._app.design_type in ["Q3D Extractor", "2D Extractor"] and context:
27172717
report.matrix = context
27182718
elif report_category == "Far Fields":
27192719
if not context and self._app._field_setups:
@@ -2873,7 +2873,7 @@ def get_solution_data(
28732873
report.point_number = polyline_points
28742874
if context == "Differential Pairs":
28752875
report.differential_pairs = True
2876-
elif self.post_solution_type in ["Q3D Extractor", "2D Extractor"] and context:
2876+
elif self._app.design_type in ["Q3D Extractor", "2D Extractor"] and context:
28772877
report.matrix = context
28782878
elif report_category == "Far Fields":
28792879
if not context and self._app.field_setups:

0 commit comments

Comments
 (0)