update consumer of injector deadtime (InjectorModelWithConfig::getDeadtime)

This commit is contained in:
FDSoftware 2025-02-26 12:54:19 -03:00 committed by rusefillc
parent a4cb86f1a2
commit 611ad836df
1 changed files with 4 additions and 4 deletions

View File

@ -164,10 +164,10 @@ float InjectorModelWithConfig::getInjectorFlowRatio() {
}
float InjectorModelWithConfig::getDeadtime() const {
return interpolate2d(
Sensor::get(SensorType::BatteryVoltage).value_or(VBAT_FALLBACK_VALUE),
m_cfg->battLagCorrBins,
m_cfg->battLagCorr
return interpolate3d(
m_cfg->battLagCorrTable,
m_cfg->battLagCorrBattBins, Sensor::get(SensorType::BatteryVoltage).value_or(VBAT_FALLBACK_VALUE),
m_cfg->battLagCorrPressBins, pressureCorrectionReference
);
}