automan001
Full Member
Karma: +47/-0
Offline
Posts: 153
|
|
« Reply #435 on: August 04, 2015, 01:24:47 AM »
|
|
|
* FHOKH - minimum altitude factor for cat heating What is up with this? It isn't a pressure value. In britishturbo's files, it isn't even halved... it's just set to zero. And what about the rest of the FHOs? FHODSL - SAI? FHODTEA - Tank ventilation FHOE - "substitute value for altitude?" FHOKOB - AC compressor?
IMHO, there is no need to touch FHO* and other F (faktor) constants. Because unit of measurement for F* is usually pressure divided by some other pressure. Let's take FHOKH as example. In FR fho_w is compared with FHOKH. (If fho_w > FHOKH and B_hag then ... do something) fho_w is calculated (roughly) as pu_w/1013 We already divided pu_w by 2 and divided 1013 by 2, so fho_w factor should stay the same after conversion... (1/2)/(1/2) = 1/1 Therefore no need to modify FHOKH and other FHO* constants.
|
|
« Last Edit: August 05, 2015, 09:25:02 AM by automan001 »
|
Logged
|
|
|
|
NOTORIOUS VR
Administrator
Hero Member
Karma: +58/-7
Offline
Posts: 1056
|
|
« Reply #436 on: September 20, 2015, 07:53:28 AM »
|
|
|
Have you tried these files yet? It seems like the O2 sensors don't work at all using your 3 BAR file.
|
|
|
Logged
|
|
|
|
masterj
|
|
« Reply #437 on: November 13, 2015, 03:02:40 AM »
|
|
|
Guys, which map sensors are you running to get 5bar of absolute pressure? To me it looks like we can run either AEM universal 5bar map sensor or oem 4bar (0 281 006 060)? BTW: what about 0 281 002 420?
|
|
|
Logged
|
|
|
|
turbojohan
Full Member
Karma: +5/-0
Offline
Posts: 185
|
|
« Reply #438 on: January 27, 2016, 12:20:28 PM »
|
|
|
I was thinking about this for a bit... Did anyone try to cut everything in half and make diagnostic steps x2? So it will read actual pressure over OBD? If no one tried yet i'll take emulator and try to make it work. Than you can run 4 bar MAP sensor and read 4000 mbar over obd without boost cap.
Johan
|
|
|
Logged
|
|
|
|
nyet
|
|
« Reply #439 on: January 27, 2016, 12:25:07 PM »
|
|
|
I was thinking about this for a bit... Did anyone try to cut everything in half and make diagnostic steps x2? So it will read actual pressure over OBD? If no one tried yet i'll take emulator and try to make it work. Than you can run 4 bar MAP sensor and read 4000 mbar over obd without boost cap.
I don't understand the question. What you just listed was a summary of this ENTIRE thread, and the 5120 project in general.
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
turbojohan
Full Member
Karma: +5/-0
Offline
Posts: 185
|
|
« Reply #440 on: January 27, 2016, 12:46:59 PM »
|
|
|
I have read all pages, so sorry for my ignorance if i have this all working already. But i thought you read half of actual boost level in log over OBD..
Johan
|
|
|
Logged
|
|
|
|
nyet
|
|
« Reply #441 on: January 27, 2016, 12:53:53 PM »
|
|
|
I have read all pages, so sorry for my ignorance if i have this all working already. But i thought you read half of actual boost level in log over OBD..
Johan
ME7Logger can scale the signals however you want. #!/usr/bin/perl
use strict 'vars';
# use Getopt::Std; use File::Basename;
foreach my $file (@ARGV) { open(ECU, '<', $file) || die ("Can't open $file"); while(<ECU>) { my @line=split(',',$_); if ($line[5]=~m/{m[Bb]ar}/) { my $len = length($line[8]); $line[8]=sprintf("%*s", $len, $line[8]*2); } print(join(',',@line)); } }
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
dream3R
|
|
« Reply #442 on: January 27, 2016, 12:55:45 PM »
|
|
|
I have read all pages, so sorry for my ignorance if i have this all working already. But i thought you read half of actual boost level in log over OBD..
Johan
The variable is half but the obd2 routines out half too so I fixed that. ME7l uses VAG diag routines not generic OBD2 just a mixup sorry
|
|
|
Logged
|
|
|
|
nyet
|
|
« Reply #443 on: January 27, 2016, 12:57:12 PM »
|
|
|
Have you tried these files yet? It seems like the O2 sensors don't work at all using your 3 BAR file.
I've run those files, no O2 issues....
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
turbojohan
Full Member
Karma: +5/-0
Offline
Posts: 185
|
|
« Reply #444 on: January 27, 2016, 12:57:42 PM »
|
|
|
yes, but i meant that obd gives right actual boost so you don't need to multiply afterwards in the log or in ME7logger.
|
|
|
Logged
|
|
|
|
nyet
|
|
« Reply #445 on: January 27, 2016, 12:57:53 PM »
|
|
|
The variable is half but the obd2 routines out half too so I fixed that.
Do you have a patch I can add to the M-box bins posted in this thread? Thanks!
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
nyet
|
|
« Reply #446 on: January 27, 2016, 12:58:58 PM »
|
|
|
yes, but i meant that obd gives right actual boost so you don't need to multiply afterwards in the log or in ME7logger.
Understood. I don't use VCDS for anything except logging adaptation values, but I can see how this would be valuable. I will add the changes to the M-box bins posted in this thread if somebody tells me what to mod Thanks, and sorry for the misunderstanding.
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
turbojohan
Full Member
Karma: +5/-0
Offline
Posts: 185
|
|
« Reply #447 on: January 27, 2016, 01:02:51 PM »
|
|
|
Ok, i'll try if i can figure it out than. With diesels i do this all the time, obd protocol is 8bit so 255 steps and you tell steps to be bigger so not max out at 2601 mbar, but make it as high as you want (with lower resolution..)
|
|
|
Logged
|
|
|
|
nyet
|
|
« Reply #448 on: January 27, 2016, 01:07:19 PM »
|
|
|
Ok, i'll try if i can figure it out than. With diesels i do this all the time, obd protocol is 8bit so 255 steps and you tell steps to be bigger so not max out at 2601 mbar, but make it as high as you want (with lower resolution..)
which amounts to the same thing as the ME7L changes: i believe to get full range you'll have to tell VCDS that it is scaled differently, or you'll max out at 2550 again!
|
|
|
Logged
|
ME7.1 tuning guideECUx PlotME7Sum checksumTrim heatmap toolPlease do not ask me for tunes. I'm here to help people make their own. Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your ex
|
|
|
turbojohan
Full Member
Karma: +5/-0
Offline
Posts: 185
|
|
« Reply #449 on: January 27, 2016, 01:09:27 PM »
|
|
|
The variable is half but the obd2 routines out half too so I fixed that. ME7l uses VAG diag routines not generic OBD2 just a mixup sorry So you got it working already, nice work!
|
|
|
Logged
|
|
|
|
|