© Paul Bradt and David Bradt 2020
P. Bradt, D. BradtScience and Engineering Projects Using the Arduino and Raspberry Pihttps://doi.org/10.1007/978-1-4842-5811-8_4

4. Simple Science and Engineering Projects

Paul Bradt1  and David Bradt2
(1)
Houston, TX, USA
(2)
Houston, USA
 

This chapter explains several simple science and engineering projects that can provide data on some basic physical properties. These are good projects to explore science, engineering, the Arduino, and the Raspberry Pi. These projects can be useful too. The first project is a small-scale version of a key driving mechanism of how weather works. The second project highlights aspects of force and pressure including how distributing force over a different area changes the applied pressure. The final project is an automated tool to capture the number of events happening over time. This could be useful capturing scientific data, for example, examining the number of meteorites during a shower or the number of lightning strikes during a thunderstorm. These tools are great for measuring and observing key scientific concepts. Fortunately, the engineering skills and techniques needed to build these projects is relatively easy.

Buoyancy of Air

The first project will use two temperature sensors to track temperature change in two different elevations inside a house. It will demonstrate that hot air rises and the effect of buoyancy.

Science

Buoyancy of heated air and using one form of the ideal gas law.

Technology/Engineering

Using the Arduino or the Raspberry Pi and temperature sensors to collect data, to test methods, and to improve temperature distribution in a house.

Mathematics

This section explores the mathematics associated with density changes of air as a function of temperature. As air heats up and energy is added, the density decreases, and it will float on the colder denser air. If it is cooled, it will sink.

The mathematics associated with this project uses these variables with the goal of calculating the change of density based on temperature changes:
  • P = Pressure

  • ρ = Density

  • T= Temperature

  • R = Specific gas constant

  • ρ = P/(R × T)

As can be seen in the preceding equation, if the temperature (T) increases and the pressure is held close to constant, then the density will decrease which causes the warmer gas to rise. On a larger scale, the sun warms the Earth’s atmosphere, which causes a large mass of air density to decrease. This movement may result in winds and breezes. Enough of a temperature change and the pressure may decrease which will cause more wind flowing from high-pressure areas to low-pressure areas.

Arduino Buoyancy of Air Version

This project is similar to the Arduino project in Chapter 2; however, it uses libraries and the I2C temperature sensor used in the Raspberry Pi data logging project. The code is a little more complex and uses libraries which are ready-to-use packages of code that are called up when needed. These significantly simplify the code needed. The user will need to download the required libraries onto their computer in the library folder.

From an engineering perspective, these are the parts shown in Figure 4-1 that are needed to build the Arduino version of this project:
  • Arduino Uno 3

  • 2 DS18B20 waterproof temperature sensors

  • 4.7K Ω resistor

  • Miscellaneous wires, proto-board, and terminal strips

  • One piece of wood to mount the components on

../images/488244_1_En_4_Chapter/488244_1_En_4_Fig1_HTML.jpg
Figure 4-1

Arduino and Two I2C Temperatures Sensors

Figure 4-2 shows how the sensors were placed in the house to get the two readings. Figure 4-3 is the schematic showing how to connect them to the Arduino.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig2_HTML.jpg
Figure 4-2

Two Temperature Sensors

../images/488244_1_En_4_Chapter/488244_1_En_4_Fig3_HTML.jpg
Figure 4-3

Arduino and Two One-Wire Temperature Sensors

This code was originally found at this web site:

https://create.arduino.cc/projecthub/TheGadgetBoy/ds18b20-digital-temperature-sensor-and-arduino-9cc806

It requires these libraries to b downloaded: One Wire and Dallas Temperature. If you are not familiar with Arduino libraries, then this site has a lot of good info:

www.arduino.cc/en/guide/libraries

SN103 Dual I2C Temp Sensors code

