diff --git a/aerosandbox/aerodynamics/aero_2D/xfoil.py b/aerosandbox/aerodynamics/aero_2D/xfoil.py index 3c7acea5..4ddbfeaf 100644 --- a/aerosandbox/aerodynamics/aero_2D/xfoil.py +++ b/aerosandbox/aerodynamics/aero_2D/xfoil.py @@ -381,6 +381,8 @@ def _run_xfoil(self, "XFoil output file is malformed; it doesn't have the expected number of lines.\n" "For debugging, the raw output file from XFoil is printed below:\n" + "\n".join(lines) + + "\nTitle line: " + title_line + + "\nColumns: " + str(columns) ) def str_to_float(s: str) -> float: @@ -432,6 +434,9 @@ def str_to_float(s: str) -> float: "In previous testing, this occurs due to a bug in XFoil itself, with certain input combos.\n" "For debugging, the raw output file from XFoil is printed below:\n" + "\n".join(lines) + + "\nTitle line: " + title_line + + "\nColumns: " + str(columns) + + f"\nIdentified {len(data)} data columns and {len(columns)} header columns." ) for i in range(len(columns)):