refactoring: better variable names
This commit is contained in:
parent
413d318da6
commit
c52e5aa465
|
@ -273,7 +273,7 @@ static void printSensors(Logging *log, bool fileFormat) {
|
||||||
|
|
||||||
reportSensorF(log, fileFormat, GAUGE_NAME_TCHARGE, "K", engine->engineState.tChargeK, 2); // log column #8
|
reportSensorF(log, fileFormat, GAUGE_NAME_TCHARGE, "K", engine->engineState.tChargeK, 2); // log column #8
|
||||||
if (hasMapSensor(PASS_ENGINE_PARAMETER_SIGNATURE)) {
|
if (hasMapSensor(PASS_ENGINE_PARAMETER_SIGNATURE)) {
|
||||||
reportSensorF(log, fileFormat, GAUGE_NAME_FUEL_VE, "%", engine->engineState.currentVE * PERCENT_MULT, 2);
|
reportSensorF(log, fileFormat, GAUGE_NAME_FUEL_VE, "%", engine->engineState.currentBaroCorrectedVE * PERCENT_MULT, 2);
|
||||||
}
|
}
|
||||||
reportSensorF(log, fileFormat, GAUGE_NAME_VVT, "deg", engine->triggerCentral.vvtPosition, 1);
|
reportSensorF(log, fileFormat, GAUGE_NAME_VVT, "deg", engine->triggerCentral.vvtPosition, 1);
|
||||||
|
|
||||||
|
@ -705,7 +705,7 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_
|
||||||
|
|
||||||
if (hasMapSensor(PASS_ENGINE_PARAMETER_SIGNATURE)) {
|
if (hasMapSensor(PASS_ENGINE_PARAMETER_SIGNATURE)) {
|
||||||
float mapValue = getMap();
|
float mapValue = getMap();
|
||||||
tsOutputChannels->veValue = engine->engineState.currentVE * PERCENT_MULT;
|
tsOutputChannels->veValue = engine->engineState.currentBaroCorrectedVE * PERCENT_MULT;
|
||||||
// todo: bug here? target afr could work based on real MAF?
|
// todo: bug here? target afr could work based on real MAF?
|
||||||
tsOutputChannels->currentTargetAfr = afrMap.getValue(rpm, mapValue);
|
tsOutputChannels->currentTargetAfr = afrMap.getValue(rpm, mapValue);
|
||||||
tsOutputChannels->manifoldAirPressure = mapValue;
|
tsOutputChannels->manifoldAirPressure = mapValue;
|
||||||
|
|
|
@ -233,7 +233,8 @@ public:
|
||||||
float tChargeK = 0;
|
float tChargeK = 0;
|
||||||
efitick_t timeSinceLastTChargeK;
|
efitick_t timeSinceLastTChargeK;
|
||||||
|
|
||||||
float currentVE = 0;
|
float currentRawVE = 0;
|
||||||
|
float currentBaroCorrectedVE = 0;
|
||||||
float targetAFR = 0;
|
float targetAFR = 0;
|
||||||
|
|
||||||
int vssEventCounter = 0;
|
int vssEventCounter = 0;
|
||||||
|
|
|
@ -215,14 +215,14 @@ void EngineState::periodicFastCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||||
/**
|
/**
|
||||||
* *0.01 because of https://sourceforge.net/p/rusefi/tickets/153/
|
* *0.01 because of https://sourceforge.net/p/rusefi/tickets/153/
|
||||||
*/
|
*/
|
||||||
float rawVe = veMap.getValue(rpm, CONFIGB(useTPSBasedVeTable) ? tps : map);
|
currentRawVE = veMap.getValue(rpm, CONFIGB(useTPSBasedVeTable) ? tps : map);
|
||||||
// get VE from the separate table for Idle
|
// get VE from the separate table for Idle
|
||||||
if (CONFIG(useSeparateVeForIdle)) {
|
if (CONFIG(useSeparateVeForIdle)) {
|
||||||
float idleVe = interpolate2d("idleVe", rpm, config->idleVeBins, config->idleVe, IDLE_VE_CURVE_SIZE);
|
float idleVe = interpolate2d("idleVe", rpm, config->idleVeBins, config->idleVe, IDLE_VE_CURVE_SIZE);
|
||||||
// interpolate between idle table and normal (running) table using TPS threshold
|
// interpolate between idle table and normal (running) table using TPS threshold
|
||||||
rawVe = interpolateClamped(0.0f, idleVe, CONFIGB(idlePidDeactivationTpsThreshold), rawVe, tps);
|
currentRawVE = interpolateClamped(0.0f, idleVe, CONFIGB(idlePidDeactivationTpsThreshold), currentRawVE, tps);
|
||||||
}
|
}
|
||||||
currentVE = baroCorrection * rawVe * 0.01;
|
currentBaroCorrectedVE = baroCorrection * currentRawVE * PERCENT_DIV;
|
||||||
targetAFR = afrMap.getValue(rpm, map);
|
targetAFR = afrMap.getValue(rpm, map);
|
||||||
} else {
|
} else {
|
||||||
baseTableFuel = getBaseTableFuel(rpm, engineLoad);
|
baseTableFuel = getBaseTableFuel(rpm, engineLoad);
|
||||||
|
|
|
@ -28,7 +28,12 @@
|
||||||
|
|
||||||
// I believe that TunerStudio curve editor has a bug with F32 support
|
// I believe that TunerStudio curve editor has a bug with F32 support
|
||||||
// because of that bug we cannot have '1.05' for 5% extra multiplier
|
// because of that bug we cannot have '1.05' for 5% extra multiplier
|
||||||
|
/**
|
||||||
|
* *0.01 because of https://sourceforge.net/p/rusefi/tickets/153/
|
||||||
|
*/
|
||||||
|
|
||||||
#define PERCENT_MULT 100.0f
|
#define PERCENT_MULT 100.0f
|
||||||
|
#define PERCENT_DIV 0.01f
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* http://rusefi.com/wiki/index.php?title=Manual:Engine_Type
|
* http://rusefi.com/wiki/index.php?title=Manual:Engine_Type
|
||||||
|
|
|
@ -130,7 +130,7 @@ floatms_t getSpeedDensityFuel(float map DECLARE_GLOBAL_SUFFIX) {
|
||||||
float adjustedMap = map + engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_GLOBAL_SIGNATURE);
|
float adjustedMap = map + engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_GLOBAL_SIGNATURE);
|
||||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(adjustedMap), "NaN adjustedMap", 0);
|
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(adjustedMap), "NaN adjustedMap", 0);
|
||||||
|
|
||||||
float airMass = getCylinderAirMass(ENGINE(engineState.currentVE), adjustedMap, tChargeK PASS_GLOBAL_SUFFIX);
|
float airMass = getCylinderAirMass(ENGINE(engineState.currentBaroCorrectedVE), adjustedMap, tChargeK PASS_GLOBAL_SUFFIX);
|
||||||
if (cisnan(airMass)) {
|
if (cisnan(airMass)) {
|
||||||
warning(CUSTOM_ERR_6685, "NaN airMass");
|
warning(CUSTOM_ERR_6685, "NaN airMass");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue