High Voltage AC Sensor To Arduino

I am at the beginning stages of scoping out a car data logging project. I am a relative newbie to the world of electronics but have dabbled a little bit to date.

One of my proposed sensors is a magnetic induction sensor that will provide me an AC signal for engine RPM. Depending on engine RPM it appears to output from a few volts up to around 50+/- volts.

I have tried to research options for using this sensor with an Arduino but got very confused with the technical jargan!

What options, if any, do i have for using this sensor? I am thinking there must be some way of effectively converting the signal to a digital square wave. The signal appears to be quite clean as I have used it for other purposes on my Picoscope.

Changing to a hall effect sensor is not an option but would be the obvious answer.

Converting AC to block signal is easy, use a schmidt trigger for that. The tricky bit may be to find a schmidt trigger that can do +/- 50V or 100V, preferably double that to survive spikes.

This however will make you lose any voltage information of the AC signal. For that, you could use a rectifier (a single diode is enough; I assume both positive and negative signals are equal) + capacitor to smooth out the signal (a rather small one will do for this) + voltage divider + 5V zener to protect your port from over voltage.

That said, it appears that your real question is: how to measure the RPM of the engine. There are lots of RPM sensors out there, what works for you will depend on how you can connect it to your engine and what RPM you expect. Exposure to water, dirt and heat may also limit the choice.

Can you post a link or brand name / part nr for that sensor? What is it sensing?

It is this one;

http://www.rsshop.com.au/magneti-marelli-speed-sensor.html

I have a trigger wheel mounted to the engine (metallic but not magnetic) and this sensor. This is the one I want/have to use.

I do not need any voltage information in the signal - the voltage is just a function of RPM but is not to be used to determine that RPM - so the Schmidt trigger sounds like the go. Never heard of one before so i will research.

...and my real question was as i stated! lol.............

Realised I have heard of Schmidt trigger in relation to debouncing switches.

Looking into Schmidt triggers I think they may be what I need. However, I have been playing with the following calculator;

but cannot work out what 'Supply Voltage' really means. My sensor will output an AC voltage that at low RPM may max at say 4v but at full RPM may max at say 50v. I need to connect the square wave output to an Arduino so need that output to be 5v. Is the 'Supply Voltage' 4v, 5v or 50v? Once I can understand that I can determine what resistors i need to give me the switch points I want.

I don't think a rectifier will work given the requirement to keep the voltage to a level that an Arduino will hande?

Also, as far as i can see, the output of a Schmidt trigger will be proportional to its input?

Further, it appears starting with an Op-Amp (another new term to me!) is the way to go then adding resistors creates the differential switch points?

Learning is hard work.......

This should do the job.

schematic.png

D1 lets pass only the positive half of the cycle; C1 stabilises the voltage. 10 uF is plenty big enough, 1 uF is probably enough already, and will help getting faster reaction. Then a 1:11 voltage divider. 50V in brings the voltage on the Arduino down to 4.55V; 5V input gives you 0.45V on the pin. That's a comfortable range for the ADC - your reading there will be a direct measure for your rpm. The 5V zener D2 makes sure the voltage can never be >5V on the pin; this is protection. The zener will leak quite seriously at >4V so the higher voltages may not be very accurate.

Another thing: R1 may need to be more like 15k as a 50V AC usually means about 70V peak, and it's the peak that you are measuring this way.

Mind that higher R1+R2 and larger C1 means the circuit will react slower to changes in RPM (reaction time may be in the order of seconds, depending on the RC constant of the circuit).

Thanks for taking the time to draw that up.!

The way my sensor works is that at low engine RPM it outputs a sine wave at low voltage (say +/-4v peaks) but at high RPM those peaks are close to +/-50v. Although the voltage divider will reduce the 50v to 4.55v will it not reduce the 4v to something like 0.35v? Also this isn't s square wave output to the Arduino?

I love to learn but to be honest i am on the edge of my knowledge/ability

Mk1_Oz:
Thanks for taking the time to draw that up.!

No problem. Took a few minutes maybe, including posting it here. Just a quick sketch.

The way my sensor works is that at low engine RPM it outputs a sine wave at low voltage (say +/-4v peaks) but at high RPM those peaks are close to +/-50v. Although the voltage divider will reduce the 50v to 4.55v will it not reduce the 4v to something like 0.35v?

Here is the thing about sine waves: the peak is a lot higher than the average. If you're measuring mains voltage, you see 220V on your multimeter, yet the peaks of that voltage are at about 360V. For your system it works the same, so if you say 4V is that the average or is that peak?

Also this isn't s square wave output to the Arduino?

No - this will be a very constant voltage, no peaks, and the voltage you get out is the peak voltage rather than the average. So you can put in 4V AC and get out about 6V DC. So before hooking this up to your Arduino you really should take a multimeter and measure what voltages you get across the capacitor.

This way you can measure the voltage without having to worry about waveforms, as you said your voltage is a direct measure for the RPM so this sounds like the simplest way of doing this.

If you really want square wave output, you gt a different circuit. I think you'd best use an OpAmp for that. Use the voltage divider/zener combo as above to protect the input of the OpAmp, and let it produce a square wave. The output will be a wave between 0V and 5V, regardless of the input voltage. Use a circuit like this if what you're after is the frequency of the signal. This you can measure using a pulseIn() call (measure the duration of a single pulse - for low frequency signals) or by counting the number of waves for a period of time using an interrupt.

My 4v i mentioned is the peak figures (+/-) as is the 50v figure.

Right. Using the sine wave signal as a frequency from which to drive RPM is what u want.

