diff --git a/doc/changelog.d/6726.fixed.md b/doc/changelog.d/6726.fixed.md new file mode 100644 index 00000000000..72c3c47be82 --- /dev/null +++ b/doc/changelog.d/6726.fixed.md @@ -0,0 +1 @@ +Update Report type according to Solution Type in CreateOutputVariable diff --git a/src/ansys/aedt/core/application/design_solutions.py b/src/ansys/aedt/core/application/design_solutions.py index d111d7e83db..0ab72fc78c8 100644 --- a/src/ansys/aedt/core/application/design_solutions.py +++ b/src/ansys/aedt/core/application/design_solutions.py @@ -89,21 +89,21 @@ "DCConduction": { "name": "DCConduction", "options": "XY", - "report_type": None, + "report_type": "DCConduction", "default_setup": 58, "default_adaptive": "LastAdaptive", }, "DC Conduction": { "name": "DCConduction", "options": "XY", - "report_type": None, + "report_type": "DC Conduction", "default_setup": 58, "default_adaptive": "LastAdaptive", }, "ACConduction": { "name": "ACConduction", "options": "XY", - "report_type": None, + "report_type": "ACConduction", "default_setup": 59, "default_adaptive": "LastAdaptive", "intrinsics": ["Freq", "Phase"], @@ -111,7 +111,7 @@ "AC Conduction": { "name": "ACConduction", "options": "XY", - "report_type": None, + "report_type": "AC Conduction", "default_setup": 59, "default_adaptive": "LastAdaptive", "intrinsics": ["Freq", "Phase"],