From f85886ecf11875cb642a918f67569f4c32af1578 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sun, 30 Oct 2016 01:49:16 +0200 Subject: [PATCH] Adjusted PID controler settings --- src/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monitor.c b/src/monitor.c index 203b3f9c9..79a1bbb90 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -193,9 +193,9 @@ static int monitor (hashcat_ctx_t *hashcat_ctx) last_temp_check_time = temp_check_time; - float Kp = 1.8f; + float Kp = 2.0f; float Ki = 0.005f; - float Kd = 6; + float Kd = 10.0f; // PID controller (3-term controller: proportional - Kp, integral - Ki, derivative - Kd)