2015-07-10 06:01:56 -07:00
|
|
|
/*
|
|
|
|
* @file dodge_ram.cpp
|
|
|
|
*
|
2017-01-06 07:04:41 -08:00
|
|
|
* set engine_type 31
|
2015-07-10 06:01:56 -07:00
|
|
|
*
|
|
|
|
* @date Apr 22, 2015
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "dodge_ram.h"
|
|
|
|
#include "custom_engine.h"
|
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void setDodgeRam1996() {
|
|
|
|
setFrankensoConfiguration();
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
engineConfiguration->trigger.type = TT_DODGE_RAM;
|
|
|
|
engineConfiguration->injector.flow = 243.6; // 23.2lb/h
|
|
|
|
engineConfiguration->map.sensor.type = MT_DODGE_NEON_2003;
|
|
|
|
|
|
|
|
//Base engine setting
|
|
|
|
engineConfiguration->specs.cylindersCount = 8;
|
|
|
|
engineConfiguration->specs.firingOrder = FO_1_8_4_3_6_5_7_2;
|
|
|
|
engineConfiguration->specs.displacement = 5.2;
|
|
|
|
|
2017-01-06 07:04:41 -08:00
|
|
|
// set global_trigger_offset_angle -50
|
2015-07-10 06:01:56 -07:00
|
|
|
engineConfiguration->globalTriggerAngleOffset = -50;
|
|
|
|
|
2019-10-02 18:00:10 -07:00
|
|
|
setDodgeSensor(&engineConfiguration->clt, 2700);
|
|
|
|
setDodgeSensor(&engineConfiguration->iat, 2700);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-12-11 14:48:55 -08:00
|
|
|
engineConfiguration->useStepperIdle = true;
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|