Need help with arduino sampling voltage and current

Click For Summary

Discussion Overview

The discussion revolves around using an Arduino to sample voltage and current from an electrolytic cell designed for electrolysis. Participants explore methods for calculating average current draw and voltage drop over time, as well as data storage and output techniques.

Discussion Character

  • Exploratory
  • Technical explanation
  • Homework-related

Main Points Raised

  • One participant describes their project involving an electrolytic cell and seeks assistance with measuring average current and voltage using an Arduino.
  • Another participant suggests using a voltage divider and diodes to protect the Arduino from high voltage inputs, emphasizing the importance of staying within the 0-5V range.
  • A participant expresses understanding of voltage measurement but seeks clarification on serial data output functions and how to graph the data.
  • One reply proposes using the Serial.println() function for data output and suggests graphing the results in software like Excel.
  • Another participant discusses the formula for calculating average current and suggests using an external EEPROM for data storage, along with a data logging shield for easier data management.

Areas of Agreement / Disagreement

Participants generally agree on the methods for measuring voltage and current with the Arduino, but there are varying suggestions regarding data output and storage techniques. The discussion remains unresolved regarding the best approach to graphing the data and the specifics of implementing EEPROM.

Contextual Notes

Some limitations include the need for a clear understanding of serial functions, potential challenges in data graphing, and the specifics of integrating external memory with the Arduino.

HHOboy
Messages
32
Reaction score
0
Hi, I built a electrolytic cell that uses electricity to break water into hydrogen and oxygen. I am testing efficiency and need a way of calculating the average current draw and voltage drop over a period of time for the cell. I have some experience using Arduinos in projects but not much. I know I will have to take samples then use a function to calculate the average voltage and current. By the way the current is measured using a shunt so 1mv = 1amp. The voltage drop averages around 40 volts. I have researched some but am still very confused on adding memory to the arduino and outputting data via serial cable to a laptop. Any help would be much appreciated. Thanks in advance.
 
Engineering news on Phys.org
Sounds like you want to do some analog input sampling. Remember the Ardunio can only measure inputs between 0-5V, so you want to design a circuit with a voltage divider and some diodes to ensure that the input to the Arduino never exceeds the value it can take (trust me, you'll fry the thing if you don't).

Have a look at this one:
http://fritzing.org/projects/voltage-divider/



As for the actual analog signal sampling, the Arduino is very useful and userfriendly. Have a look at the analogRead() function:
http://blog.littlebirdelectronics.com/tutorial-arduino-and-the-aref-pin
http://arduino.cc/en/Reference/analogRead
 
Last edited by a moderator:
Thanks for the reply, I now understand how to read the voltages with the arduino, but I don't totally understand the serial functions that are used to output the data that is recorded. I understand that I can use the Arduino environment to process this serial data input but I was wondering if you know a good way to maybe make a graph out of the data. Again thanks for all of your help.
 
Last edited:
No worries!
Well, what serial functions are you using at the moment?

An easy, but slow, method that I sometimes use when I need to graph data is to use the Serial.println( ); function, and then simply graph the data I get versus time in some other software (Excel)
 


Hello,

It sounds like you are working on an interesting project! Sampling voltage and current with an Arduino can be a useful tool for analyzing the efficiency of your electrolytic cell. To calculate the average current draw, you can use the formula I = Q/t, where I is the current, Q is the charge (measured in coulombs), and t is the time. Since you are using a shunt to measure the current, you will need to convert the voltage reading to current using Ohm's law (I = V/R). As for calculating the average voltage, you can simply take the average of all the voltage readings over a period of time.

To add memory to your Arduino, you can use an external EEPROM (Electrically Erasable Programmable Read-Only Memory) module. This will allow you to store the voltage and current readings over a longer period of time. You can then use the serial cable to output the data to a laptop for further analysis.

I would suggest doing some research on using EEPROM with Arduino and familiarizing yourself with the code needed to read and write data to it. Additionally, you may find it helpful to use a data logging shield, which will make it easier to store and retrieve data from the EEPROM.

I hope this helps and good luck with your project!
 

Similar threads

  • · Replies 32 ·
2
Replies
32
Views
4K
Replies
22
Views
2K
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
4K
Replies
11
Views
7K
Replies
78
Views
10K
  • · Replies 11 ·
Replies
11
Views
969