PDA

View Full Version : Making an external MAP input device, need data!



Redline Motorsports
September 14th, 2007, 10:38 AM
I want to make an external 2 or 3 BAR MAP sensor device that I can log through one of the analog 5 volt inputs. Does anyone know where I can get the 0-5v vs. KPA scalings for both a 2 and 3 BAR?

Obviously this is for logging boost on 1 BAR equipped cars.

Thanks

Howard

Redline Motorsports
September 14th, 2007, 01:33 PM
Found this on Delphi's site;

Performance Data for Standard Calibration
<TABLE cellSpacing=1 cellPadding=1 width=275 border=1><TBODY><TR><TD colSpan=2>Pressure Range</TD></TR><TR><TD>Operating </TD><TD>20 kPa to 102 kPa </TD></TR><TR><TD>Maximum </TD><TD>667 kPa </TD></TR><TR><TD>Full scale accuracy </TD><TD>1.8% </TD></TR></TBODY></TABLE>
<TABLE cellSpacing=1 cellPadding=1 width=275 border=1><TBODY><TR><TD colSpan=2>Temperature Range </TD></TR><TR><TD>Operating </TD><TD>-40&#176;C to +105&#176;C


</TD></TR><TR><TD>Measurement accuracy </TD><TD>&#177;1&#176;C at 25&#176;C </TD></TR><TR><TD>Storage </TD><TD>-50&#176;C to +150&#176;C </TD></TR></TBODY></TABLE>
<TABLE cellSpacing=1 cellPadding=1 width=275 border=1><TBODY><TR><TD colSpan=2>Electrical Characteristics </TD></TR><TR><TD>Supply voltage </TD><TD>5.0 &#177; 0.1 V<SUB>DC</SUB> </TD></TR><TR><TD>Supply current </TD><TD><10 mA<SUB>DC</SUB> </TD></TR><TR><TD>Maximum output current



</TD><TD>Sink 1 mA<SUB>DC</SUB>
Source 0.1 mA<SUB>DC</SUB>


</TD></TR><TR><TD>Output impedance </TD><TD><50 Ω</TD></TR><TR><TD>Output voltage </TD><TD>0.25 to 4.85 V<SUB>DC</SUB> </TD></TR></TBODY></TABLE>



Transfer Curve
http://delphi.com/images/ppd/sensors/et_mapmat_graph1.gif


Can this be used and then half scaled?

Treurentner
September 14th, 2007, 06:36 PM
Hi Howard,

watch robbies page, he found out everything
Part#´s were to get them ...
long time before:
http://www.robietherobot.com/storm/mapsensor.htm

I included a datasheet as pdf (but size is over the uploadlimit so rename it as .pdf)

Marco

Redline Motorsports
September 15th, 2007, 12:45 AM
Finding the parts is easy. I stock both 2 and 3 bar maps. I am looking for the voltage vs. KPA calculation so I can create a calc pid to log off of.

Thanks for the link though.

HT

Treurentner
September 15th, 2007, 10:50 AM
Hi Howard ,

what about this datasheet for 3 bar map (please save it and rename the extension to pdf)?

Marco

Redline Motorsports
September 15th, 2007, 02:23 PM
Thanks for that sheet. Still need to figure out the formula!

2002_z28_six_speed
September 15th, 2007, 05:26 PM
Well, I can tell you one thing. This isn't going to be a one shot equation. You are going to have to make fine adjustments to the equation due to your elevation and daily barometric pressure. Like the GM OS does. You can get close with experimenting, though.

Here are points from the datasheet for a ballpark equation:
Pressure in kPa Average Voltage
40 .631
304 4.914

The linear model would be as follows:
kPa = 61.639*{ADVoltage}+1.105791

Even though you have this data you will still have to plug everything up. See what voltage the 3 bar is running at when the engine off. Write down the kPA displayed on the factory sensor. Use this as your lower data points. Then use the datasheet values for the high data points. You could start the engine to get some data points under vacumn but again error is doubled to 8% under vacumn according to the datasheet.

I wouldn't try to take correctional data with the engine running. That puts the 3 bar MAP into an area with a higher error band.

johnv
September 16th, 2007, 09:15 AM
How about useing one of these sensors and seperate power supply, they come with slope and intercept setup intructions aparently!

http://www.aeroforcetech.com/sensor.html

I'm gonna give one of the fuel pressure sensors and 5v power supplies a shot.

Redline Motorsports
September 16th, 2007, 01:17 PM
How about useing one of these sensors and seperate power supply, they come with slope and intercept setup intructions aparently!

http://www.aeroforcetech.com/sensor.html

I'm gonna give one of the fuel pressure sensors and 5v power supplies a shot.

Getting the parts is not the issue. I am trying to figure out how FS can look at the voltage and convert it to a KPA reading which I can then use a calc pid to show boost.

Isn't there a conversion formula in the generic pid folder that FS uses on a factory 1 bar? The PCM obviously looks at output voltage from the MAP and then takes that voltage to show pressure. What is the formula??

2002_z28_six_speed
September 16th, 2007, 03:51 PM
1 bar 2 bar 3 bar... Delphi has spec'ed them to be 0V-5Vs and linear outputs. This means only the slopes of the equations have changed AKA less resolution for analog to digital converter to see.

Just make a linear equation from 0 to 5 volts that reads out 20 to 300 kPa where:

kPa = (Volts/Kpa)*voltage+correctional factor or
kPa = A*x+c
Y = A*x+c

Redline Motorsports
September 17th, 2007, 07:00 AM
1 bar 2 bar 3 bar... Delphi has spec'ed them to be 0V-5Vs and linear outputs. This means only the slopes of the equations have changed AKA less resolution for analog to digital converter to see.

Just make a linear equation from 0 to 5 volts that reads out 20 to 300 kPa where:

kPa = (Volts/Kpa)*voltage+correctional factor or
kPa = A*x+c
Y = A*x+c

what is the correct factor derived from?

If its a linear equation then why isn't a formula like a WB is laid out?

2002_z28_six_speed
November 9th, 2007, 09:54 PM
what is the correct factor derived from?

If its a linear equation then why isn't a formula like a WB is laid out?

It should be pretty much like that but with different data points.

Probably not already in there cause no one uses and external map to crossreference what is really going on.

You could use the WB DIY thread to get the relationship for your MAP sensor.