Skip to content
Snippets Groups Projects
Commit 7dfabacd authored by Florian Schültke's avatar Florian Schültke
Browse files

Merge branch 'feature/parameter_study_mode_fixes' into 'develop'

UNICADOworklfow: -bugFix in parametrstudy mode

See merge request !41
parents 59062758 6d800523
No related branches found
No related tags found
2 merge requests!48Initial open source version,!41UNICADOworklfow: -bugFix in parametrstudy mode
......@@ -242,7 +242,7 @@ def estimate_input_value_from_configuration_file(root_of_study_xml_file, input_p
if study_counter == 1:
new_value_of_input = round(float(current_value_of_input) * (1 + float(file_value)), 6)
else:
new_value_of_input = round(reference_value_of_input * (1 + float(file_value)), 6)
new_value_of_input = round(float(reference_value_of_input) * (1 + float(file_value)), 6)
else:
# check if the first run of current input parameter should be performed
if study_counter == 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment