/** * @file fuel_math.cpp * @brief Fuel amount calculation logic * * While engine running, fuel amount is an interpolated value from the fuel map by getRpm() and getEngineLoad() * On top of the value from the fuel map we also apply *
1) getInjectorLag() correction to account for fuel injector lag *
2) getCltCorrection() for warm-up *
3) getIatCorrection() to account for cold weather * * getCrankingFuel() depents only on getCoolantTemperature() * * * @date May 27, 2013 * @author Andrey Belomutskiy, (c) 2012-2014 * * This file is part of rusEfi - see http://rusefi.com * * rusEfi is free software; you can redistribute it and/or modify it under the terms of * the GNU General Public License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * rusEfi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with this program. * If not, see . * */ #include "main.h" #include "fuel_math.h" #include "interpolation.h" #include "engine_configuration.h" #include "allsensors.h" #include "engine_math.h" #include "rpm_calculator.h" #include "speed_density.h" #if EFI_ACCEL_ENRICHMENT #include "accel_enrichment.h" #endif /* EFI_ACCEL_ENRICHMENT */ float getBaseFuel(Engine *engine, int rpm) { if (engine->engineConfiguration->algorithm == LM_SPEED_DENSITY) { return getSpeedDensityFuel(engine, rpm); } else { float engineLoad = getEngineLoadT(engine); return getBaseTableFuel(rpm, engineLoad); } } /** * @returns Length of fuel injection, in milliseconds */ float getFuelMs(int rpm, Engine *engine) { if (isCranking()) { return getCrankingFuel(); } else { float baseFuel = getBaseFuel(engine, rpm); float fuel = getRunningFuel(baseFuel, engine, rpm); return fuel; } } float getRunningFuel(float baseFuel, Engine *engine, int rpm) { float iatCorrection = getIatCorrection(getIntakeAirTemperature()); float cltCorrection = getCltCorrection(getCoolantTemperature()); float injectorLag = getInjectorLag(getVBatt()); #if EFI_ACCEL_ENRICHMENT float accelEnrichment = getAccelEnrichment(); // todo: accelEnrichment #endif /* EFI_ACCEL_ENRICHMENT */ return baseFuel * cltCorrection * iatCorrection + injectorLag; } extern Engine engine; extern engine_configuration_s *engineConfiguration; static Map3D1616 fuelMap; /** * @brief Injector lag correction * @param vBatt Battery voltage. * @return Time in ms for injection opening time based on current battery voltage */ float getInjectorLag(float vBatt) { if (cisnan(vBatt)) { warning(OBD_System_Voltage_Malfunction, "vBatt=%f", vBatt); return 0; } float vBattCorrection = interpolate2d(vBatt, engineConfiguration->battInjectorLagCorrBins, engineConfiguration->battInjectorLagCorr, VBAT_INJECTOR_CURVE_SIZE); return engineConfiguration->injectorLag + vBattCorrection; } /** * @brief Initialize fuel map data structure * @note this method has nothing to do with fuel map VALUES - it's job * is to prepare the fuel map data structure for 3d interpolation */ void prepareFuelMap(void) { fuelMap.init(engineConfiguration->fuelTable); } /** * @brief Engine warm-up fuel correction. */ float getCltCorrection(float clt) { if (cisnan(clt)) return 1; // this error should be already reported somewhere else, let's just handle it return interpolate2d(clt, engineConfiguration->cltFuelCorrBins, engineConfiguration->cltFuelCorr, CLT_CURVE_SIZE); } float getIatCorrection(float iat) { if (cisnan(iat)) return 1; // this error should be already reported somewhere else, let's just handle it return interpolate2d(iat, engineConfiguration->iatFuelCorrBins, engineConfiguration->iatFuelCorr, IAT_CURVE_SIZE); } float getBaseTableFuel(int rpm, float engineLoad) { efiAssert(!cisnan(engineLoad), "invalid el", NAN); return fuelMap.getValue(engineLoad, engineConfiguration->fuelLoadBins, rpm, engineConfiguration->fuelRpmBins); } float getCrankingFuel(void) { return getStartingFuel(getCoolantTemperature()); } float getStartingFuel(float coolantTemperature) { // these magic constants are in Celsius if (cisnan(coolantTemperature) || coolantTemperature < engineConfiguration->crankingSettings.coolantTempMinC) return engineConfiguration->crankingSettings.fuelAtMinTempMs; if (coolantTemperature > engineConfiguration->crankingSettings.coolantTempMaxC) return engineConfiguration->crankingSettings.fuelAtMaxTempMs; return interpolate(engineConfiguration->crankingSettings.coolantTempMinC, engineConfiguration->crankingSettings.fuelAtMinTempMs, engineConfiguration->crankingSettings.coolantTempMaxC, engineConfiguration->crankingSettings.fuelAtMaxTempMs, coolantTemperature); } /** * @return 0 for OM_DEFAULT and OM_OPENDRAIN */ inline static int getElectricalValue0(pin_output_mode_e mode) { return mode == OM_INVERTED || mode == OM_OPENDRAIN_INVERTED; } /** * @return 1 for OM_DEFAULT and OM_OPENDRAIN */ inline static int getElectricalValue1(pin_output_mode_e mode) { return mode == OM_DEFAULT || mode == OM_OPENDRAIN; } // todo: this method is here for unit test visibility. todo: move to a bette place! int getElectricalValue(int logicalValue, pin_output_mode_e mode) { efiAssert(mode <= OM_OPENDRAIN_INVERTED, "invalid pin_output_mode_e", -1); return logicalValue ? getElectricalValue1(mode) : getElectricalValue0(mode); }