Saturday, 2 September 2017

sensor - Capacitor for current transformer measurement circuit


I want to measure an AC current with a current transformer and an arduino device. I found on a website (http://www.homautomation.org/2013/09/17/current-monitoring-with-non-invasive-sensor-and-arduino/) that measurement circuit:


enter image description here


My question is, why do I need a capacitor here? The explanation from the website is:




The capacitor C1 (10uF) has a low reactance – a few hundred ohms – and provides an alternative path for the alternating current to bypass the resistor.



But why do I need an alternative path for the alternating current?



Answer



The explanation is confusing, what RA, RB do is divide the 5 V of the Arduino's supply by a factor 2 to 2.5 V. This is used as a reference voltage because the sensor can generate positive and negative voltages.


Suppose the sensor makes -1 V, by itself the Arduino cannot handle this, you have to be between 0 V and 5 V. But if you "lift" that -1 V by 2,5 you get 2.5 V - 1 V = 1.5 V which is perfectly OK.


But a little bit of AC current will flow, disturbing the 2.5 V reference voltage. This is where the capacitor C1 comes in, it decouples that reference voltage. Indeed, the AC component will now travel (have a path through) the capacitor instead of the resistors. That's what they are saying.


But stating: "C1 decouples the 2.5 V reference voltage" would probably be easier to understand.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...