Ecoboost Performance Forum

Ecoboost Performance => Performance => Topic started by: jbeez on November 23, 2017, 08:06:31 AM

Title: cx2231 transfer function
Post by: jbeez on November 23, 2017, 08:06:31 AM
Anyone have a table representing the boost readings on a motorcraft cx2231 3bar map and the output voltages?

Still figuring out that meth stuff.

Thank

P.s. I did find this online, might be a universal thing?

http://injector-rehab.com/shop/mapsensor.html



Sent from my Nexus 6P using Tapatalk
(https://uploads.tapatalk-cdn.com/20171123/4241eed43449d6f1ef9fd06d0ea75e98.jpg)
Title: Re: cx2231 transfer function
Post by: ZSHO on November 23, 2017, 10:19:35 AM
There is a chart for comparison but need to find it.
P. 157+ for now. Z
http://www.fordservicecontent.com/ford_content/catalog/motorcraft/OBDSM1505.pdf (http://www.fordservicecontent.com/ford_content/catalog/motorcraft/OBDSM1505.pdf)
Title: Re: cx2231 transfer function
Post by: AJP turbo on November 23, 2017, 12:45:38 PM
Here you go.

(https://i.imgur.com/9zZ2j2Eh.jpg)
Title: Re: cx2231 transfer function
Post by: jbeez on November 26, 2017, 07:23:49 PM
Thanks guys, I took the data there and wrote a little bash script that takes boost input(psig) and spits out kPa and the voltage the ford 3bar map would read.

I called the file 3barmap.sh,  this can probably be replicated in a spreadsheet function or whatever. I might add additional functionality like converting from kPa or showing what boost numbers are at a specific voltage.

How do you know what voltage you have alkycontrol PAC set to with the potentiometers? It seems like .1v corresponds to about 1psig of boost, that's pretty precise IMO. I feel like this can make the setting for each person vary greatly depending on how long their wire run is and the resistance associated with it, causing voltage drop. Hell, AWG of the wire, quality of the splice, and even heat can play into that.

#!/bin/bash
#Quick Convert Gauge Boost to kPa and voltage output from Ford Motorcraft CX2231 3 bar MAP Sensor.
#J.Bright 11-26-2017

if [ -z "$1" ];
then read -p "Enter boost PSIG start target:" boost;
else boost=$1;
fi;
kPa=$(echo \($boost+14.69595\)\*\(6.8947625\) | bc)
Vout=$(echo 0.0146428\*$kPa+0.1072 | bc)

echo Boost: $boost psig
echo kPa:   $kPa
echo Vout:  $Vout Volts
EhPortal 1.39.5 © 2024, WebDev