We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e109712 + 355fb31 commit 3dcd390Copy full SHA for 3dcd390
SU2_PY/SU2/io/config.py
@@ -729,9 +729,9 @@ def read_config(filename):
729
730
# hack - twl
731
if "DV_VALUE_NEW" not in data_dict:
732
- data_dict["DV_VALUE_NEW"] = [0]
+ data_dict["DV_VALUE_NEW"] = data_dict.get("DV_VALUE", [0])
733
if "DV_VALUE_OLD" not in data_dict:
734
- data_dict["DV_VALUE_OLD"] = [0]
+ data_dict["DV_VALUE_OLD"] = data_dict.get("DV_VALUE", [0])
735
if "OPT_ITERATIONS" not in data_dict:
736
data_dict["OPT_ITERATIONS"] = 100
737
if "OPT_ACCURACY" not in data_dict:
0 commit comments