Created attachment 360 [details] patch for correct maths in IPMI plugin There is a bug in the code that leads to a wrong calculation of dE(n) dE(n) = (t(n+1)-t(n)) * (w(n-1) + w(n)) / 2 instead of dE(n) = (t(n+1)-t(n)) * (w(n) + w(n+1)) / 2 the patch change this. Thomas
Good Catch! This will be in the next 2.6 (commit b950ad0f63683ae5e6afbb46e06c29528c89e406). Please check for +80 char lines. Thanks,