Torque

Forums

Forums

Guest  

Show or hide header
Welcome Guest, posting in this forum require registration.




Torque » Torque OBD ECU Scanner » Torque Discussion / Ideas » over 255 kpa - Boost Calculation

Pages: [1]
Author Topic: over 255 kpa - Boost Calculation
Hiej
Member
Posts: 173
Post over 255 kpa - Boost Calculation
on: November 23, 2012 (GMT)

Hi Piemmm

The Turbo on my 2010 Mazda3 2.2 liters diesel, following manufacturer specs, can boost up to 1.8 bars (that means about 280 kpa).

What happens using MAP to calculate boost is:

when pressure on the manifold goes over 255 kpa the reading goes crazy, the indicators tilts between positive and negative values.

I know that there’s some restrictions on min/max PID values and teorically is not possible to measure values over 255 kpa from map sensor, but…

…today I’ve done some test to understand why the indicators tilts between positive and negative values instead to stay @ 255 kpa, and I’ve found that follows:

On my car when MAP pressure go over 255 kpa, so 256 kpa Torque (and not only torque) reports 0 kpa, instead to show 257 kpa it shows 1kpa, instead to show 258 kpa it shows 2 kpa… and so on like on a follows:

so the tilting behaviour is explained, when real pressure excedd 255 kpa, and value in bar are shown negative: 0 kpa = -1 bar, 1 kpa = -0.99 bar and so on.

Here some graphical examples obtained from log recordings:

In blue the boost pressure calutated with MAF method, in red the boost calculate with MAP method, the green dotted line is the real pressure in manifold (I’ve put the values manually transforming 0 kpa to 256, 1 kpa to 257 and so on).

and here: http://digilander.libero.it/ctectr/torque/Mazda3%20Boost%20Pressure%20Analisys.xlsx the xcell file with some othe data.

________________________________

So what I’m asking you is if you can add a new boost calculation mode in way to show boost from MAP when the pressure goes over 255 kpa.

Maybe You can name it “Experimantal MAP for high boosted diesels” or something like that, trasforming low values like 0, 1, 2, 3 … to 256, 257, 258, 259…

For info, the lowest pressure meausered on my car intake manifold was = to 50 kpa during a filter regeneration, so teoretically for diesel engines you could transform values from 0 to 49 kpa as 256 to 305 kpa (that means it can be possible to measure pressures till to 2.05 bars)

I know I can do that using MAF or ALT methods, but using MAP the readings are smoother and more accurate: most of times pressures till 0.3 bar are not reported on low acceleations, the indicator moves only on heavy/modearte accellerations.

Could you do that?

Tell me if I can help you in some way

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: November 28, 2012 (GMT)

a little up :)

(and rewritten 1st post in better english)

edit: my 100th post ! 😀

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: December 27, 2012 (GMT)

another little up… 😀

do you think is feasible to add a new boost calculation method based on map sensor that works in this way:

if map pressure >50 kpa and < 256 kpa, boost (in bar) is = to (map pressure - baro presure) /100 if map pressure >0 kpa and < 49 kpa , boost (in bar) is = to ((map pressure + 255)) – baro presure) /100 ________________ let me know… for me shold be useful to read pressures over 255 kpa (so 1.55 bar) via map sensor.

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: February 22, 2013 (GMT)

sorry if I’m bothering with this topic.

But I want to know if is possible to add a feature to read MAP sensors that can read pressures over 255 kpa.

As written above, my car’s sensor is able to read values over 255, but the APP interprets values over 255 in this way; 256=0, 257=1, 258=2 and so on.

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Capp777
Member
Posts: 2993
Post Re: over 255 kpa - Boost Calculation
on: December 25, 2013 (GMT)

Test pid 0170 for a response. It may
have your boost embedded in the data
returned.

Edit:

Boost
Header: 7DF
Mode/Pid: 0170
Equation: (((B*256)+C)*0.0048346)-Baro()
Units: psi

Without the test response I am guessing
at the variables.

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: September 30, 2014 (GMT)

Sorry for the long delay and thanks for the hint but it does not works, i receve “no data” :(

Question: is it possible make a custom pid with a conditional equation?

I mean something like this:

IF “value” is < 50 then (value+255)-baro() IF "value" is > 51 then value-baro()

???

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: January 23, 2016 (GMT)

Ok, I sorted out this issue creating a custom pid using this equation:

A+256*(1-((24-A)&256)/256)

The second part of the equation allows to have value 1 from 25 to 255 kPa, and value 0 from 0 to 24 kPa.

In other words we have as result A+256 for values of A between 0 and 24, and A+0 for values of A between 25 and 255.

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

burro
Member
Posts: 5
Post Re: over 255 kpa - Boost Calculation
on: January 23, 2016 (GMT)

Manufacturers normally provide the correct scaling for the MAP sensor when the values can be more than 255kPa. Check PID 4F for the scaling.

Header: 7DF
Mode/Pid: 014F
Equation: D

Assuming you get a response, the response * 10 is the new numerator for the scalar. For example if the response is 100 the new numerator for the scalar is 1000. The new scalar for the MAP signal becomes 1000/255. That means the new MAP PID is

Header: 7DF
Mode/Pid: 010B
Equation: A*(1000/255)

Hiej
Member
Posts: 173
Post Re: over 255 kpa - Boost Calculation
on: January 24, 2016 (GMT)

@burro thanks for the hint but I dont obtain any response fro 014F pid 😉

– – – – – – – – – – – – – – – – – – – – – – –
2010 Mazda 2.2d – 185
OBDLink MX – SGS7
– – – – – – – – – – – – – – – – – – – – – – –

Pages: [1]
WP-Forum by: Fredrik Fahlstad, Version: 2.4
Page loaded in: 0.05 seconds.

  Follow me on twitter