From bcf24850a82c297200d45721f35a815d8e071117 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 5 Nov 2016 23:26:37 +0100 Subject: [PATCH] Set back PID configuration to initial one --- src/monitor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/monitor.c b/src/monitor.c index 19adaa4d7..72ef415a9 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 = 2.0f; - float Ki = 0.005f; - float Kd = 10.0f; + float Kp = 1.8; + float Ki = 0.005; + float Kd = 6; // PID controller (3-term controller: proportional - Kp, integral - Ki, derivative - Kd)