From aa89b8b9519210a44f5acbfbe4816e6dbed49bd8 Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 4 Jan 2017 15:01:35 +0100 Subject: [PATCH] Make the PID controller more smooth --- src/monitor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/monitor.c b/src/monitor.c index 4520b5b74..0de0e67d0 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -204,9 +204,9 @@ static int monitor (hashcat_ctx_t *hashcat_ctx) last_temp_check_time = temp_check_time; - float Kp = 1.8f; - float Ki = 0.005f; - float Kd = 6.0f; + float Kp = 1.6f; + float Ki = 0.001f; + float Kd = 10.0f; // PID controller (3-term controller: proportional - Kp, integral - Ki, derivative - Kd)