My understanding is that an op-amp becomes a schmitt trigger by adding a few resistors that determine the upper and lower voltage on/off points. Using your zener bits to limit the voltage in (ie limit my max of +50v peak) to the op-amp to whatever it can handle is great. At low RPM when the sensor output is around 4v peak the zener bits probably wont be needed. I guess this will also remove the negative part of the sine wave which is surplus to my needs anyway.

Ok i am starting to get somewhere.

Not being very good at this stuff i wish there was an off the shelf part to just make this all happen! !!

The zener just won't do anything at the 4V levels, it's protection. You still need a resistor between the input signal and the zener. I'm sure there are folk here with much more experience with OpAmps that can suggest specific circuits, or do a Google search for this.

Basically you wire the OpAmp as comparator, so whenever the voltage of your signal is the slightest bit (in practice a few mV) above your reference (could be GND), the output will be at Vcc.

It still looks like you are barking up the wrong tree. Get a sensor which works at the Arduino's voltage to begin with. Hall effect or proximity sensors are perfect for this.

If it is a reasonably modern car with OBD2 then plug into that and use the engine's own sensors.

No barking. Using what i have already. I know a hall effect sensor would be better but i don't have one installed on this engine. Only an induction sensor. Very old car. ....

I have spent slot of time looking into schmitt triggers and they appear to be my immediate solution. One thing i have not been able to work out (most tutorials are pegged at a higher knowledge level than mine) is what is connected to the +Vcc and -Vcc points. The attached pic seems reasonably standard. On the triangle V2 is my ac sine wave and V1is ground. Rdiv1 and Rdiv2 take care of the upper and lower trigger points. The output is the output (i want +5v or 0v). But what is +Vcc and -Vee. Is this a +5v input and ground ie that gets outputed as the square wave? Sorry to be stupid.....

Schmitt-Trigger-Using-Op-Amp-741IC-1.jpg

The negative rail is often connected to GND for single supplies. See this page for examples.

my head is spinning

If you put the tachogenerator signal through a series resistor through a pair of back-to-back diodes you'll
get a nice 1.2V peak to peak signal whose voltage is relatively insensitive to the speed. Try 10k or so.

This diode clipping circuit is commonly used for limiting voltage of an ac signal or protecting an input.

Very nice solution indeed.

MarkT:
If you put the tachogenerator signal through a series resistor through a pair of back-to-back diodes you'll
get a nice 1.2V peak to peak signal whose voltage is relatively insensitive to the speed. Try 10k or so.

You blokes amaze me! Nice.

This solution will give a ramp from zero volts up to the clip level. How will an Arduino react to this on a digital pin? Will it read the value as low until it reaches some value over 2.5v at which time it will set to high? Not sure if the Arduino (Uno or Mega) needs a definite 0 or 5v on a digital pin or whether a slightly varying voltage, as provided by your soltion, will still work? If your method is suitable then I guess I just vary the resistor size to clip the voltage at between 2.5 and 5v?

If a square wave output is better for the Arduino then I could incorporate both ideas. I could use your clipping circuit to limit my AC voltage (currently up to say +/-50v) to something that a Schmitt Trigger could handle (I was led to believe above that a ST would not be able to handle 50v). That output could then be processed by a ST to convert it to a square wave at trigger points set by me by varying the resistor values. Does that sound reasonable?

A couple fo specific questions:

  1. What type of diode for the clipping? Do diodes come in different sizes as do resistors and caps? (sorry...I am very new...)

  2. To make a ST do I just buy a ST chip and add the resistors to make my own complete unit? There has been mention of starting with an op-amp but I have only found bare bones chips not nice complete boards. Any links to parts gratefully accepted lol

Mk1_Oz:
This solution will give a ramp from zero volts up to the clip level. How will an Arduino react to this on a digital pin?

At the 0.7V level it will not react. It needs 2.5-3V to detect high (see data sheet for details on this, if you're interested). This signal is best passed into a Schmidt trigger to make it a 0/+5V signal.

The resistor value is purely to limit current, as a diode has a fixed voltage drop that varies little with current. So the actual resistor value doesn't change how much voltage you get out, it could in principle be any value but low values mean higher current. You want to keep this current low to not affect the sensor, and to prevent heat from building up and so. That's why 10k, but a higher value or a bit lower will do as well. Whatever you have on hand.

  1. What type of diode for the clipping? Do diodes come in different sizes as do resistors and caps? (sorry...I am very new...)

Different sizes - for power/breakdown (reverse) voltage rating.
Different values - not so much (well, there are zener and Schottky diodes - look them up - which have different applications).
Voltage drop over diodes is pretty much the same for all of them, 0.6-0.7V.
A standard 1N4002 will do, or a higher value (1N4003..7) The 2 goes to 100V, the 7 to 1000V reverse breakdown. At 10k resistor value you get just a few mA so no need for high power rating.

  1. To make a ST do I just buy a ST chip and add the resistors to make my own complete unit? There has been mention of starting with an op-amp but I have only found bare bones chips not nice complete boards. Any links to parts gratefully accepted lol

OpAmps usually come in DIP or other solderable package. DIP is very nice for experimenting - do get a solderless breadboard and a set of jumper wires. Makes experimenting a lot easier. Then get some protoboards to build finished projects, so you can properly build it into something.

A Schmidt trigger is normally based on an OpAmp indeed. Very easy to build, just a few external components.

Cool. I think I know enought o get started and do some damage!!!

Is there any decent (and free) electronics simulation software available that could assist me before I blow up components for real? I saw one called 123D Circuits.io but know nothing about it.

Been playing with circuits all arvo. Is it possible to have a non-inverting asymmetric schmitt trigger using an op-amp? I cannot find a reference to this, only to an inverting asymmetric.