Skip to content

Commit

Permalink
Ramp rate warning now show parameter name.
Browse files Browse the repository at this point in the history
  • Loading branch information
THuckemann committed Oct 7, 2024
1 parent 7abe68c commit dba060d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qumada/utils/ramp_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def ramp_parameter(
num_points = int(abs(current_value - float(target)) / (ramp_rate * setpoint_intervall)) + 2
if ramp_time is not None and ramp_time < abs(current_value - float(target)) / ramp_rate:
print(
"Ramp rate of is to low to reach target value in specified"
f"Ramp rate of {param} is to low to reach target value in specified"
"max ramp time. Adapting ramp rate to match ramp time"
)
return ramp_parameter(
Expand Down

0 comments on commit dba060d

Please sign in to comment.