1. Welcome to Tacoma World!

    You are currently viewing as a guest! To get full-access, you need to register for a FREE account.

    As a registered member, you’ll be able to:
    • Participate in all Tacoma discussion topics
    • Communicate privately with other Tacoma owners from around the world
    • Post your own photos in our Members Gallery
    • Access all special features of the site

Holset VGT 5VZ-FE turbo build

Discussion in '1st Gen. Tacomas (1995-2004)' started by anothernord, Dec 2, 2015.

  1. Jan 20, 2016 at 3:51 PM
    #101
    MadTaco461

    MadTaco461 BRO runner

    Joined:
    Dec 30, 2009
    Member:
    #28470
    Messages:
    13,423
    Gender:
    Male
    First Name:
    Mike
    CA
    Vehicle:
    99 turbo 5 lug long travel
    Kinda stock
    Ok I see what you are doing. Closed vanes at spool up to quickly get the compressor efficient and reduce transient response. Once spooled up you open the vanes to make the turbine efficient, reduce egt, more flow less boost. Somewhere with vanes open the wastegate will start to crack open to help control boost.

    I'm not even going to try to wrap my head around the programming yet until you get something going along. It is a lot of factors going on there that you could do to ignore or try to incorporate into your automation.
     
  2. Jan 20, 2016 at 4:26 PM
    #102
    Deathbysnusnu

    Deathbysnusnu Work is just a daily detour to happy hour.

    Joined:
    Oct 4, 2013
    Member:
    #113825
    Messages:
    17,195
    Gender:
    Male
    First Name:
    Brett
    Fort Crawlins, CO
    Vehicle:
    Vintage Tundra
    Dog, camper.
    I didn't understand anything I have read in here but I sure enjoyed the hell out of reading it. :)
    Great job getting all that together. Nice to see you are local too.
     
  3. Jan 21, 2016 at 11:26 AM
    #103
    Clay_916

    Clay_916 Well-Known Member

    Joined:
    Jul 30, 2015
    Member:
    #160686
    Messages:
    1,501
    Gender:
    Male
    Fort Collins, CO
    Vehicle:
    2000 x-cab 4x4
    5100's, All Pro 3" Standard leafs, 32" KM 2's
    Perhaps an over reaction on my part and I apologize but there is pretty clearly a lot of negativity in this thread. It just bums me out when 9/10 "builds" on this forum are the same old cookie cutter shit while OP is trying to do something groundbreaking and taking a lot of flak for it IMO.
     
  4. Jan 21, 2016 at 11:31 AM
    #104
    gray223

    gray223 Well-Known Member

    Joined:
    Nov 6, 2013
    Member:
    #116062
    Messages:
    3,439
    Gender:
    Male
    SE Missouri
    Vehicle:
    2014 Tundra Limited
    There isn't any negativity. Some people just point out there honest opinion. They are not hating on the OP in any sense.
     
  5. Jan 21, 2016 at 11:58 AM
    #105
    Roll Tide

    Roll Tide COO COO KACHOO

    Joined:
    Mar 6, 2012
    Member:
    #74340
    Messages:
    15,093
    Gender:
    Male
    First Name:
    Q
    Here and there. Sometimes.
    Vehicle:
    01 T4R
    Head unit. That's it.

    Good, we now have at least two people at our table.

    I say throw some nos on there, and put it to the floor.....

    It will be fine if you shift it as many times as Vin and Paul do in the movies...I promise.
     
  6. Jan 28, 2016 at 10:17 PM
    #106
    anothernord

    anothernord [OP] Well-Known Member

    Joined:
    Apr 3, 2015
    Member:
    #152422
    Messages:
    323
    Gender:
    Male
    Northern Colorado
    Vehicle:
    Various Toyotas
    DCLB Manual
    Initial code is below - its just for manual control but you can see that it's not crazy complicated. Some of it is based on the code for the diesel application of the "Lil' Black Box" controller.

    Glad it was a good read. I like reading a good build thread and I don't want to disappoint. :)


    Ok, here's the basic code for manual control - aka potentiometer sets the vane position.

    I'm still working on adapting the shaft speed based vane control that is used on the Cummins application. First I need to fix a leaking front caliper to make it safe to drive :mad:


    Main loop:

    void loop() {
    // Sleep
    unsigned int sleep = 0;
    // Freq Measure
    unsigned long sum[32];
    float final_sum = 0.0f;
    byte count = 0;
    byte i = 0;

    while(1) {
    // Freq Measure

    if (FreqMeasure.available()) {
    sleep = 0;
    // average several reading together
    sum[count] = FreqMeasure.read();
    final_sum = 0.0f;
    for (i = 0 ; i < 32 ; i++) { final_sum += sum; }
    // turbo_rpm = Freq(sum / count) * 60
    final_sum = FreqMeasure.countToFrequency(final_sum / 32.0f);
    turbo_rpm = final_sum * 60.0f;
    lcd.setCursor(0,0);
    lcd.print("Shaft Speed:");

    lcd.setCursor(16,0);
    lcd.print(" ");
    lcd.setCursor(17,0);
    lcd.print(" ");
    lcd.setCursor(13,0);
    lcd.print(turbo_rpm);
    count++;
    if (count > 31) { count = 0; }
    }


    pressureVal1 = analogRead(pressurePin);
    delay(10); 'ghetto way to smooth the signal a bit and cut some high frequencies
    pressureVal2 = analogRead(pressurePin);
    pressureVal = (pressureVal1+pressureVal2)/2;
    potVal = analogRead(potPin);
    final_vane_position = map(potVal, 0, 1023, 40, 940);
    //atmPressure = map(atmPressure, 0, 1023, .065, 30.000);
    boostPressure = map_float(pressureVal, 0.00, 1023.00, .065, 30); 'approximate limits of the 2 bar GM map sensor
    boostPressure = boostPressure - 11.65;

    if (boostPressure > 0) 'code to shut the pcv solenoid valve closed as soon as there's positive intake pressure
    {
    digitalWrite(A3,HIGH);
    }
    else
    {
    digitalWrite(A3,LOW);
    }


    constrain(final_vane_position, 40, 930);
    lcd.setCursor(0,1);
    lcd.print("Position:");
    lcd.setCursor(12,1);
    lcd.print(" ");
    lcd.setCursor(10,1);
    lcd.print(final_vane_position);
    lcd.setCursor(0,2);
    lcd.print("Manifold P:");
    lcd.setCursor(12,2);
    lcd.print(boostPressure,2);
    lcd.setCursor(0,3);
    lcd.print("Throttle %:");
    byte lo_byte = lowByte(final_vane_position);
    byte hi_byte = highByte(final_vane_position);
    byte data[] = { lo_byte, hi_byte, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; // data message with an added counter
    CAN1.send (0x0CFFC600, extID, 8, data);


    }

    }
     
    Last edited: Jan 29, 2016
  7. Jan 29, 2016 at 12:29 AM
    #107
    Speedytech7

    Speedytech7 Toyota Cult Ombudsman

    Joined:
    Feb 20, 2014
    Member:
    #123587
    Messages:
    58,018
    Gender:
    Male
    FCQM+VG Cheney, Washington
    Vehicle:
    96 Turbo Taco V6 405WHP & 482lbft
    It's less Tacoma and more mod
    I need to brush up on my C, but from what I still can comprehend this seems like code for writing variables to be displayed by another method.
     
    MadTaco461 likes this.
  8. Jan 29, 2016 at 7:26 AM
    #108
    anothernord

    anothernord [OP] Well-Known Member

    Joined:
    Apr 3, 2015
    Member:
    #152422
    Messages:
    323
    Gender:
    Male
    Northern Colorado
    Vehicle:
    Various Toyotas
    DCLB Manual
    Yep, I forgot to paste in the other tabs with the setup and initialization of variables.
     
  9. Jan 29, 2016 at 3:23 PM
    #109
    MadTaco461

    MadTaco461 BRO runner

    Joined:
    Dec 30, 2009
    Member:
    #28470
    Messages:
    13,423
    Gender:
    Male
    First Name:
    Mike
    CA
    Vehicle:
    99 turbo 5 lug long travel
    Kinda stock
    Nice! I'm really bad at code since I rarely do it, but I like where this is going.
     
    Speedytech7 likes this.
  10. Feb 3, 2016 at 12:29 PM
    #110
    steed

    steed Well-Known Member

    Joined:
    Feb 3, 2016
    Member:
    #177003
    Messages:
    48
    Gender:
    Male
    First Name:
    Steed
    Vehicle:
    Tacoma
    Hey this is pretty cool, I have a HE351VE with the HE341VE compressor in my 2002 Tacoma. I swapped the engine out for a 4BT though.
     
    Brice and tacomakid96 like this.
  11. Feb 3, 2016 at 4:25 PM
    #111
    tacomakid96

    tacomakid96 Lions Not Sheep

    Joined:
    Jan 27, 2010
    Member:
    #30175
    Messages:
    4,236
    Gender:
    Male
    First Name:
    Phil
    Out n' about
    Vehicle:
    1996 Tacoma / 2000 4.7 Tundra TRD
    For the love of god man make a build thread
     
  12. Feb 3, 2016 at 5:03 PM
    #112
    steed

    steed Well-Known Member

    Joined:
    Feb 3, 2016
    Member:
    #177003
    Messages:
    48
    Gender:
    Male
    First Name:
    Steed
    Vehicle:
    Tacoma
    Alright guys I don't want to hijack this thread, here is my stuff. Ill make a new thread for my next build soon.

    My 02 Tacoma 4BT build

    http://www.4btswaps.com/forum/showthread.php?15122-2002-Toyota-Tacoma-4BTA-swap-(yoings)

    These are my controllers I make for the Holset VGTs, I can do just about everything Cummins can do with E-Tool I am now working on a new Tacoma, 2011 Crew Cab TRD Sport that I am swapping a custom ISBe3.9 with a HE300VG into.

    http://www.4btswaps.com/forum/showt...t-gear-conversion-with-F250-200HP-calibration!
     
  13. Feb 8, 2016 at 5:43 AM
    #113
    steed

    steed Well-Known Member

    Joined:
    Feb 3, 2016
    Member:
    #177003
    Messages:
    48
    Gender:
    Male
    First Name:
    Steed
    Vehicle:
    Tacoma
  14. Feb 14, 2016 at 4:22 PM
    #114
    goomba

    goomba It is a Fluid Situation

    Joined:
    Sep 3, 2010
    Member:
    #42666
    Messages:
    1,216
    Gender:
    Male
    First Name:
    Josh
    San Antonio Fl
    Vehicle:
    96 White Ex. Cab Tacoma TRD 4X4
    3" lift Up front(Donahoe Racing ext. travel coil overs, Camburg UCA's), 1.5-2" lift in the back(aal and some billy 10" stroke short bodies), Bushwhacker Cut-Out fender flairs, 16"x10" Procomp Street locks, and 305/70 Procomp X-Terrains.
    Bump. Hope the build is going smooth.
     
  15. Mar 2, 2016 at 12:05 PM
    #115
    DHwreckage

    DHwreckage Well-Known Member

    Joined:
    Oct 12, 2012
    Member:
    #88868
    Messages:
    415
    Gender:
    Male
    Boulder, CO
    Vehicle:
    Moby Dick (FZJ-80)
    this is brilliant, i i love the idea of the Holset VGT but ill probably be sticking to a plain old hx-40 6-blade on my cruiser :(
     
  16. Mar 3, 2016 at 8:42 PM
    #116
    because_wumbo-truck

    because_wumbo-truck TTC#036 1st Degenerate Urban Off-Roader

    Joined:
    Jun 16, 2015
    Member:
    #157552
    Messages:
    50,209
    First Name:
    Jon
    Houston, Texas
    Vehicle:
    2006 Gordita Blanca V8 4x4 aka "Penelope"
    Sliders and bumper, DDI injectors, flowmaster 40
  17. Mar 3, 2016 at 11:46 PM
    #117
    BiNiaRiS

    BiNiaRiS Well-Known Member

    Joined:
    Jun 19, 2015
    Member:
    #157743
    Messages:
    272
    Gender:
    Male
    Portland, OR
    almost a month since OP's last post. come on OP, keep going!
     
    devinzz1 and Crawler3.4 like this.
  18. Mar 21, 2016 at 3:26 PM
    #118
    anothernord

    anothernord [OP] Well-Known Member

    Joined:
    Apr 3, 2015
    Member:
    #152422
    Messages:
    323
    Gender:
    Male
    Northern Colorado
    Vehicle:
    Various Toyotas
    DCLB Manual
    Other than the code to get the VGT in "Auto-mode", the build is done! It runs great at ~4.5-5 psi, which pretty much maxes out the injectors. If I decide to do fuel mods in the future, I'll continue documentation here.

    I do need to get some more videos up though. My DSLR is broken right now ... :mad:
     
    Torspd likes this.
  19. Mar 21, 2016 at 3:34 PM
    #119
    steed

    steed Well-Known Member

    Joined:
    Feb 3, 2016
    Member:
    #177003
    Messages:
    48
    Gender:
    Male
    First Name:
    Steed
    Vehicle:
    Tacoma
    Pretty cool man, you can easily make 20psi. I have a buddy up in Canada making 20+ on a old supra with my old setup.
     
  20. Mar 21, 2016 at 3:43 PM
    #120
    StAndrew

    StAndrew Wait for it...

    Joined:
    Feb 8, 2010
    Member:
    #30950
    Messages:
    8,344
    Gender:
    Male
    First Name:
    Chris
    Hampton Roads, Va
    Vehicle:
    SR5 4x4TRD
    Intake, exhaust, lift. Typical stuff.
    While Ive seen 17psi, I'd be hesitant to run 20 on a stock 5VZ. Certainly won't be easy. Well, I guess you can do it but only once.
     

Products Discussed in

To Top