gemellocattivo.com

Which means "Evil Twin". Lets see your projects where you change boring into fun or create the fun from scratch.
It is currently Thu Mar 28, 2024 7:48 am

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 2198 posts ]  Go to page Previous  1 ... 188, 189, 190, 191, 192, 193, 194 ... 220  Next
Author Message
PostPosted: Wed Mar 15, 2023 5:58 pm 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
dcd215 wrote:
It is huge .........


That is exactly what she said... but not meant in a good way . No, its paint, molding and refinishbthe floor for me :(


Top
 Profile Send private message  
 
PostPosted: Sat Mar 18, 2023 8:44 pm 
Offline

Joined: Sat Mar 26, 2022 1:39 pm
Posts: 97
Having just returned from a resort in DR, that machine looks very familiar. :lol:

Do I remember right that in addition to the MultiMAP to get a single strong vacuum signal, you're also using something to put the 12 individual MAP sensors onto the CAN bus for logging & diagnostics? I think I wanna do something similar and would appreciate any pointers on how to get that set up...


Top
 Profile Send private message  
 
PostPosted: Sun Mar 19, 2023 9:55 am 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
Syscrush wrote:
Having just returned from a resort in DR, that machine looks very familiar. :lol:

Yes, I bought a different model than I was originally looking at, this one goes down to -10C (14F) which makes it WAY better for alcohol drinks. In a standard machine you can't have more than about 1 alcohol to 4 parts drink mix but with this one 1:2 works pretty well :)

Syscrush wrote:
Do I remember right that in addition to the MultiMAP to get a single strong vacuum signal, you're also using something to put the 12 individual MAP sensors onto the CAN bus for logging & diagnostics? I think I wanna do something similar and would appreciate any pointers on how to get that set up...


Basically yes but I also use the 12 cylinder signals for cylinder mixture control. The multiMAP has 12 MAP sensor and a simple diode circuit that sends the lowest of the 12 (the cylinder that is actually pulling vacuum) out as the official MAP reading so any ECU can read it. That was the original plan and it works pretty well. I can find so data logs for you but there is a little bit of waviness in the raw signal. Here is the last run, raw reading from the multiMAP is Blue and its bouncing about 10kPa, RED is what I use as the MAP signal and its only bouncing about 3kPa because I do a little digital smoothing on it....its like a running average and the table above tells the ECU how much work to do, that table part is probably over kill and right now you can see everything is set to 0.75 that means I take 75% of the old value and add on 25% of the new value which gets rid of about 75% of the bouncing but causes a little bit of lag so if you look close you can also see the peaks on the red line shifted to the right (lagging) the peaks on the blue line. I think every ECU has something like this built in, so let you adjust it, some its hidden but it almost always there.

Attachment:
Map ripple.JPG
Map ripple.JPG [ 122.88 KiB | Viewed 2079 times ]


On a 4 cyl vs a 12cyl there will be more bouncing in the signal so you would probably want more smoothing to keep the mixture consistent, but then you'd live with a little more signal lag which can impact throttle blip acceleration but probably not actual driving acceleration because ECUs read the sensors fast, like around 1k-2khz usually so 4 or 10 or 100 readings happens pretty fast and on a 4 cyl you'd be trying to average out about 180 degrees of crank movement, vs me averaging 60 degrees.

Maybe sounds complicated but truly if you just connect the multiMAP to the ECUMAP input it should work just fine :D

So that is the main MAP signal and the reason I explained that is because trying to read the cylinder MAP is much harder because You're not just trying to smooth out 60-180 degrees of signal, you are trying to throw out everything except 60-180 degrees of signal and that means more math and most ECUs will not let you do this, all will let you log the signal but not use it for control like I'm doing. I don't recall what ECU you are planning to use, some will let you do math in the log display, others you need to export to excel to do the math.

What I do to get cylinder MAP is:
1) read all 12 cylinders and smooth the heck out of the raw signal...I use 0.99 factor which means I take 99% of the old reading and ad 1% of the new. This is a ton of lag but it doesn't end up mattering because i correct for that.. This number is be about 1/4 true MAP because 3 cylinders are in some part of intake and 9 are not. Same on a 4 cyl, 1 in vacuum, 3 not.

2) Take the average of the 12. This is basically what the output of a small plenum setup to read MAP would be....its a signal that represents MAP but is ever weak because most cylinders aren't doing anything helpful to the MAP signal.

3) Add the magic....the signal from the multiMAP which is the true engine MAP that each cylinder is contributing to. I say:
Cylinder MAP= Cyl reading/(MAP/Cyl average)

This both amplifies the weak signals so that match the actual signal and removes the lag I created trying to smooth out the signal enough to read it and the average of all 12 cylinder reading is equal to the MAP signal, guaranteed.

So now that I have cylinder MAP readings I trust I use them to display each cylinder vacuum to help me sync the TBs and I use them trim the fuel to each cylinder to match its vacuum so in theory each cylinder has the same mixture no matter how buggered the TB sync is which is a really problem for ITBs that normally don't correct cylinder mixtures vs individual carbs that do correct, not perfectly but way better than nothing you get from most EFI ITB setups

I read the 12 cylinder MAP signals from the 12 MAP sensors on the multiMAP. I had to use a CAN expander because I didn't have an extra 12 analog inputs on the ECU so CAN was the only way I could read them.