The comments in Listing 4-1 (which are either after two // or between /* and */ ) provide good explanation of what the code is doing. When these are in place, the code knows to skip over them and not execute them.

//SN103_1_wire_2sensors_8_3_2019 Modified by PBradt
/*********************************************************/
// First we include the libraries
#include <OneWire.h>
#include <DallasTemperature.h>
/**********************************************************/
// Data wire is plugged into pin 2 on the Arduino
#define ONE_WIRE_BUS 2
/**********************************************************/
// Setup a oneWire instance to communicate with any
//OneWire devices
// (not just Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);
/**********************************************************/
// OneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);
/**********************************************************/
void setup(void)
{
 // start serial port
 Serial.begin(9600);
 Serial.println("Dallas Control Library");
 Serial.println("This is SN103");
 // Start up the library
 sensors.begin();
}
void loop(void)
{
 // call sensors.requestTemperatures()
 // to all devices on the bus
/**********************************************************/
 Serial.print(" Requesting temperatures...");
 sensors.requestTemperatures();
// Send the command to get temperature readings
 Serial.println("DONE");
/**********************************************************/
 Serial.print("Temperature0  is: ");
 Serial.print(sensors.getTempCByIndex(0));
 Serial.println("");
 Serial.print("Temperature1  is: ");
 Serial.print(sensors.getTempCByIndex(1));
 Serial.println("");
// You can have more than one DS18B20 on the same//bus.
   // 0 refers to the first IC on the wire
   delay(10000);
}
Listing 4-1

Arduino SN103_Two Sensors 1 Wire Code

Data was taken on a warm day, and it shows when the air conditioner is running, there is a lot of mixing of the air and the temperature equalizes out over time.
  • Temp 0 is 20 inches (0.5 m) from the ceiling.

  • Temp 1 is about 24 inches (0.6 m) from the floor.

  • The room is 8 feet high (2.4 m).

  • The distance between the sensors is 2.4 – (0.5 +0.6) = 1.3 m.

  • This is SN103

  • Requesting temperatures...13:18:33.593 -> DONE

  • 13:18:33.593 -> Temperature0 is: 24.87

  • 13:18:33.640 -> Temperature1 is: 24.19

  • 13:18:43.696 -> Requesting temperatures...DONE

  • 13:18:44.446 -> Temperature0 is: 24.81

  • 13:18:44.446 -> Temperature1 is: 24.19

  • 13:18:54.501 -> Requesting temperatures...DONE

  • 13:18:55.276 -> Temperature0 is: 24.69

  • 13:18:55.276 -> Temperature1 is: 24.19

  • 13:19:05.331 -> Requesting temperatures...DONE

  • 13:19:06.081 -> Temperature0 is: 24.56

  • 13:19:06.128 -> Temperature1 is: 24.19

  • 13:19:16.183 -> Requesting temperatures...DONE

  • 13:19:16.932 -> Temperature0 is: 24.50

  • 13:19:16.932 -> Temperature1 is: 24.12

  • 13:19:26.996 -> Requesting temperatures...DONE

  • 13:19:27.746 -> Temperature0 is: 24.37

  • 13:19:27.793 -> Temperature1 is: 24.12

  • 13:19:37.803 -> Requesting temperatures...DONE

  • 13:19:38.553 -> Temperature0 is: 24.31

  • 13:19:38.600 -> Temperature1 is: 24.12

  • 13:19:48.633 -> Requesting temperatures...DONE

  • 13:19:49.383 -> Temperature0 is: 24.25

  • 13:19:49.430 -> Temperature1 is: 24.19

  • 13:19:59.475 -> Requesting temperatures...DONE

  • 13:20:00.213 -> Temperature0 is: 24.25

  • 13:20:00.260 -> Temperature1 is: 24.12

  • 13:20:10.320 -> Requesting temperatures...DONE

  • 13:20:11.069 -> Temperature0 is: 24.19

  • 13:20:11.069 -> Temperature1 is: 24.19

  • Calculation of density and summary of the data:

  • ρ = P/(R × T)

  • The starting Temperature0 of 24.87 oC is 298.02 oK.

  • The starting Temperature1 of 24.19 oC is 297.34 oK.

  • The specific gas constant for dry air is 287.058 J/(kg·K) in SI unit

  • or 8.314462618 m3·Pa·K−1·mol−1.

  • Calculating the density and assuming a constant volume At 20 °C and 101.325 kPa pressure at the two temperatures yields the results below:

  • Density at T0 = P/(R x T) = 101325/(8.314462618 x 298.02) =

  • 40.89.

  • Density at T1 = P/(R x T) = 101325/(8.314462618 x 297.34) =

  • 40.99.

The preceding calculations show that at T0 the air is approximately 0.24% less dense than at T1; therefore, that piece of air will rise and float on top of the colder dense air. Once the air conditioner blows the air around, it pushes colder air down, but eventually there is enough mixing that the temperature between the two locations mixes and evens out.

Raspberry Pi Buoyancy of Air Version

This project uses the Raspberry Pi and the LM35 temperature sensor to also capture the temperature difference at two heights in a house. One other item that is needed is an analog to digital converter (ADC). This is needed because the LM35 sensor is an analog device, but the Raspberry Pi only accepts digital inputs.

The parts needed are
  • Raspberry Pi 3

  • MCM 40-pin GPIO breakout board and cable for Raspberry Pi (or equivalent)

  • 2 LM35 sensors that are connected to a wire harness (see Appendix)

  • MCP3008 analog to digital converter (ADC)

  • Miscellaneous wires, proto-board, and terminal strips

The authors found a lot of confusing information online regarding the use of the Raspberry Pi and the MCP3008 ADC. They found the following code which works well as long as its SPI configuration matches the pins on the Raspberry Pi. One of the confusing aspects in the documentation on the Internet regarding connecting to the ADC is the connections to GPIO. There are four key connections and multiple designations. The first one is pin number 23. This is also designated GPIO11 and the SPI SCLK clock connection. The next key connection is pin 24, and its other designations are GPIO8 and SPI CE0 or chip enable. Another key connection is pin number 19, also designated GPIO10 or SPI MOSI. The final key connection is pin number 21, also designated GPIO9 or SPI MISO . Keeping these key connections in mind and understanding the multiple designations will help to ensure the reader will get this powerful tool connected and running. The MCP3008 ADC can accept up to eight sensor inputs.

Figure 4-4 shows the assembled unit with the MCM 40-pin GPIO breakout board and the MCP 3008 ADC.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig4_HTML.jpg
Figure 4-4

Raspberry Pi Setup to Measure Air Temperature

Figure 4-5 shows the sensor assembled to a small circuit board and then the heat shrink tubing placed over it to insulate and protect the device from inadvertent shorts of the wires.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig5_HTML.png
Figure 4-5

LM35 Sensor Assemblies

Figure 4-6 is the schematic that shows how to connect the Raspberry Pi with the ADC and then the LM35 temperature sensors.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig6_HTML.jpg
Figure 4-6

Raspberry Pi, A to D Converter, and Two LM35 Sensors

The basis for this code (Listing 4-2) was found on this Raspberry Pi web site. There is a bit of discussion regarding A to D converters that the reader might find helpful:

www.raspberrypi.org/forums/viewtopic.php?t=221972

Note

The five lines of bold code below are each on one line in the program:

#Pi_SN002A
# Simple example of reading the MCP3008 analog input # channels
# Convert to Temperature.
# Original code from Author: Tony DiCola
# Modified by Paul Bradt
# License: Public Domain
import time
# Import SPI library (for hardware SPI) and MCP3008
# library.
import Adafruit_GPIO.SPI as SPI
import Adafruit_MCP3008
# Software SPI configuration:
CLK  = 23
CS   = 24
MISO = 21
MOSI = 19
mcp = Adafruit_MCP3008.MCP3008(clk=CLK, cs=CS, miso=MISO, mosi=MOSI)
# Hardware SPI configuration:
# SPI_PORT   = 0
# SPI_DEVICE = 0
# mcp = Adafruit_MCP3008.MCP3008(spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE))
print('Reading MCP3008 values')
# Print nice channel column headers.
print('| {0:>4} | {1:>4} | {2:>4} | {3:>4} | {4:>4} | {5:>4} | {6:>4} | {7:>4} |'.format(*range(8)))
#print('-' * 57)
# Main program loop.
while True:
    # Read all the ADC channel values in a list.
    values = [0]*8
    for i in range(8):
        # The read_adc function will get the value of # the specified channel (0-7).
        values[i] = mcp.read_adc(i)
    #Math for converting raw digital value into F/C
    #Temperatures
    values[2] = values[0]/1023.0*330.0
    values[3] = values[1]/1023.0*330.0
    values[4] = (values[2]*9/5+32)
    values[5] = (values[3]*9/5+32)
    print('| {0:>2} Raw 1| {1:>2} Raw 2| {2:>2} C for 1| {3:>2} C for 2| {4:>2} F for 1| {5:>2} F for 2|'.format(*values))
    # Pause for half a second.
    time.sleep(0.5)
Listing 4-2

Raspberry Pi Code PI_SN002A Two Analog Temperature Sensors

The Raspberry Pi version provides another way to gather data to observe and monitor buoyancy of air, temperature changes, and how well the air mixes when the air conditioning is turned on.

Buoyancy Recap

These two projects explore ways of demonstrating and capturing buoyancy of air data and provide a way to track temperatures in two different heights in a room. This can be utilized to observe how air mixes and evens out the temperature when an air conditioner or fan is running. Additionally, it may be helpful assessing the benefits of ceiling fans and other ways to improve a home’s environment.

Demonstrating Pressure

This next project will help to clear up some of the confusion that may exist between force and pressure. They are related, and the mathematics showing this relationship will be demonstrated. The system in this project uses a force sensor to demonstrate how to measure force and applied pressure on a force sensor. It also demonstrates the concept of distributing a load over different areas. This concept of changing loads by changing the area is key to many civil and mechanical engineering problems.

Science

Gain an understanding of the difference between the principles of pressure and force.

Technology/Engineering

Using the Arduino and a force sensor.

Mathematics

Converting the sensor voltage reading to pressure based on the sensor’s calibration.

The parts needed are
  • Arduino Uno 3

  • Square force sensor resistor (Adafruit or SparkFun)

  • 10K Ω resistor

  • Miscellaneous wires, proto-board, and terminal strips

  • Several pieces of wood and a stack of ten pennies (or other coins)

Adafruit has a very good description of how this force sensor works along with a calibration curve showing where it is linear and indicating where it is not. The discussion on this site is that the force sensor is not an accurate device; however, it can be used to gain insight from relative force comparisons, in other words, comparing one measurement to another.

The Appendix section shows the technique needed to solder the wires to the force sensor.

Figure 4-7 shows an Arduino connected to the force sensor along with the stack of pennies sitting on top of a square piece of wood on the force sensor.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig7_HTML.jpg
Figure 4-7

Measuring Force with Arduino

Figure 4-8 shows the schematic to connect the force sensor to the Arduino. The resistor is part of a voltage divider and is compared to the sensor’s resistance.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig8_HTML.jpg
Figure 4-8

Schematic of Force Measurement

The basic sketch or Arduino code contains four primary elements:
  1. 1.

    The first step of the program is to set up the variables.

     
  2. 2.

    The program sets up the serial port communication rate.

     
  3. 3.

    The program runs a repeating loop that cleans registers and then gets new data.

     
  4. 4.

    The Arduino sends data to the serial port on the computer.

     

Listing 4-3 is the code, and it reads the data from the sensor and then sends it over the serial line to the computer.

Note

The follwoing bold line of code needs to be on one line in the IDE:

//SN104 Force Sensor Basic Code
//From the article: http://bildr.org/2012/11/force-//sensitive-resistor-arduino
int FSR_Pin = A0; //analog pin 0
void setup(){
  Serial.begin(9600);
}
void loop(){
  int FSRReading = analogRead(FSR_Pin);
  Serial.println(FSRReading);
  delay(5000);
  //delay(100); //Use this delay for zero g
  //Count is in msec adjust here to slow down the
  //output for easier reading
}
Listing 4-3

Arduino SN104_Basic Force Sensor Code

For those who want to modify and improve the code, the following is an example of how you might convert the direct reading from the sensor to pressure. The factors and size of the interface may need to be adjusted based on what the researcher uses. This code uses the double function which is needed when the Arduino is doing detailed calculations.

This modified code (Listing 4-4) converts the output to a pressure reading of pounds per square inch.

Note

The code that is bold below is on one line and should not overwrap when typed into the IDE.

//SN104B Force Sensor and Pressure Calculation Code
//From the article: http://bildr.org/2012/11/force-//sensitive-resistor-arduino
//Code Modified by Paul Bradt
int FSR_Pin = A0; //analog pin 0
int FSRReading;
double AnalogRatio = 44;
double weight = .055;
double area = 1.0;
double PSIresult;
void setup(){
  Serial.begin(9600);
  //Example code to convert the sensor readings with
  //area and weight you measure for
  // Pressure (in PSI) calculation.
}
void loop(){
  FSRReading = analogRead(FSR_Pin);
  PSIresult = 0;
  PSIresult = (double)( FSRReading / AnalogRatio * weight / area );
  Serial.print("FSR analog read is: ");
  Serial.println(FSRReading);
  Serial.print("PSI result is: ");
  Serial.println(PSIresult);
  delay(5000);
  //Count is in msec
  //adjust to slow down the output for easier reading
}
Listing 4-4

Arduino Code SN104B Force Sensor Pressure Calculation

The data in Table 4-1 shows the relationship between the force reading and how it changes if it is distributed over different areas.
Table 4-1

Analysis of the Data from Force Sensor Measurements

Test

Side of Area Interface (inches)

Area (square inches)

Average Voltage Reading

¼ of Voltage Reading

1

1

1

44.8

N/A

2

0.5

0.25

159.5

40

3

0.25

0.0625

327.75

82

For example, use Test 1 as the basis for comparison. The Test 2 area is ¼ of Test 1 (4 × 0.25 = 1). So the same force is pushing on ¼ the area, and the sensor would see four times the force. If we divide the reading of Test 2 by 4, we get very close to the Test 1 reading. This is in the last column of Table 4-1. For Test 3, the relationship breaks down; this may have to do with the sensitivity of the sensor for this small area.

Pressure/Force Recap

This project demonstrates and clarifies the difference between pressure and force. It demonstrates a very important concept showing how the applied load can be reduced by changing the area where the force interacts.

Capturing Counts

Scientists often need to count occurrences of events and compare them between different hypotheses. This project will show how to capture very fast events and count them to monitor the number of occurrences. Some examples might be meteorites or lightning strikes. When things happen very fast and there is not enough time to mark down an event on paper, this project allows the reader to just push a button and record these events.

Science

If there is a need to count events to understand probability and likelihood of scientific data.

Technology/Engineering

Using the Arduino and a pushbutton switch.

Mathematics

Aspects of statistics can be utilized to understand likelihood of data of event occurrence.

The parts needed are
  • Arduino Uno 3

  • Pushbutton switch

  • 10K Ω resistor

  • Miscellaneous wires, proto-board, and terminal strips

  • Old-style 35 mm file canister to hold the remote switch

The right side of Figure 4-9 shows the inside of the old-style 35 mm film canister with the pushbutton mounted there. The cap is fastened to the board and then a notch cut out for the wires to pass through. This provides a nice grip to hold so the observer can focus on watching for events. The left side of Figure 4-9 shows the switch connected to the Arduino.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig9_HTML.jpg
Figure 4-9

Using the Arduino to Capture Count of Events

Figure 4-10 is the schematic showing how to connect the pushbutton switch to the Arduino.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig10_HTML.jpg
Figure 4-10

Schematic of Arduino Counting Events

Listing 4-5 is the code, and it is somewhat basic but captures the number of times a switch has been pushed, after which it sends that info over the serial port to the computer.
//SN105_Counts_Nov_2019
//Code developed by Paul and David Bradt
int counter = 0;
//Program uses Switch to set high state and
//increments count holds high until it changes to low state.
//Sends count increment over serial line
bool switchOn = false;
void setup() {
  Serial.begin(9600);
  Serial.println("This is SN105 counts events");
}
void loop() {
  //The next step increments the counter every
  //time switch changes
  if(digitalRead(7) == HIGH and switchOn == false){
     Serial.print("Switch has been turned on for ");
     Serial.print(counter);
     Serial.print(" times.");
     Serial.println("   ");
     counter = counter + 1;
     switchOn = true;
  //Delay ensures switch does not bounce
     delay(500);
 }
  //The next step determines switch state
 if(digitalRead(7) == LOW and switchOn == true){
    switchOn = false;
 }
}
Listing 4-5

Arduino SN105 Capturing Counts Code

Some example data is captured and shown in Figure 4-11 using the serial port and the time stamp activated.
../images/488244_1_En_4_Chapter/488244_1_En_4_Fig11_HTML.jpg
Figure 4-11

Screen Capture of Data from Arduino Count of Events

How could this setup be utilized? Assume there are two similar events where the counts of occurrences need to be analyzed, for example, the number of cars that appear to be traveling over the speed limit on a road. In one time slot from 9 to 10 AM, there are 11 cars found speeding, but there are only 5 speeding between 7 and 8 PM. This data is collected for the rest of the week and is listed in Table 4-2. The street is not in a school zone, but it is close to a school. This analysis could help with the comparison of how drivers react to the knowledge that they are driving near a school zone when a reduction in speed is required.
Table 4-2

Example Capturing Count Data

 

Cars Speeding

Day of the Week

9–10 AM

7–8 PM

Mon

11

5

Tues

8

3

Wed

5

6

Thrs

12

2

Fri

14

8

Avg

10

4.8

Std Dev

4.85

2.64

The preceding data indicates a very high standard deviation, so we may need more data to see if there is a better correlation or it may just vary that high and be somewhat unpredictable.

Counts Recap

This tool can be used to capture several different types of events. If the switch is not the best input device, there are other types of sensors like infrared sensors that could be used to track fast events. The data can then be analyzed using statistics of event occurrence, and this type of analysis is key to many scientific studies.

Summary

The projects in this chapter provide tools to measure and analyze some key scientific parameters. These include air temperature buoyancy which is a primary driver in the weather of the world. The next project shows how to measure pressure and how area impacts this value given the same force. This is key to distributing load and a very important factor in many engineering projects. Finally, the last project provides a tool to quickly capture event occurrence and can be used to accurately obtain the number of events of interest for statistical analysis.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.137.220.120