How to change xdf

Discuss anything TunerPro related.

Moderators: Mangus, robertisaar, dex

Post Reply
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

How to change xdf

Post by gtomlarson »

Can you change the 8d xdf temp tables to
show F degrees and not C degrees
User avatar
Six_Shooter
Posts: 590
Joined: Sun May 06, 2007 7:32 am

Post by Six_Shooter »

Yes, it requires modifying the XDF itself and the calculation. Do a search on here, to find instructions of how to do it.
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

I tried but can't find anything
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

I know how to edit the xdf, I need to know
what constant to put in
User avatar
EagleMark
Posts: 424
Joined: Mon Mar 22, 2010 11:11 am

Post by EagleMark »

There may be a simpler fix? I just looked at a couple $8D xdf and one is much larger and has a temp conversion table built into every setting that has to do with temp so you can just look at parameter comments when making the change. Also some other $8D stuff here:

http://www.gearhead-efi.com/Fuel-Inject ... rmation-8D
1990 Chevy Suburban
1994 Buick RoadMaSSter Estate Wagon LT1.
1972 IH 1210 Isky Cammed Balenced 345 TBI

GearHead-EFI.com EFI Conversions and Chip Tuners!
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

a temp conversion table built into every setting that has to do with temp so you can just look at parameter comments when making the change. Also some other $8D stuff here:

I don't know what you mean by parameter comments,
can't find it anyware. Sorry
User avatar
EagleMark
Posts: 424
Joined: Mon Mar 22, 2010 11:11 am

Post by EagleMark »

If there is a comment in the paremeter in XDF and you hover over it it will say what's there. Or click View, Paremeter comments or click the Paremeter comment button.
1990 Chevy Suburban
1994 Buick RoadMaSSter Estate Wagon LT1.
1972 IH 1210 Isky Cammed Balenced 345 TBI

GearHead-EFI.com EFI Conversions and Chip Tuners!
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

EagleMark wrote:If there is a comment in the paremeter in XDF and you hover over it it will say what's there. Or click View, Paremeter comments or click the Paremeter comment button.

Sorry. still don't get it, this is what i'am trying to change
Fan 1 Enable Temp.
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

I think I got it this is the expression they have
0.750000 * X + -40.000000 what would I replace it with
User avatar
dfddfd2
Posts: 112
Joined: Wed Feb 27, 2008 4:37 pm
Location: Burgaw, NC

Post by dfddfd2 »

gtomlarson wrote:I think I got it this is the expression they have
0.750000 * X + -40.000000 what would I replace it with
((0.750000 * X + -40.000000)*9/5) + 32
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

dfddfd2 wrote:
gtomlarson wrote:I think I got it this is the expression they have
0.750000 * X + -40.000000 what would I replace it with
((0.750000 * X + -40.000000)*9/5) + 32

Thanks I will try it and see what happens
User avatar
EagleMark
Posts: 424
Joined: Mon Mar 22, 2010 11:11 am

Post by EagleMark »

If you click on the Fan enable temp and open the box, then go to button on top row that says View, then down to Paremeter comments a box opens with paremeter comments and has the C to F conversion in it. In the $8D Mod xdf someone made.

I guess you could change the conversion to come out in F but the entire bin is done in C. Using a conversion calculater would be safer...
1990 Chevy Suburban
1994 Buick RoadMaSSter Estate Wagon LT1.
1972 IH 1210 Isky Cammed Balenced 345 TBI

GearHead-EFI.com EFI Conversions and Chip Tuners!
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

thanks guys works fine
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

dfddfd2 wrote:
gtomlarson wrote:I think I got it this is the expression they have
0.750000 * X + -40.000000 what would I replace it with
((0.750000 * X + -40.000000)*9/5) + 32




What would the conversion factor be for a table that has
rows to change them to F degrees
robertisaar
Author of Defs
Posts: 962
Joined: Sat Feb 21, 2009 3:18 pm
Location: Camden, MI

Post by robertisaar »

you want to change the labeling of the table to convert to/from *F?

http://www.wbuf.noaa.gov/tempfc.htm

that's the easy method.
gtomlarson
Posts: 10
Joined: Tue Feb 06, 2007 2:35 pm
Location: CALIF

Post by gtomlarson »

I'm after the conversion factor so I can change the XDF so all
my changes wii be in F degrees the factor it has is 1.000000 * X + 0.000000 what would I change to so it would come out in F
robertisaar
Author of Defs
Posts: 962
Joined: Sat Feb 21, 2009 3:18 pm
Location: Camden, MI

Post by robertisaar »

0*C = 32*F

10*C = 50*F

for every 10*C change, there is a change of 18*F

so instead of 1.0 * X, it will be 1.8 * X.

and to deal with the offset, change it to + 32

so X * 1.8 + 32 = *F, if starting with a value that was originally X * 1 = *C.
Post Reply