rusefi-1/firmware/controllers/engine_cycle/fuel_schedule.cpp

160 lines
5.5 KiB
C++
Raw Normal View History

2020-07-24 18:26:24 -07:00
/**
* @file fuel_schedule.cpp
*
* Handles injection scheduling
*/
#include "pch.h"
2020-07-24 18:26:24 -07:00
#include "event_registry.h"
#if EFI_ENGINE_CONTROL
FuelSchedule::FuelSchedule() {
for (int cylinderIndex = 0; cylinderIndex < MAX_CYLINDER_COUNT; cylinderIndex++) {
2020-07-24 18:26:24 -07:00
InjectionEvent *ev = &elements[cylinderIndex];
ev->ownIndex = cylinderIndex;
}
}
void FuelSchedule::invalidate() {
2020-07-24 18:26:24 -07:00
isReady = false;
}
void FuelSchedule::resetOverlapping() {
for (size_t i = 0; i < efi::size(enginePins.injectors); i++) {
enginePins.injectors[i].reset();
}
}
/**
* @returns false in case of error, true if success
*/
bool FuelSchedule::addFuelEventsForCylinder(int i ) {
floatus_t oneDegreeUs = engine->rpmCalculator.oneDegreeUs; // local copy
2020-07-24 18:26:24 -07:00
if (cisnan(oneDegreeUs)) {
// in order to have fuel schedule we need to have current RPM
// wonder if this line slows engine startup?
return false;
}
/**
* injection phase is scheduled by injection end, so we need to step the angle back
* for the duration of the injection
*
* todo: since this method is not invoked within trigger event handler and
* engineState.injectionOffset is calculated from the same utility timer should we more that logic here?
*/
floatms_t fuelMs = engine->injectionDuration;
2020-07-24 18:26:24 -07:00
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(fuelMs), "NaN fuelMs", false);
angle_t injectionDurationAngle = MS2US(fuelMs) / oneDegreeUs;
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(injectionDurationAngle), "NaN injectionDurationAngle", false);
assertAngleRange(injectionDurationAngle, "injectionDuration_r", CUSTOM_INJ_DURATION);
floatus_t injectionOffset = engine->engineState.injectionOffset;
2020-07-24 18:26:24 -07:00
if (cisnan(injectionOffset)) {
// injection offset map not ready - we are not ready to schedule fuel events
return false;
}
angle_t baseAngle = injectionOffset - injectionDurationAngle;
2020-07-24 18:26:24 -07:00
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(baseAngle), "NaN baseAngle", false);
assertAngleRange(baseAngle, "baseAngle_r", CUSTOM_ERR_6554);
injection_mode_e mode = engine->getCurrentInjectionMode();
2020-07-24 18:26:24 -07:00
// We need two outputs if:
// - we are running batch fuel, and have "use two wire batch" enabled
// - running mode is sequential, but cranking mode is batch, so we should run two wire batch while cranking
// (if we didn't, only half of injectors would fire while cranking)
bool isTwoWireBatch = engineConfiguration->twoWireBatchInjection || (engineConfiguration->injectionMode == IM_SEQUENTIAL);
2020-07-24 18:26:24 -07:00
int injectorIndex;
if (mode == IM_SIMULTANEOUS || mode == IM_SINGLE_POINT) {
// These modes only have one injector
injectorIndex = 0;
} else if (mode == IM_SEQUENTIAL || (mode == IM_BATCH && isTwoWireBatch)) {
2020-07-24 18:26:24 -07:00
// Map order index -> cylinder index (firing order)
injectorIndex = getCylinderId(i) - 1;
2020-07-24 18:26:24 -07:00
} else if (mode == IM_BATCH) {
// Loop over the first half of the firing order twice
injectorIndex = i % (engineConfiguration->specs.cylindersCount / 2);
} else {
firmwareError(CUSTOM_OBD_UNEXPECTED_INJECTION_MODE, "Unexpected injection mode %d", mode);
injectorIndex = 0;
}
InjectorOutputPin *secondOutput;
if (mode == IM_BATCH && isTwoWireBatch) {
2020-07-24 18:26:24 -07:00
/**
* also fire the 2nd half of the injectors so that we can implement a batch mode on individual wires
*/
// Compute the position of this cylinder's twin in the firing order
// Each injector gets fired as a primary (the same as sequential), but also
// fires the injector 360 degrees later in the firing order.
int secondOrder = (i + (engineConfiguration->specs.cylindersCount / 2)) % engineConfiguration->specs.cylindersCount;
int secondIndex = getCylinderId(secondOrder) - 1;
2020-07-24 18:26:24 -07:00
secondOutput = &enginePins.injectors[secondIndex];
} else {
secondOutput = nullptr;
}
InjectorOutputPin *output = &enginePins.injectors[injectorIndex];
bool isSimultanious = mode == IM_SIMULTANEOUS;
InjectionEvent *ev = &elements[i];
ev->ownIndex = i;
2020-07-24 18:26:24 -07:00
ev->outputs[0] = output;
ev->outputs[1] = secondOutput;
ev->isSimultanious = isSimultanious;
// Stash the cylinder number so we can select the correct fueling bank later
ev->cylinderNumber = injectorIndex;
2020-07-24 18:26:24 -07:00
if (!isSimultanious && !output->isInitialized()) {
// todo: extract method for this index math
warning(CUSTOM_OBD_INJECTION_NO_PIN_ASSIGNED, "no_pin_inj #%s", output->name);
}
2021-12-05 07:46:35 -08:00
float angle = baseAngle + getCylinderAngle(i, ev->cylinderNumber);
2020-07-24 18:26:24 -07:00
if (TRIGGER_WAVEFORM(getSize()) < 1) {
warning(CUSTOM_ERR_NOT_INITIALIZED_TRIGGER, "uninitialized TriggerWaveform");
return false;
}
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(angle), "findAngle#3", false);
assertAngleRange(angle, "findAngle#a33", CUSTOM_ERR_6544);
ev->injectionStart.setAngle(angle);
2020-07-24 18:26:24 -07:00
#if EFI_UNIT_TEST
printf("registerInjectionEvent angle=%.2f trgIndex=%d inj %d\r\n", angle, ev->injectionStart.triggerEventIndex, injectorIndex);
#endif
return true;
}
void FuelSchedule::addFuelEvents() {
for (size_t cylinderIndex = 0; cylinderIndex < engineConfiguration->specs.cylindersCount; cylinderIndex++) {
2020-07-24 18:26:24 -07:00
InjectionEvent *ev = &elements[cylinderIndex];
ev->ownIndex = cylinderIndex; // todo: is this assignment needed here? we now initialize in constructor
bool result = addFuelEventsForCylinder(cylinderIndex);
if (!result) {
invalidate();
2020-07-24 18:26:24 -07:00
return;
}
2020-07-24 18:26:24 -07:00
}
// We made it through all cylinders, mark the schedule as ready so it can be used
2020-07-24 18:26:24 -07:00
isReady = true;
}
void FuelSchedule::onTriggerTooth(size_t toothIndex, int rpm, efitick_t nowNt) {
// Wait for schedule to be built - this happens the first time we get RPM
if (!isReady) {
return;
}
for (size_t i = 0; i < engineConfiguration->specs.cylindersCount; i++) {
2020-07-24 18:26:24 -07:00
elements[i].onTriggerTooth(toothIndex, rpm, nowNt);
}
}
#endif