Page 25 of 55 FirstFirst ... 15202122232425262728293035 ... LastLast
Results 361 to 375 of 825

Thread: DIY LTCC or similar system for LT1s

  1. #361
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    I'm glad you finally acquired some coils.

    My intention with the MAP input is to use it as a trigger for compensating dwell - adding a few degrees with large increases in load (edit: for hotter spark under acceleration). I have no intention of specifically dealing with boosted applications - though it would certainly be possible. The MAP input is just reading the ADC value (0-1023) so some configuration of thresholds will be needed - again the user will be able to specify whatever they want relative to their particular MAP sensor output.

    Edit: Just to be clear, there is no version of this that I will produce that includes a spark advance table of any kind. Dwell is a different story.

    I haven't had a chance to test or do much work with the controller firmware, as I'm battling a valve that I believe is sticking when hot due to insufficient stem to guide clearance. I also think my clutch friction disk may be bent as it shakes the car so violently at mid-engagement that I'm afraid of busting the bellhousing. I'm not a happy camper thinking that I'm going to have to yank the engine back out to change the friction disk.

    Sadly all I can report at the moment is that the circuit design seems to be sound, and that it's starting and running reliably and no codes are being set in the PCM. I've had a few short test drives and no hesitation was experienced. Unfortunately I've made significant changes to the code since the last version that was uploaded to github, and I'd rather not put a flawed version up there until I have a chance to iron out all the issues. As it stands currently there are excessive degree count and dwell lag errors, but my time (not to mention funding) is getting squeezed from all directions and I'm more concerned with getting the mechanical issues sorted out now that the thing runs.

  2. #362
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Version 0.9.12 uploaded to github (link in sig).

    MAP sensing for acceleration compensation is working but needs complete testing as do the ion sense options.

    This build starts and runs reliably, but should still be considered highly experimental due to my inability to test extensively. I may have three to four hours of runtime on it with less than an hour of real-word driving. Lots of bugs have been identified and most permanently fixed while others require minor to major rewrites and / or profiling to further determine possible fixes.

    There are several "big" issues to iron out - dwell lag (coils being charged late) is still being witnessed sporadically. I think a major rewrite to make dwell a more event-driven function could improve this.

    Hoping to have engine back in and running in couple weeks - will likely add a cylinder balance function at that point and then event based dwell and machine code level optimization will be next on the list. Another minor rewrite may be in order to accommodate negative spark timing from the PCM.

  3. #363
    Fuel Injected! vilefly's Avatar
    Join Date
    Sep 2017
    Age
    53
    Posts
    217
    On this page, you will find the EST signal delay time programmed into the ecm.
    http://www.gearhead-efi.com/Fuel-Inj...E-xdf-(EEXTRA)

    Look at post #5. It says:

    "Here's what I have on file.
    Hi Jonathon,
    This is the EST system time lag and is meant to correct for the latency in the spark system. It is a fixed value in usec:

    lag (usec.) = N x 0.08477

    Of course since the time lag is a fixed time value the correction in terms of degrees will depend on RPM.
    Best regards,
    TC "

    I believe this should explain the dwell errors you have been experiencing. It could be said that the limitation might be the ecm itself, but should be able to be compensated for in this case. Not sure what "N" represents, though.
    Last edited by vilefly; 05-09-2018 at 03:16 PM.

  4. #364
    Fuel Injected!
    Join Date
    Mar 2013
    Posts
    1,469
    It is basically a scalar to low resolution signal in ms. The lower the low resolution signal[higher rpm] the higher the spark advance added.

    I even made a chart with stock setting[too bad I cant find it], how much advance was added. It was something like 1 degree every 1500 rpm.

    The added spark is the mystery spark adder at WOT. It represents the difference between main spark table advance and the commanded spark advance. Usually 3-4 degrees at WOT.

  5. #365
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Quote Originally Posted by vilefly View Post
    I believe this should explain the dwell errors you have been experiencing.
    I appreciate that you took the initiative to look, but it doesn't explain the dwell lag - this is solely a construct I'm tracking within the controller and has very little to do with spark advance as commanded by the PCM and absolutely nothing to do with PCM commanded dwell. What you mention has to do with the PCM compensating for the switching delay of the old ignition module and such. Not that it couldn't be tweaked to better match the particular coils being used with this setup.

    I hate using "for instance" to explain something, but that's probably the best method here. So, say spark advance for the last cylinder firing is stored at 31 degrees within the controller ram. RPM is likewise stored based on the last low res rising edge interval - say for example it equates to 2000 rpm. At a system voltage of 14.4 this resolves to a dwell requirement of 48 degrees for a 4.0 ms target dwell. The dwell lag error statistic is accumulated based on when dwell is actually started for a cylinder versus when it's supposed to. So in this instance dwell for the next cylinder that's going to fire should start dwelling at 79 degrees btdc. Lag is accumulated whenever that happens after 79 degrees - say it starts at 74 that's counted as 5 degrees of lag. I keep track of this in a global variable and reset it every N engine revolutions (currently 10). I really need to profile the code execution to get a better picture of what's going on here that's causing lag - interrupts firing take precedence over code running in the arduino "loop()", where the dwellCoils routine is called from. I've also discovered how to allow portions of the ISRs (interrupt service routines) to "nest" so code with lower priority can be stored on the accumulator (i think that's the correct terminology) and executed after all other higher priority ISR code. Another way to do it would be to calculate the degree where the next cylinder needs to start dwelling after each tdc signal, and then call the dwellCoils() routine from the high res / degree countdown ISR, at that particular degree count. This is probably the "right" way to do this, but it get's a little sticky when the coil that needs to be dwelled is three combustion events away, and I just haven't put the thought into doing it this way and keeping all the possible pitfalls in focus.

    To put it in perspective, from the standpoint of writing event driven code for a mcu, I've just mastered walking slowly. Now I need to learn how to tie my own shoes. At the end of this I hope to be able to drive to the store and buy more shoes. I'd love it if somebody who already has their license and a car would swoop in and take on these tasks so I can concentrate on making a pcb, but oh well.

    Back to the state of things - don't read too much into this lag figure. My concern may be overstated - I'd like to have everything as perfect as it can be, but in reality that's rarely how it works out. It could very well be "good enough for government work" as it currently stands. I simply haven't had a chance to focus on the ignition system because of all the mechanical issues. Edit: so just to clarify, were you to build out your own prototype and do as I have and gutted the high voltage side of your optispark, I can tell you with 99% certainty that you would be able to start and drive it within the confines of the OE rev limiter, and probably not be able to tell a difference. Unfortunately (for me) I've learned the hard (and rather expensive) way that not all optispark pickups are built the same. My older AIP sensor behaved completely different from what the new one does.

    Since I found such a large difference between the noise floor on the low res line after getting the engine back in, I'm seeing far more instances of degree count errors - where the count from 90 down to 0 between tdc signals doesn't end at 0. I suspect this is because the noise rejection circuitry on the capture interrupt for the HR signal is adding 4 cpu cycles worth of delay after considering a rising edge "not noise". Because of this I think it makes sense to track an average of the degree count error and add a few degrees to the stored spark advance as a function of that.

  6. #366
    Fuel Injected! vilefly's Avatar
    Join Date
    Sep 2017
    Age
    53
    Posts
    217
    Ah. Well, I stumbled across that post while still trying to catch up on my learning curve, which is still lagging behind. Wish I found the forum years before, when I was still burning chips with now outdated software. Still have my Pocket Programmer eprom burner and its original DOS program disk, heh. Back then, the new LT-1 didn't exist. Crap, I'm getting old.
    On the bright side, I still haven't woke up with my underwear destroyed.

  7. #367
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Wanted to drop in an update since getting things put back together again. I'm still battling valve noise, so I'm probably going to have to yank the even bank cylinder head off again. This has significantly hampered my ability to make progress with the controller firmware. Because I'm scared to run the car too much testing has been very limited and I haven't even been logging data but merely feeling and listening (mainly for valve noise). I do occasionally hear a stumble or misfire, but nothing I can reproduce consistently. Overall it runs well and throttle response is nearly as good as before the tune changes to compensate for cam timing.

    I did have a chance to download and start learning how to use Eagle a couple weeks ago. This looks like a project in and of itself (designing a pcb). I'm going to be on vacation next week and hope to spend some of my down time working on converting the schematic to Eagle and possibly starting on a board layout.

  8. #368
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Preliminary eagle .sch and .brd files uploaded to github (link in sig).

    Attached pdf is 2x actual size of pcb layout. Actual board size is 88x59mm (3-7/16" x 2-5/16"). This was my first worldly attempt at designing / routing a pcb so I'm going to spend a lot of time verifying and re-verifying before I pay to have a sample produced. If anyone has experience / wisdom they'd like to share in this area I'm open to any and all suggestions.

    For this initial board layout I used simple solder pad connections for the wiring harness (see pics from post 356 for the connectors and wiring I used on the protoboard) and aimed to make the footprint as small as possible. Ideally I would like to have a waterproof case including ~30 pin connector that would solder directly to the board, but I've yet to find anything that's affordable in small quantities (less than 50). As mentioned previously my personal solution will be to find / make a tray type case with mounting tabs and pot the board into it with two-part silicone or something similar.
    Attached Files Attached Files

  9. #369
    Fuel Injected! vilefly's Avatar
    Join Date
    Sep 2017
    Age
    53
    Posts
    217
    Nice work! I have been too distracted lately. Been learning stuff about the Speeduino project in order to "update" my friend's 4cyl inboard boat from 1980 with throttle body fuel injection. A Roomba was given to me for father's day. (I suspect an inside joke about role reversal made about me) So, looking at this very determined little machine, I might use my new skills to make a "Lawnba" to annoy my neighbors with fits of jealousy.

    Are you going to use a socket for the Pro Mini, or just solder in?

  10. #370
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Thanks - this was quite a learning experience in itself.

    When you get the Lawnba perfected, the next logical progression is to mount a remote controlled gun turret w/ camera on it. I've got some rabbit problems I'm thinking that would help with. :-)

    My prototype is soldered and I was planning to solder the "production" one also just for added piece of mind that it won't vibrate loose. I haven't had any problems flashing from the driver's seat over serial so that shouldn't be an issue.

    I've been cleaning up and compacting the board layout more over the last few days to allow for optional components like pull-up resistors and the like for the spare output pins. I've also been straightening up the component names so the silk-screen layers will be legible.

    In researching the crystal circuit it occurred to me that it might be worthwhile going to a temperature compensated oscillator package. But that might be something for rev 2 of the PCB.

    Unfortunately I'm sort of in limbo with being able to test and further refine the firmware. The good news is it starts and runs great. Unfortunately cold starts are about as far as I go because as soon as it gets up to temp the knock sensors start picking up the valve clatter. Before we left on vacation I made a short idle log w/ eehack from cold to closed loop, and noticed the knock counter rolled over (i.e. 0-65535) several times in the course of 10 minutes.

    Adding insult to injury, about that same time we found out my wife needs to have her gall bladder removed so I'm not going to be spending much money on stuff like this until the checks from the insurance companies clear. So it may be August or September before I can budget the time or money to pull the noisy head off and get the guides checked out. :-\

  11. #371
    Fuel Injected! vilefly's Avatar
    Join Date
    Sep 2017
    Age
    53
    Posts
    217
    I have already built an early version of the auto turret, back when 1 ghz was fast. I didn't write it, though. These guys did. https://github.com/sentryGun53/Project-Sentry-Gun Got lost in the move, though. heh.

    Sorry to hear about the upcoming surgery. Sounds like there will be no more greasy food in her diet. My wife had her gall bladder fired, also. Does not slow her down much, but she has been without for about 10 yrs, and had time to adapt.

    The noisy valvetrain problem has me puzzled. Having a tough time visualizing it. Hope the guides are bored straight. I saw one nascar head with valves so huge they threatened to touch each other if they weren't perfect. Not sure if valvespring coil bind is happening, either. That can get pretty noisy, too. At least that can be checked externally. After that, I am out of ideas.

  12. #372
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    I'm not so much puzzled as (to use clean language) frustrated about the valve noise. I suspect I have a couple exhaust guides that didn't get honed quite enough and the valves are getting close to seizing - or at least requiring more force to open when they get hot. But that's just my theory. They were certainly making less noise when I ran them without oil seals. I'm kicking myself for not using the micrometer on them when I had the head off last. Lesson learned - double-check everyone's work. :-\

    I just uploaded the final design of the rev1 schematic and pcb to github (link in sig). I found a manufacturer and ordered 10 (the price was the same for 5 or 10). Luckily because this isn't a very compact design and I could keep the minimum drill size above .030", the price was extremely reasonable. I chose the "slow boat" $8 shipping option so I may run out of patience before they show up, but the faster shipping options cost more than the boards.

    Here are some pdfs of what I'm having made. Fingers crossed...

    In addition to a couple optional resistors and caps and a solder pad for the status led so it can be wired to an external (i.e. dash mounted) led, I also added grounded screw mounting pads at the corners that increased the board size significantly. This version is 3.625"x2.75".
    Attached Files Attached Files

  13. #373
    Fuel Injected! vilefly's Avatar
    Join Date
    Sep 2017
    Age
    53
    Posts
    217
    The schematic suggests you are going ahead with a different arduino pro mini than I thought. But I realized you are going for a small footprint, and it looks pretty compact. This is what I will be using so I can modify for ion-sensing. The schematic will still work with it.
    arduino-pro-mini-clone-atmega328-5v.jpg

    Looks like you learned that the next generation of machinists suck. They forget to hone the valve guides after they are done cutting. I ran across this about 10 yrs ago, and was appalled that someone could not machine a small block chevy cylinder head properly. The worst part is that today's heads are more complex. I wonder how those jobs turned out. blech.

  14. #374
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    There's no arduino daughter board - this design is using the Atmega328P in a 28 pin dip package. I'll be ordering components from Digi-Key soon and if the boards all test out will have about 8 samples I'll be offering up here.

    Competent machinists seem to be a dying breed seemingly because the vast majority of what they used to offer can usually be bought new from Chinese sources for less.

  15. #375
    Fuel Injected! spfautsch's Avatar
    Join Date
    Apr 2015
    Location
    Montgomery City, MO
    Age
    52
    Posts
    883
    Circuit boards arrived from China yesterday. I'm nothing short of amazed that a board of this quality with gold plated solder pads, full mask and silk screening can be done for the neighborhood of $3 each in small quantities.

    I'm tied up this weekend and probably next helping my mother move, but I was able to assemble one over the last two evenings. I wont be able to test fully for several days and / or weeks, but the initial power-up test proved successful. I fully expect to find at least one problem, but so far everything is looking good. I'll try to post a picture or two soon.

    This leaves me needing a solution for a case. As much as I'm personally satisfied with potting them in silicone, I would really prefer some type of serviceable case so modifications can be made (there are three open outputs and one input). I've been stewing over some ideas for a 3d printed affair with o-ring sealing around the wiring penetrations and a lexan / acrylic lid (also with o-ring sealing).

    How ever that pans out, I'll have some boards available around the end of August if anyone would like to come up with their own case in order to test.
    Attached Images Attached Images

Similar Threads

  1. Which TBI system is better?
    By KeyAir in forum GM EFI Systems
    Replies: 41
    Last Post: 05-13-2019, 09:39 PM
  2. Hard start 93 LT1 with LTCC Ignition Mod
    By beestoys in forum GM EFI Systems
    Replies: 0
    Last Post: 05-18-2015, 08:58 AM
  3. ABS system?
    By K1500ss4x4 in forum Gear Heads
    Replies: 3
    Last Post: 02-06-2014, 06:21 AM
  4. Vortec EGR System?
    By EagleMark in forum OBDII Tuning
    Replies: 40
    Last Post: 06-02-2013, 10:07 PM
  5. Quicker way to do Spark Hook test on the street for LT1s and others?
    By sherlock9c1 in forum Fuel Injection Writeups Articles and How to New and Old
    Replies: 15
    Last Post: 03-03-2013, 01:52 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •