Megasquirt Megasquirt gods, Question about a mod for proto area.
Thread Starter
Joined: Jan 2008
Posts: 1,300
Likes: 60
From: Southfield, MI
Megasquirt gods, Question about a mod for proto area.
Hey guys i am the engine manager for my FSAE team and i am designing a telescoping intake manifold for the engine. Its been designed but the only issue is that the electrical team thats helping me do the electrical side of it so it can move up and down according to rpm's told me that the arduino microcontroller does not have a processor thats fast enough to keep up with the rpm changes. I sugested to use the proto area of the megasquirt since i am using a megasquirt to control the engine. He was kinda stumped on how to make a circuit to do so. I am asking here if any of you have any input or ideas on how to make it happen with the MS?
Thanks for the help in advanced
Thanks for the help in advanced
I don't think you can use an megasquirt for that, if you can someone please correct me, but I haven't found it yet. I've used an seperate module for that in the past, like this:
http://www.ignitech.cz/english/stps/stps.htm
Normally meant for an exhaust valve, but you could use it for a telescopic intake.
It's really simple and programmable, but it isn't lightning fast. It doesn't control a PID controlled servo or anything, just a 12V DC motor with a potentio type sensor. Worked good for me, but not as cool as this:
http://www.youtube.com/watch?v=EPcpmSdip_0
http://www.ignitech.cz/english/stps/stps.htm
Normally meant for an exhaust valve, but you could use it for a telescopic intake.
It's really simple and programmable, but it isn't lightning fast. It doesn't control a PID controlled servo or anything, just a 12V DC motor with a potentio type sensor. Worked good for me, but not as cool as this:
http://www.youtube.com/watch?v=EPcpmSdip_0
Thread Starter
Joined: Jan 2008
Posts: 1,300
Likes: 60
From: Southfield, MI
I don't think you can use an megasquirt for that, if you can someone please correct me, but I haven't found it yet. I've used an seperate module for that in the past, like this:
http://www.ignitech.cz/english/stps/stps.htm
Normally meant for an exhaust valve, but you could use it for a telescopic intake.
It's really simple and programmable, but it isn't lightning fast. It doesn't control a PID controlled servo or anything, just a 12V DC motor with a potentio type sensor. Worked good for me, but not as cool as this:
http://www.youtube.com/watch?v=EPcpmSdip_0
http://www.ignitech.cz/english/stps/stps.htm
Normally meant for an exhaust valve, but you could use it for a telescopic intake.
It's really simple and programmable, but it isn't lightning fast. It doesn't control a PID controlled servo or anything, just a 12V DC motor with a potentio type sensor. Worked good for me, but not as cool as this:
http://www.youtube.com/watch?v=EPcpmSdip_0
Yes, it has an RPM input which you can configure (amount of pulses / rev), and it's got a TPS sensor input if you want a 3d map. The TPS input is just a 0-5V signal so you can use it for pretty much anything you want. If you open up the link that's in my previous post you can download the software (when you open it up click 'Jazyk --> Anglicky for it to make sense). The speed depends on which motor you use to drive your intake. The device is meant to run motorbike exhaust 'servo's' which are generally pretty slow. You can use other 12V DC motors but it's rated at 3 amps peak max, you're limited to about 40 watts. The mazda 787B uses the same type of system and 'servo's' (DC motors with potentio type sensors) to drive it's variable intake, which takes 0,5 seconds to move from one end to the other. If you want a simple solution buy a linear actuator from (http://progressiveautomations.com/tu...47519ed1eea4a9) and hook it up to your ECU ouput using a DPDT relay, pretty fast, and easy to control, but it's just 2 positions, fully in and fully out.
These are just 2 ways that I know of, but there must be far better and faster options out there. I don't know about megasquirt though. Maybe you can use the idle solenoid valve output (which is a general PWM signal) to drive an actuator of some sort?
These are just 2 ways that I know of, but there must be far better and faster options out there. I don't know about megasquirt though. Maybe you can use the idle solenoid valve output (which is a general PWM signal) to drive an actuator of some sort?
Last edited by John Huijben; Jan 12, 2012 at 11:05 AM.
Thread Starter
Joined: Jan 2008
Posts: 1,300
Likes: 60
From: Southfield, MI
Yes, it has an RPM input which you can configure (amount of pulses / rev), and it's got a TPS sensor input if you want a 3d map. The TPS input is just a 0-5V signal so you can use it for pretty much anything you want. If you open up the link that's in my previous post you can download the software (when you open it up click 'Jazyk --> Anglicky for it to make sense). The speed depends on which motor you use to drive your intake. The device is meant to run motorbike exhaust 'servo's' which are generally pretty slow. You can use other 12V DC motors but it's rated at 3 amps peak max, you're limited to about 40 watts. The mazda 787B uses the same type of system and 'servo's' (DC motors with potentio type sensors) to drive it's variable intake, which takes 0,5 seconds to move from one end to the other. If you want a simple solution buy a linear actuator from (http://progressiveautomations.com/tu...47519ed1eea4a9) and hook it up to your ECU ouput using a DPDT relay, pretty fast, and easy to control, but it's just 2 positions, fully in and fully out.
These are just 2 ways that I know of, but there must be far better and faster options out there. I don't know about megasquirt though. Maybe you can use the idle solenoid valve output (which is a general PWM signal) to drive an actuator of some sort?
These are just 2 ways that I know of, but there must be far better and faster options out there. I don't know about megasquirt though. Maybe you can use the idle solenoid valve output (which is a general PWM signal) to drive an actuator of some sort?
thank you very much, i have been looking at actuators.
Thanks
Trending Topics
You mean the actual hardware? You probably don't want me to do it, I am not terribly great at fabrication.
For the PID stuff I have been thinking about creating a generic duty-based PID that lets you tie any duty based output to any ADC (voltage, 0-5v) based input with a PID loop. If you can create the mechanical and electronic systems for that I can make the code work.
Ken
For the PID stuff I have been thinking about creating a generic duty-based PID that lets you tie any duty based output to any ADC (voltage, 0-5v) based input with a PID loop. If you can create the mechanical and electronic systems for that I can make the code work.
Ken
Joined: Feb 2001
Posts: 29,798
Likes: 128
From: London, Ontario, Canada
did you ever get this to work? ive been looking for a 0-5v servo controller to use with my ms3x.
Aaron: would it be difficult to modify your circuit to have a 0-5v or pwm input to control it?
Aaron: would it be difficult to modify your circuit to have a 0-5v or pwm input to control it?
Thread
Thread Starter
Forum
Replies
Last Post
msilvia
3rd Generation Specific (1993-2002)
28
Apr 14, 2016 12:58 PM
The Shaolin
2nd Generation Specific (1986-1992)
9
Sep 14, 2015 07:50 PM
actuators, control, installs, intake, linear, manifold, megasquirt, megasquirts, miami, mod, ms3, msefi, rx7, sale, telescoping