That's what I do and it seems to work pretty well. We can move the discussion you your particular setup to your thread or email as it will be different from mine unless you use an ECU like mine.


Top
 Profile Send private message  
 
PostPosted: Mon Mar 20, 2023 10:00 am 
Offline

Joined: Sat Mar 26, 2022 1:39 pm
Posts: 97
Thanks so much for this. It's so interesting. I didn't realize that you were still doing so much processing of the 12 individual signals on the ECU itself, or that you were including them as an input.

I've looked at MultiMAP, and a similar product called QuadraMAP that also includes a cam phase signal. I've also started looking at just making something of my own using an Arduino with 6 analog inputs (my project is an I6) that would do the individual smoothing of each of the 6 inputs, the calculation of the output MAP signal, and the output of the cam phase signal. I could also write the 6 processed MAP values out to CAN for logging or display from that same module. I feel like it would almost be worth doing that just for how much it would simplify periodic synchronization of the TBs.

What you've done here is so interesting - I won't pollute your thread further with my project.

Fabrication and test fitting for my project is starting soon - I've decided to open-source all of it - I'll post some stuff about it on your forum (but not this thread) if that's something you want to have around.


Top
 Profile Send private message  
 
PostPosted: Mon Mar 20, 2023 10:32 am 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
Its not really a polluting the thread issue, I do plenty of that, its more about getting you answers in a way you can find them again a year from now.

My advice is don't over complicate. QuradaMAP is probably a non-starter since its 4 not 6 and no access to the individual signals. The MultiMAP was designed to work with any number of cylinders, you literally just cut the board to the number you need, then I soldered wires on to get the individual signals.

I haven't done a ton of signal processing stuff so I don't know all the tricks, but for sure I didn't have a good way in the ECU to track the individual curves and pick off the low point each engine cycle.

Holley bought AEM and I don't know what's going on but right now the AEM 358 is $356. Its got 8 fuel, 9 analog inputs, CAN and can be converted to enginelab software if you chose

https://www.holley.com/products/fuel_systems/fuel_injection/aem_efi/parts/30-7114?utm_term=&utm_campaign=Google+Shopping+-+AEM+Electronics+-+Non-Brand&utm_source=google&utm_medium=cpc&hsa_acc=7848552874&hsa_cam=17242278644&hsa_grp=139174297880&hsa_ad=597446716969&hsa_src=g&hsa_tgt=pla-1654336976060&hsa_kw=&hsa_mt=&hsa_net=adwords&hsa_ver=3&gclid=CjwKCAjwiOCgBhAgEiwAjv5whBmTqGDf06eWJVHjMuscbC2646jzi1OEuaxorkFWABq0zrAQn3HXIxoC-RwQAvD_BwE


Top
 Profile Send private message  
 
PostPosted: Mon Mar 20, 2023 12:49 pm 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
It sure looks like AEM infinity ECUs are no longer a thing....everything is 1/2 price or out of stock :shock:


Top
 Profile Send private message  
 
PostPosted: Mon Mar 20, 2023 4:02 pm 
Offline

Joined: Sat Mar 26, 2022 1:39 pm
Posts: 97
My intention is to choose my ECU once I've chosen the person who's gonna tune it. The ECUMaster EMU Classic looks decent to me, and I've seen a CBX running on one.

Your continued advocacy for AEM/EngineLabs continues to ring in my ears - especially as this looks more and more like a project where a lot of it is going to come down to me personally. Scooping up one of those ECUs at half price seems kind of appealing...


Top
 Profile Send private message  
 
PostPosted: Thu Mar 23, 2023 9:35 am 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
Just discovered the Bosch bought motec last summer but unlike AEM/Holley it seems to be business as usual over there. When I think high end ECU the names Bosch and motec are near the top of the list.....I'm not really sure who else plays in the spaces they do?


Top
 Profile Send private message  
 
PostPosted: Thu Mar 23, 2023 9:55 am 
Offline

Joined: Sat Mar 26, 2022 1:39 pm
Posts: 97
mk e wrote:
When I think high end ECU the names Bosch and motec are near the top of the list.....I'm not really sure who else plays in the spaces they do?

Does Bosch even sell aftermarket/custom systems, or just the OEM stuff?

This video is a just one guy's perspective, but it's a very complete overview of different ECU systems:

Bunch of ECUs compared and discussed

For Motec, he says it's an excellent ECU and even good value for money, but the harnesses are overkill & too expensive and the flexibility with the firmware makes it complicated to use and hard to be confident in.

He talks about Motec together with Syvecs and Life Racing, and passed on the remark "Millionaires use Motec, billionaires use Life Racing". I noticed that they have solutions to drive GDI injectors so if you go that way with your flathead V12 you might wanna look into this stuff...


Top
 Profile Send private message  
 
PostPosted: Thu Mar 23, 2023 1:28 pm 
Offline

Joined: Thu Jan 01, 2015 6:47 pm
Posts: 4250
Motec is VERY expensive. When you look at the prices they don't look too bad but it's only the hardware, with no software loaded. So the M150 I had cost $3800 and said it did everything I could want, but the basic software would cost $1500, the full software that allows customization $2500. Basic marginally adequate data logging is $400, real logging is $1500. So the $3800 ecu is $9k. I paid $1000 for my EL that does nearly everything the motec would do


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2198 posts ]  Go to page Previous  1 ... 188, 189, 190, 191, 192, 193, 194 ... 220  Next

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 6 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group