no wall wetting on GDI right?

This commit is contained in:
Andrey 2024-02-26 00:27:43 -05:00
parent c4367b8b4d
commit c62423b28a
3 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ static void setDefaultAlternatorParameters() {
#endif // EFI_ALTERNATOR_CONTROL #endif // EFI_ALTERNATOR_CONTROL
void setGDIFueling() { void setGDIFueling() {
setGdiWallWetting();
// Use high pressure sensor // Use high pressure sensor
engineConfiguration->injectorPressureType = IPT_High; engineConfiguration->injectorPressureType = IPT_High;
// Automatic compensation of injector flow based on rail pressure // Automatic compensation of injector flow based on rail pressure

View File

@ -190,6 +190,11 @@ static void setDefaultLambdaTable() {
} }
} }
void setGdiWallWetting() {
engineConfiguration->wwaeTau = 0;
engineConfiguration->wwaeBeta = 0;
}
void setDefaultWallWetting() { void setDefaultWallWetting() {
#if !EFI_UNIT_TEST #if !EFI_UNIT_TEST
// todo: this is a reasonable default for what kinds of engines exactly? // todo: this is a reasonable default for what kinds of engines exactly?

View File

@ -8,6 +8,7 @@ void setDefaultFuel();
void setDefaultIgnition(); void setDefaultIgnition();
void setDefaultCranking(); void setDefaultCranking();
void setGDIFueling(); void setGDIFueling();
void setGdiWallWetting();
void setInline4(); void setInline4();
void setPPSInputs(adc_channel_e pps1, adc_channel_e pps2); void setPPSInputs(adc_channel_e pps1, adc_channel_e pps2);