You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently the function (simulate_with_given_pid_values) in (ziegler_nichols_tuning_pid.py) creates an integer numpy array, which results in rounding down the tuning parameter (kp) to the nearest lower integer.
Replacing (1000) with (1000.0) should fix this.
The text was updated successfully, but these errors were encountered:
Hi,
Apparently the function (simulate_with_given_pid_values) in (ziegler_nichols_tuning_pid.py) creates an integer numpy array, which results in rounding down the tuning parameter (kp) to the nearest lower integer.
Replacing (1000) with (1000.0) should fix this.
The text was updated successfully, but these errors were encountered: