Skip to content

Commit 724b789

Browse files
committed
add combo if not present
1 parent d2481dd commit 724b789

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SU2_PY/SU2/eval/functions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,9 @@ def aerodynamics(config, state=None):
179179
if not "AERO_COEFF" in config["HISTORY_OUTPUT"]:
180180
config["HISTORY_OUTPUT"].append("AERO_COEFF")
181181

182+
if not "COMBO" in config["HISTORY_OUTPUT"]:
183+
config["HISTORY_OUTPUT"].append("COMBO")
184+
182185
if not "MESH" in state.FILES:
183186
state.FILES.MESH = config["MESH_FILENAME"]
184187
special_cases = su2io.get_specialCases(config)

0 commit comments

Comments
 (0)