Annotations in C++ code to produce formulas in rusEfi console #807

typo & refactoring: splitting class
This commit is contained in:
rusefi 2019-07-12 23:15:52 -04:00
parent 4e6ccdb13b
commit 6bdb8c50bf
4 changed files with 44 additions and 30 deletions

View File

@ -138,7 +138,7 @@ floatms_t WallFuel::getWallFuel(int injectorIndex) const {
return wallFuel/*[injectorIndex]*/; return wallFuel/*[injectorIndex]*/;
} }
int AccelEnrichmemnt::getMaxDeltaIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) { int AccelEnrichment::getMaxDeltaIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
int len = minI(cb.getSize(), cb.getCount()); int len = minI(cb.getSize(), cb.getCount());
if (len < 2) if (len < 2)
@ -161,14 +161,14 @@ int AccelEnrichmemnt::getMaxDeltaIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
return resultIndex; return resultIndex;
} }
float AccelEnrichmemnt::getMaxDelta(DECLARE_ENGINE_PARAMETER_SIGNATURE) { float AccelEnrichment::getMaxDelta(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
int index = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE); int index = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE);
return (cb.get(index) - (cb.get(index - 1))); return (cb.get(index) - (cb.get(index - 1)));
} }
// todo: eliminate code duplication between these two methods! Some pointer magic would help. // todo: eliminate code duplication between these two methods! Some pointer magic would help.
floatms_t AccelEnrichmemnt::getTpsEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE) { floatms_t TpsAccelEnrichment::getTpsEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
int maxDeltaIndex = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE); int maxDeltaIndex = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE);
// FuelSchedule *fs = engineConfiguration->injectionEvents; // FuelSchedule *fs = engineConfiguration->injectionEvents;
@ -225,7 +225,7 @@ floatms_t AccelEnrichmemnt::getTpsEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE)
return extraFuel; return extraFuel;
} }
float AccelEnrichmemnt::getEngineLoadEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE) { float LoadAccelEnrichment::getEngineLoadEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
int index = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE); int index = getMaxDeltaIndex(PASS_ENGINE_PARAMETER_SIGNATURE);
float d = (cb.get(index) - (cb.get(index - 1))) * CONFIG(specs.cylindersCount); float d = (cb.get(index) - (cb.get(index - 1))) * CONFIG(specs.cylindersCount);
@ -256,13 +256,17 @@ float AccelEnrichmemnt::getEngineLoadEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATU
return result; return result;
} }
void AccelEnrichmemnt::reset() { void AccelEnrichment::resetAE() {
cb.clear(); cb.clear();
previousValue = NAN; previousValue = NAN;
}
void TpsAccelEnrichment::resetAE() {
AccelEnrichment::resetAE();
resetFractionValues(); resetFractionValues();
} }
void AccelEnrichmemnt::resetFractionValues() { void TpsAccelEnrichment::resetFractionValues() {
accumulatedValue = 0; accumulatedValue = 0;
maxExtraPerCycle = 0; maxExtraPerCycle = 0;
maxExtraPerPeriod = 0; maxExtraPerPeriod = 0;
@ -270,15 +274,15 @@ void AccelEnrichmemnt::resetFractionValues() {
cycleCnt = 0; cycleCnt = 0;
} }
void AccelEnrichmemnt::setLength(int length) { void AccelEnrichment::setLength(int length) {
cb.setSize(length); cb.setSize(length);
} }
void AccelEnrichmemnt::onNewValue(float currentValue DECLARE_ENGINE_PARAMETER_SUFFIX) { void AccelEnrichment::onNewValue(float currentValue DECLARE_ENGINE_PARAMETER_SUFFIX) {
cb.add(currentValue); cb.add(currentValue);
} }
void AccelEnrichmemnt::onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE) { void TpsAccelEnrichment::onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
// we update values in handleFuel() directly // we update values in handleFuel() directly
//onNewValue(getTPS(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX); //onNewValue(getTPS(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX);
@ -307,12 +311,12 @@ void AccelEnrichmemnt::onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
} }
} }
void AccelEnrichmemnt::onEngineCycle(DECLARE_ENGINE_PARAMETER_SIGNATURE) { void LoadAccelEnrichment::onEngineCycle(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
onNewValue(getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX); onNewValue(getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX);
} }
AccelEnrichmemnt::AccelEnrichmemnt() { AccelEnrichment::AccelEnrichment() {
reset(); resetAE();
cb.setSize(4); cb.setSize(4);
} }

View File

@ -20,30 +20,40 @@ typedef Map3D<TPS_TPS_ACCEL_TABLE, TPS_TPS_ACCEL_TABLE, float, float> tps_tps_Ma
/** /**
* this object is used for MAP rate-of-change and TPS rate-of-change corrections * this object is used for MAP rate-of-change and TPS rate-of-change corrections
*/ */
class AccelEnrichmemnt { class AccelEnrichment {
public: public:
AccelEnrichmemnt(); AccelEnrichment();
/**
* @return Extra engine load value for fuel logic calculation
*/
float getEngineLoadEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE);
/**
* @return Extra fuel squirt duration for TPS acceleration
*/
floatms_t getTpsEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE);
int getMaxDeltaIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE); int getMaxDeltaIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE);
float getMaxDelta(DECLARE_ENGINE_PARAMETER_SIGNATURE); float getMaxDelta(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void onEngineCycle(DECLARE_ENGINE_PARAMETER_SIGNATURE); void resetAE();
void onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void reset();
void resetFractionValues();
void setLength(int length); void setLength(int length);
cyclic_buffer<float> cb; cyclic_buffer<float> cb;
void onNewValue(float currentValue DECLARE_ENGINE_PARAMETER_SUFFIX); void onNewValue(float currentValue DECLARE_ENGINE_PARAMETER_SUFFIX);
private: private:
float previousValue; float previousValue;
};
class LoadAccelEnrichment : public AccelEnrichment {
public:
/**
* @return Extra engine load value for fuel logic calculation
*/
float getEngineLoadEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void onEngineCycle(DECLARE_ENGINE_PARAMETER_SIGNATURE);
};
class TpsAccelEnrichment : public AccelEnrichment {
public:
/**
* @return Extra fuel squirt duration for TPS acceleration
*/
floatms_t getTpsEnrichment(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void resetFractionValues();
void resetAE();
private:
/** /**
* Used for Fractional TPS enrichment. * Used for Fractional TPS enrichment.
*/ */

View File

@ -178,8 +178,8 @@ public:
*/ */
angle_t engineCycle; angle_t engineCycle;
AccelEnrichmemnt engineLoadAccelEnrichment; LoadAccelEnrichment engineLoadAccelEnrichment;
AccelEnrichmemnt tpsAccelEnrichment; TpsAccelEnrichment tpsAccelEnrichment;
TriggerCentral triggerCentral; TriggerCentral triggerCentral;

View File

@ -251,8 +251,8 @@ efitimesec_t getTimeNowSeconds(void) {
#endif /* EFI_PROD_CODE */ #endif /* EFI_PROD_CODE */
static void resetAccel(void) { static void resetAccel(void) {
engine->engineLoadAccelEnrichment.reset(); engine->engineLoadAccelEnrichment.resetAE();
engine->tpsAccelEnrichment.reset(); engine->tpsAccelEnrichment.resetAE();
engine->wallFuel.resetWF(); engine->wallFuel.resetWF();
} }