Pages: [1] 2
Author Topic: Feasible to do gear dependent lookup tables?  (Read 10488 times)
ejg3855
Full Member
***

Karma: +6/-0
Offline Offline

Posts: 123


« on: August 28, 2012, 10:57:47 AM »

So the development of lookup functions for things like multi map switching and the launch controls etc. Got me to thinking if its possible to have functions dependent up on gear.

I am fairly certain the ECU has a gear change counter than monitors what gear the car is in. Would it be possible to have one of these tables look up a different LDRXN table to limit wheel spin or what ever you wanted the ecu to do?

I know this is beyond me and I have little use for it, but I find the concept interesting.
Logged
s5fourdoor
Hero Member
*****

Karma: +33/-3
Offline Offline

Posts: 617


« Reply #1 on: August 28, 2012, 11:02:24 AM »

subbed.  this concept is long overdue.  major issue, not sure i know the solution:  how will the different maps potentially effect the PID?  will any of the PID maps theoretically need to have gear-specific tables?  this question is for you, but also directed at nye, prj, snowtrooper, rick, etc etc.
Logged
phila_dot
Hero Member
*****

Karma: +173/-11
Offline Offline

Posts: 1709


« Reply #2 on: August 28, 2012, 11:27:16 AM »

There is already a table that limits load by gear.
« Last Edit: August 28, 2012, 01:27:29 PM by phila_dot » Logged
matchew
Hero Member
*****

Karma: +47/-22
Offline Offline

Posts: 503


« Reply #3 on: August 28, 2012, 01:36:04 PM »

Theres a few ways to do this with stock code and tables.
Logged
Jason
Hero Member
*****

Karma: +38/-0
Offline Offline

Posts: 500


Breaks everything!


« Reply #4 on: August 28, 2012, 02:00:46 PM »

There is already a table that limits load by gear.

Out of curiosity, is it enabled by default in the m-box?  I've always wondered why first gear always seems to have a lower requested load.
Logged
matchew
Hero Member
*****

Karma: +47/-22
Offline Offline

Posts: 503


« Reply #5 on: August 28, 2012, 02:39:51 PM »

I just looked through the entire 'limitation for cylinder charge path' routine in the 'M box' and it does not restrict anything in 1st gear, in any gear in fact.

That isnt to say that some other routine outside of 'limitation for cylinder charge path' isnt.
Logged
phila_dot
Hero Member
*****

Karma: +173/-11
Offline Offline

Posts: 1709


« Reply #6 on: August 28, 2012, 06:28:05 PM »

I just looked through the entire 'limitation for cylinder charge path' routine in the 'M box' and it does not restrict anything in 1st gear, in any gear in fact.

That isnt to say that some other routine outside of 'limitation for cylinder charge path' isnt.

Exactly, the entire function is basically disabled in the stock M box.
Logged
robin
Full Member
***

Karma: +20/-1
Offline Offline

Posts: 139


« Reply #7 on: August 28, 2012, 07:30:57 PM »

Load is lower in first gear due to physics, not anything in the ECU. There's basically not enough actual load on the motor to spool the turbos like there is in 2nd and up.
Logged
Jason
Hero Member
*****

Karma: +38/-0
Offline Offline

Posts: 500


Breaks everything!


« Reply #8 on: August 28, 2012, 09:49:24 PM »

That I know, I just didn't know if there was component protection or torque management from the factory attempting to keep drivetrain components together.
Logged
sn00k
Sr. Member
****

Karma: +59/-2
Offline Offline

Posts: 277


« Reply #9 on: August 29, 2012, 03:13:26 AM »

gear identification maps:

NVQUOT1O - gear 1 over (rpm / km/h)
NVQUOT1U - gear 1 under(rpm / km/h)
NVQUOT2O - gear 2 over (rpm / km/h)
NVQUOT2U - gear 2 under(rpm / km/h)
NVQUOT3O - gear 3 over (rpm / km/h)
NVQUOT3U - gear 3 under(rpm / km/h)
NVQUOT4O - gear 4 over (rpm / km/h)
NVQUOT4U - gear 4 under(rpm / km/h)
NVQUOT5O - gear 5 over (rpm / km/h)
NVQUOT5U - gear 5 under(rpm / km/h)
NVQUOT6O - gear 6 over (rpm / km/h)
NVQUOT6U - gear 6 under(rpm / km/h)

IGESGA - gear mapping(1=1, 2=2 and so on.)


torque limit based on gears:

KFMDBGRG - rpm/gear (allowed torque%)

the KFMDBGRG map is active when engine temp is above TMMIBGR and vehicle speed is above VMIBGR.

i think there is also a CW or something to enable/disable the function entirely..
Logged
professor
Sr. Member
****

Karma: +25/-0
Offline Offline

Posts: 409



« Reply #10 on: August 29, 2012, 03:30:43 AM »

As i saw VMIBGR(318.75kh/h) and TMMIBGR (143.25Celsious) are way too high on 1.8T 20V, so this function its disabled from factory. Looks very promising.

Each NVQUOTxO/U map has four (y={0,3}) NVQUOTxO/U_y_A defines.

Logged

Seat Ibiza MK4 Cupra 1.8t 20V, stg3.
"Those 1.8T 20V machines are really tough" ©
phila_dot
Hero Member
*****

Karma: +173/-11
Offline Offline

Posts: 1709


« Reply #11 on: August 29, 2012, 05:59:04 AM »

torque limit based on gears:

KFMDBGRG - rpm/gear (allowed torque%)

the KFMDBGRG map is active when engine temp is above TMMIBGR and vehicle speed is above VMIBGR.

i think there is also a CW or something to enable/disable the function entirely..

No codeword. Maps are FF'ed and mimax/mifafu multiplier is ~2 (M box)

Also there is MDBGRGA - always active (gangi only)

This function outputs mibgrl_w (iirc) which is considered in milsol_w (for KFMIRL) through a min function.
Logged
sn00k
Sr. Member
****

Karma: +59/-2
Offline Offline

Posts: 277


« Reply #12 on: August 29, 2012, 07:48:22 AM »

phila_dot: thanks for clarifying, as allways  Smiley

professor: please try not to use "1.8T 20V" as a generic term, as it refers to ~25-30ish or more different engines, where some of them have this function activated in the oem software..  Smiley
Logged
Jason
Hero Member
*****

Karma: +38/-0
Offline Offline

Posts: 500


Breaks everything!


« Reply #13 on: August 29, 2012, 09:33:51 AM »

Man in theory that torque limit by gear could be used to really dial in launch control...
Logged
professor
Sr. Member
****

Karma: +25/-0
Offline Offline

Posts: 409



« Reply #14 on: August 29, 2012, 11:19:37 AM »

@sn00k
You are right of course  Smiley. Allow me to add that on 032HN, 032MJ and 032RP values are as said before.
« Last Edit: September 05, 2012, 04:03:26 PM by professor » Logged

Seat Ibiza MK4 Cupra 1.8t 20V, stg3.
"Those 1.8T 20V machines are really tough" ©
Pages: [1] 2
  Print  
 
Jump to:  

Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Page created in 0.024 seconds with 17 queries. (Pretty URLs adds 0.001s, 0q)