PowerTune
PowerTune copied to clipboard
Virtual Dyno via Raspberry Pi SenseHat Acceleromter and qt charts
weight : car weight in Kg (user input) acceleromter : in g (from acceleration sensor)
Calculate Power in KW
KW = ((weight) * (accelerometer/ 9.80665) * (accelerometer/ 9.80665)) /1000
Calculate Torque in NM
Torque (N.m) = (9.5488 x kW) / RPM
P = F * V; We can simplify so F = E (engine force) E = m * a; m - is vehicle weight, a (m/s) = can be measured between two vss captures.
Here is a nice example on how to do it: https://www.youtube.com/watch?v=FnN2asvFmIs
In this solution we do not take into consideration the drag that we create moving the car forward, i think this would be the next step, but for that the simplest way i can think is to accelerate the car and then switch to neutral and let it slow down, with the deceleration we could "estimate" the drag coefficient. but i would say that is doable after some tests.