From 724b7890ecf7b2f1f72ce9b0c382abf1a8ffdf2e Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Sun, 12 Oct 2025 20:43:16 -0700 Subject: [PATCH] add combo if not present --- SU2_PY/SU2/eval/functions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SU2_PY/SU2/eval/functions.py b/SU2_PY/SU2/eval/functions.py index 99372a9ebe7d..3d5372259549 100644 --- a/SU2_PY/SU2/eval/functions.py +++ b/SU2_PY/SU2/eval/functions.py @@ -179,6 +179,9 @@ def aerodynamics(config, state=None): if not "AERO_COEFF" in config["HISTORY_OUTPUT"]: config["HISTORY_OUTPUT"].append("AERO_COEFF") + if not "COMBO" in config["HISTORY_OUTPUT"]: + config["HISTORY_OUTPUT"].append("COMBO") + if not "MESH" in state.FILES: state.FILES.MESH = config["MESH_FILENAME"] special_cases = su2io.get_specialCases(config)