update consumer of injector deadtime (InjectorModelWithConfig::getDeadtime)
This commit is contained in:
parent
a4cb86f1a2
commit
611ad836df
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue