forked from Churrosoft/OpenEFI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tablas.h
91 lines (88 loc) · 3.91 KB
/
Tablas.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#pragma once
/*-----( TABLAS: )-----*/
/*Los contenidos de esta tabla son solo como referencia,
no representan valores reales para un motor*/
int TINY[18][11] = {
//RPM requerida / carga motor
//0 ;18;27;36;45;55;64;73;82;91;100 */
/*800*/{ 2 ,3 ,3 ,3 ,4 ,6 ,6 ,7 ,8 ,8 ,8 },
/*1000*/{ 2 ,3 ,3 ,4 ,5 ,8 ,8 ,8 ,10,10,10 },
/*1200*/{ 2 ,5 ,5 ,5 ,6 ,9 ,9 ,10,11,12,12 },
/*1500*/{ 7 ,8 ,8 ,8 ,8 ,10,10,11,13,14,14 },
/*1700*/{ 9 ,10,10,10,10,11,11,12,14,15,15 },
/*2000*/{ 11,12,12,12,12,13,13,14,15,16,16 },
/*2200*/{ 12,14,14,14,14,15,15,16,17,18,18 },
/*2500*/{ 14,16,16,16,16,17,17,17,18,19,19 },
/*2700*/{ 16,18,18,18,18,19,19,19,20,21,21 },
/*3000*/{ 18,20,20,20,20,21,21,21,22,23,23 },
/*3200*/{ 20,22,22,22,22,23,23,23,24,25,25 },
/*3500*/{ 22,24,24,24,24,25,25,25,26,27,27 },
/*3700*/{ 24,26,26,26,26,27,27,27,28,29,29 },
/*4000*/{ 25,27,27,27,27,28,28,28,29,30,30 },
/*4500*/{ 27,28,28,29,29,30,30,30,31,32,32 },
/*5000*/{ 29,31,32,32,32,33,33,33,34,35,35 },
/*5500*/{ 31,33,33,33,33,33,33,34,36,37,37 },
/*6000*/{ 33,34,34,34,34,34,34,35,37,38,38 }
}; //matriz tabla de inyeccion
int VE[18][11] = {
//0 ;18;27;36;45;55;64;73;82;91;100 */
/*800*/{ 2 ,3 ,3 ,3 ,4 ,6 ,6 ,7 ,8 ,8 ,8 },
/*1000*/{ 2 ,3 ,3 ,4 ,5 ,8 ,8 ,8 ,10,10,10 },
/*1200*/{ 2 ,5 ,5 ,5 ,6 ,9 ,9 ,10,11,12,12 },
/*1500*/{ 7 ,8 ,8 ,8 ,8 ,10,10,11,13,14,14 },
/*1700*/{ 9 ,10,10,10,10,11,11,12,14,15,15 },
/*2000*/{ 11,12,12,12,12,13,13,14,15,16,16 },
/*2200*/{ 12,14,14,14,14,15,15,16,17,18,18 },
/*2500*/{ 14,16,16,16,16,17,17,17,18,19,19 },
/*2700*/{ 16,18,18,18,18,19,19,19,20,21,21 },
/*3000*/{ 18,20,20,20,20,21,21,21,22,23,23 },
/*3200*/{ 20,22,22,22,22,23,23,23,24,25,25 },
/*3500*/{ 22,24,24,24,24,25,25,25,26,27,27 },
/*3700*/{ 24,26,26,26,26,27,27,27,28,29,29 },
/*4000*/{ 25,27,27,27,27,28,28,28,29,30,30 },
/*4500*/{ 27,28,28,29,29,30,30,30,31,32,32 },
/*5000*/{ 29,31,32,32,32,33,33,33,34,35,35 },
/*5500*/{ 31,33,33,33,33,33,33,34,36,37,37 },
/*6000*/{ 33,34,34,34,34,34,34,35,37,38,38 }
}; //matriz tabla de Eficiencia Volumentrica
int tablaAvance[18][11] = {//0 ;18;27;36;45;55;64;73;82;91;100 */
/*800*/{ 2 ,3 ,3 ,3 ,4 ,6 ,6 ,7 ,8 ,8 ,8 },
/*1000*/{ 2 ,3 ,3 ,4 ,5 ,8 ,8 ,8 ,10,10,10 },
/*1200*/{ 2 ,5 ,5 ,5 ,6 ,9 ,9 ,10,11,12,12 },
/*1500*/{ 7 ,8 ,8 ,8 ,8 ,10,10,11,13,14,14 },
/*1700*/{ 9 ,10,10,10,10,11,11,12,14,15,15 },
/*2000*/{ 11,12,12,12,12,13,13,14,15,16,16 },
/*2200*/{ 12,14,14,14,14,15,15,16,17,18,18 },
/*2500*/{ 14,16,16,16,16,17,17,17,18,19,19 },
/*2700*/{ 16,18,18,18,18,19,19,19,20,21,21 },
/*3000*/{ 18,20,20,20,20,21,21,21,22,23,23 },
/*3200*/{ 20,22,22,22,22,23,23,23,24,25,25 },
/*3500*/{ 22,24,24,24,24,25,25,25,26,27,27 },
/*3700*/{ 24,26,26,26,26,27,27,27,28,29,29 },
/*4000*/{ 25,27,27,27,27,28,28,28,29,30,30 },
/*4500*/{ 27,28,28,29,29,30,30,30,31,32,32 },
/*5000*/{ 29,31,32,32,32,33,33,33,34,35,35 },
/*5500*/{ 31,33,33,33,33,33,33,34,36,37,37 },
/*6000*/{ 33,34,34,34,34,34,34,35,37,38,38 }
}; //matriz tabla de
int tinyTEMP[18][11] = {
//0 ;18;27;36;45;55;64;73;82;91;100 */ Correcion de tiempo de inyeccion por temperatura
/*800*/{ 2 ,3 ,3 ,3 ,4 ,6 ,6 ,7 ,8 ,8 ,8 },
/*1000*/{ 2 ,3 ,3 ,4 ,5 ,8 ,8 ,8 ,10,10,10 },
/*1200*/{ 2 ,5 ,5 ,5 ,6 ,9 ,9 ,10,11,12,12 },
/*1500*/{ 7 ,8 ,8 ,8 ,8 ,10,10,11,13,14,14 },
/*1700*/{ 9 ,10,10,10,10,11,11,12,14,15,15 },
/*2000*/{ 11,12,12,12,12,13,13,14,15,16,16 },
/*2200*/{ 12,14,14,14,14,15,15,16,17,18,18 },
/*2500*/{ 14,16,16,16,16,17,17,17,18,19,19 },
/*2700*/{ 16,18,18,18,18,19,19,19,20,21,21 },
/*3000*/{ 18,20,20,20,20,21,21,21,22,23,23 },
/*3200*/{ 20,22,22,22,22,23,23,23,24,25,25 },
/*3500*/{ 22,24,24,24,24,25,25,25,26,27,27 },
/*3700*/{ 24,26,26,26,26,27,27,27,28,29,29 },
/*4000*/{ 25,27,27,27,27,28,28,28,29,30,30 },
/*4500*/{ 27,28,28,29,29,30,30,30,31,32,32 },
/*5000*/{ 29,31,32,32,32,33,33,33,34,35,35 },
/*5500*/{ 31,33,33,33,33,33,33,34,36,37,37 },
/*6000*/{ 33,34,34,34,34,34,34,35,37,38,38 }
}; //matriz tabla de avance