From a762853d3b03a2840ffb6985feacdc46c128aba3 Mon Sep 17 00:00:00 2001 From: Andrey Date: Thu, 20 May 2021 02:39:20 -0400 Subject: [PATCH] refactoring magic constant STOICH_RATIO --- firmware/controllers/algo/engine_configuration.cpp | 2 +- firmware/controllers/algo/fuel/fuel_computer.cpp | 2 +- firmware/controllers/can/can_verbose.cpp | 2 +- firmware/controllers/math/closed_loop_fuel.cpp | 2 +- firmware/controllers/sensors/ego.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firmware/controllers/algo/engine_configuration.cpp b/firmware/controllers/algo/engine_configuration.cpp index 3ab2812ddd..8501403b79 100644 --- a/firmware/controllers/algo/engine_configuration.cpp +++ b/firmware/controllers/algo/engine_configuration.cpp @@ -805,7 +805,7 @@ static void setDefaultEngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) { setLinearCurve(engineConfiguration->map.samplingWindow, 50, 50, 1); setLambdaMap(config->lambdaTable, 1.0f); - engineConfiguration->stoichRatioPrimary = 14.7f * PACK_MULT_AFR_CFG; + engineConfiguration->stoichRatioPrimary = STOICH_RATIO * PACK_MULT_AFR_CFG; engineConfiguration->stoichRatioSecondary = 9.0f * PACK_MULT_AFR_CFG; setDefaultVETable(PASS_ENGINE_PARAMETER_SIGNATURE); diff --git a/firmware/controllers/algo/fuel/fuel_computer.cpp b/firmware/controllers/algo/fuel/fuel_computer.cpp index b7c69b11fd..7757f7d0d7 100644 --- a/firmware/controllers/algo/fuel/fuel_computer.cpp +++ b/firmware/controllers/algo/fuel/fuel_computer.cpp @@ -27,7 +27,7 @@ float FuelComputer::getStoichiometricRatio() const { // Config compatibility: this field may be zero on ECUs with old defaults if (primary < 5) { // 14.7 = E0 gasoline AFR - primary = 14.7f; + primary = STOICH_RATIO; } // Without an ethanol/flex sensor, return primary configured stoich ratio diff --git a/firmware/controllers/can/can_verbose.cpp b/firmware/controllers/can/can_verbose.cpp index 15f87ffd05..7754439756 100644 --- a/firmware/controllers/can/can_verbose.cpp +++ b/firmware/controllers/can/can_verbose.cpp @@ -117,7 +117,7 @@ struct Sensors2 { }; static void populateFrame(Sensors2& msg) { - msg.afr = Sensor::get(SensorType::Lambda1).value_or(0) * 14.7f; + msg.afr = Sensor::get(SensorType::Lambda1).value_or(0) * STOICH_RATIO; msg.oilPressure = Sensor::get(SensorType::OilPressure).value_or(-1); msg.vvtPos = engine->triggerCentral.getVVTPosition(0, 0); msg.vbatt = Sensor::get(SensorType::BatteryVoltage).value_or(0); diff --git a/firmware/controllers/math/closed_loop_fuel.cpp b/firmware/controllers/math/closed_loop_fuel.cpp index c0f023f4a5..2aa9a0aa6b 100644 --- a/firmware/controllers/math/closed_loop_fuel.cpp +++ b/firmware/controllers/math/closed_loop_fuel.cpp @@ -83,7 +83,7 @@ bool shouldUpdateCorrection(SensorType sensor DECLARE_ENGINE_PARAMETER_SUFFIX) { // Pause (but don't reset) correction if the AFR is off scale. // It's probably a transient and poorly tuned transient correction - auto afr = Sensor::get(sensor).value_or(0) * 14.7f; + auto afr = Sensor::get(sensor).value_or(0) * STOICH_RATIO; if (!afr || afr < (cfg.minAfr * 0.1f) || afr > (cfg.maxAfr * 0.1f)) { return false; } diff --git a/firmware/controllers/sensors/ego.cpp b/firmware/controllers/sensors/ego.cpp index a1c9d36860..fc9cbbc8e7 100644 --- a/firmware/controllers/sensors/ego.cpp +++ b/firmware/controllers/sensors/ego.cpp @@ -38,7 +38,7 @@ static int totalEgoCnt = 0; static int prevEgoCnt = 0; // todo: move it to engineConfiguration -static const float stoichAfr = 14.7f; +static const float stoichAfr = STOICH_RATIO; static const float maxAfrDeviation = 5.0f; // 9.7..19.7 static const int minAvgSize = (EGO_AVG_BUF_SIZE / 2); // ~0.6 sec for 20ms period of 'fast' callback, and it matches a lag time of most narrow EGOs static const int maxAvgSize = (EGO_AVG_BUF_SIZE - 1); // the whole buffer