diff --git a/src/CPPlot.cpp b/src/CPPlot.cpp index ae0a4329fb..f27a10bea9 100644 --- a/src/CPPlot.cpp +++ b/src/CPPlot.cpp @@ -618,7 +618,7 @@ CPPlot::plotModel() // Endurance Index if (pdModel->hasWPrime() && pdModel->WPrime() && pdModel->hasCP() && pdModel->CP()) { - cpw->eiValue->setText(QString("%1").arg(pdModel->WPrime() / pdModel->CP(), 0, 'f', 0)); + cpw->eiValue->setText(QString("%1").arg(3.6 * pdModel->WPrime() / pdModel->CP(), 0, 'f', 0)); } }