amc2021:groupl:report:start
Differences
This shows you the differences between two versions of the page.
amc2021:groupl:report:start [2021/09/06 16:32] – removed kshama001 | amc2021:groupl:report:start [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Air Quality and Noise Levels in Different Parts of Kamp-Lintfort City ====== | ||
+ | |||
+ | ===== 1. Introduction ===== | ||
+ | |||
+ | |||
+ | The German Environment Agency (UBA) and the European Environment Agency (EEA) reported that tens of thousands of people die because of high air pollution of early deaths and Year of Life Lost due to premature mortality. Because of its coal mining industry, North Rhine-Westphalia (NRW) has a long history of air pollution. Additionally, | ||
+ | Air quality is essential when deciding where to live and pursue a life with good living standards. In particular, serious health issues are caused by air pollution, such as neurological, | ||
+ | This project aims to measure mainly the concentrations of carbon dioxide (CO< | ||
+ | |||
+ | ===== 2. Materials Description ===== | ||
+ | |||
+ | *1x Arduino Uno R3\\ | ||
+ | *1x MQ-135 gas sensor\\ | ||
+ | *1x LM-393 sound sensor\\ | ||
+ | *1x LCD display with I2C adapter (16 chars x 2 lines)\\ | ||
+ | *2xLED lights\\ | ||
+ | *1x220 Ohm Resistors\\ | ||
+ | *1x10k Ohm Resistor\\ | ||
+ | *Jumper/ connecting wires\\ | ||
+ | *1x White breadboard\\ | ||
+ | |||
+ | === 2.1 Arduino Uno R3 === | ||
+ | |||
+ | The Arduino Uno microcontroller board originated from the ATmega328P. It has 14 digital input/ | ||
+ | |||
+ | {{ : | ||
+ | //Figure 1: Arduino Uno R3 microcontroller. Source: The most complete starter kit UNO R3 Project from Rhein-Waal Hochschule.// | ||
+ | |||
+ | |||
+ | ==== 2.2 MQ135 Sensor ==== | ||
+ | |||
+ | |||
+ | https:// | ||
+ | https:// | ||
+ | |||
+ | MQ135 sensors are commonly used in air quality control equipment for buildings/ | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | //Figure 2: MQ135 Air Quality Sensor// | ||
+ | |||
+ | |||
+ | **Specifications: | ||
+ | MQ135 senses the air quality via a chemical-sensitive element covered by a steel exoskeleton. This element is subjected to a preheating current, where the gases to be measured later get ionized and absorbed. The preheating time required is around 12-24 hours. After absorption of these gases, the resistance of the sensing substance changes, which in turn changes the amount of current going out. When the gas concentrations transcend specific safety limit values, an LED light is illuminated as an alarm.\\ | ||
+ | The wire connections in the circuit are as followed:\\ | ||
+ | *Arduino Analog Output pin A0 with the MQ135 Sensor Analog Output\\ | ||
+ | *Arduino 5V pin with the MQ135 Sensor Vcc\\ | ||
+ | *Arduino Ground (GND) pin with the MQ135 sensor Ground (GND)\\ | ||
+ | |||
+ | ==== 2.3 LM393 Sensor ==== | ||
+ | |||
+ | |||
+ | https:// | ||
+ | https:// | ||
+ | https:// | ||
+ | |||
+ | |||
+ | A sound sensor with an LM393 comparator is used to measure sound intensity in the three selected areas in Kamp-Lintfort in this project. The sensor consists mainly of a microphone, a voltage comparator IC LM393, a sensitivity adjustment potentiometer, | ||
+ | The microphone, a capacitor-based electronic component, detects the sound wave and sends electrical pulses to the circuit board. The potentiometer is used to adjust the sensor' | ||
+ | **Specifications: | ||
+ | |||
+ | {{ : | ||
+ | //Figure 3: LM393 Microphone Sound Sensor// | ||
+ | |||
+ | The wire connections in the circuit are as followed:\\ | ||
+ | *Arduino Digital Output pin 12 with the LM393 Sensor Digital Output\\ | ||
+ | *Arduino 5V pin with the LM393 Sensor Vcc\\ | ||
+ | *Arduino Ground (GND) pin with the LM393 sensor Ground (GND)\\ | ||
+ | |||
+ | ==== 2.4 LCD Screen Paired with I2C ==== | ||
+ | |||
+ | |||
+ | https:// | ||
+ | http:// | ||
+ | |||
+ | {{ : | ||
+ | // Figure 4: Liquid Crystal Display (LCD) screen (16 x 2) paired with I2C// | ||
+ | |||
+ | Liquid Crystal Display is a screen used to display values and data when working with Arduino IDE 1.8.15. It is composed of a liquid crystal inserted between 2 glass pieces, | ||
+ | The I2C or Inter-Integrated circuits make it easier to connect multiple “slaves” to a single master. Instead of utilizing numerous pins between the Arduino Uno and the LCD, only the following I2C pins are connected with the Arduino Uno.\\ | ||
+ | *SDA pins\\ | ||
+ | *SCL pins\\ | ||
+ | *GND\\ | ||
+ | *VCC to a 5V output in the Arduino Uno\\ | ||
+ | Meanwhile, the LCD should ideally be soldered to the I2C. But in this project, the LCD and I2C were connected directly on the breadboard.\\ | ||
+ | |||
+ | ===== 3. Setup Diagram ===== | ||
+ | |||
+ | |||
+ | After testing each sensor alone, they are all set up together with the help of an Arduino white breadboard. The breadboard is powered by a 5V voltage supply on the positive red line, whereas the ground is the negative blue line. Since more than the pins provided by the Arduino microcontroller board were needed to suffice sensors, the LCD and its adapter, and alarm systems (with the LEDs and the buzzer), The white breadboard is used. For better visualization, | ||
+ | |||
+ | {{: amc2021: | ||
+ | //Figure 5: Circuit Diagram Schematic of the Connections between the sensors MQ135 and LM393.// | ||
+ | |||
+ | A tutorial explaining the circuit is also available here = [[amc2021: | ||
+ | | ||
+ | ===== 4. Software ===== | ||
+ | |||
+ | |||
+ | https:// | ||
+ | https:// | ||
+ | https:// | ||
+ | |||
+ | |||
+ | ===== Code ===== | ||
+ | |||
+ | ===Sound=== | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | Calibration and Testing: | ||
+ | |||
+ | The sensor' | ||
+ | First, the digital output of the sound sensor is checked directly on the serial monitor, and the sensitivity of the sensor is adjusted to a reasonable level (see figure 6). | ||
+ | | ||
+ | {{ : | ||
+ | //Figure 6: Serial Plotter: Adjustment of the sensor sensitivity using the potentiometer// | ||
+ | |||
+ | Second, to get the information about the intensity of the sound, we introduced a sampling time (SAMPLE_TIME) into the loop void of the code. The code will sum up the number of times the sensor' | ||
+ | |||
+ | {{ : | ||
+ | //Figure 7: Serial Plotter: “sampleBufferValue” as a proxy to the intensity of sound detected by the LM393 for the case of vacuum cleaner as a source of sound.// | ||
+ | |||
+ | |||
+ | Figure 7 shows an example of the Serial Plotter output for the Vacuum cleaner case as a source of continuous sound and detected by the digital sensor LM393.\\ | ||
+ | Finally, to obtain a reasonable calibration of our sound sensor, we use an application called " | ||
+ | |||
+ | {{ : | ||
+ | The four measured points in the table allow extracting the two fitting parameters through linear regression using [[amc2021: | ||
+ | |||
+ | The equation derived from the plotted curve: y = 0.67x + 30.223 \\ | ||
+ | |||
+ | The threshold is set to be 90 dB over the sampling time of 10s. Anything above 90 dB is considered noisy, and anything below 90 dB is considered acceptable.\\ | ||
+ | |||
+ | A detailed explanation of the code can be found as a video tutorial here = [[amc2021: | ||
+ | |||
+ | The arduino code itself can be found here = [[amc2021: | ||
+ | |||
+ | |||
+ | === Air === | ||
+ | |||
+ | For air quality detections, carbon dioxide gas concentration was mainly measured using the MQ-135 sensor. The sensor' | ||
+ | |||
+ | As the output device, an LED bulb and an LCD screen are connected to the microcontroller. To glow when the CO< | ||
+ | |||
+ | The MQ-135 sensor detects the air quality and does not differentiate between the types of gases in the air. So to be able to detect CO< | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | //Figure 8: Calibaration graph for Mq-135// | ||
+ | |||
+ | We can conclude from this graph and several other reports that the parameters //a// and //b// values for CO< | ||
+ | |||
+ | A detailed explanation of the code can be found as a video tutorial here = [[amc2021: | ||
+ | |||
+ | The arduino code itself can be found here = [[amc2021: | ||
+ | |||
+ | ==== Additional Libraries required ==== | ||
+ | |||
+ | |||
+ | * The [[amc2021: | ||
+ | * LiquidCrystal_I2C library is uploaded to communicate with the LCD screen. | ||
+ | |||
+ | ===== 5. Tests and Results ===== | ||
+ | |||
+ | A detailed explanation of the location and a glimpse of the test results taken can be seen [[amc2021: | ||
+ | |||
+ | ==== 1. Meisenweg, Kamp-Lintfort (Temperature = 22°C, Humidity = 20%) ==== | ||
+ | |||
+ | |||
+ | At 19:00, the measurement is taken with open windows in a decently calm, clean residential neighborhood.\\ | ||
+ | * **Using the MQ135 Air Quality Sensor: | ||
+ | |||
+ | First the [[amc2021: | ||
+ | Using [[amc2021: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | //Figure 9: Screenshot of sample CO< | ||
+ | |||
+ | * **Using the LM393 Sound Sensor: | ||
+ | |||
+ | The values were fed into the [[amc2021: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | //Figure 10: Screenshot of the sound intensity level in decibel using [[amc2021: | ||
+ | |||
+ | |||
+ | ==== 2. Moerserstraße, | ||
+ | |||
+ | |||
+ | At 15:40, the measurement is taken on the balcony next to the main road with a lot of traffic. | ||
+ | |||
+ | * **Using the MQ135 Air Quality Sensor:** | ||
+ | |||
+ | First the [[amc2021: | ||
+ | Using [[amc2021: | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | //Figure 11: Screenshot of sample CO2 levels in ppm using Python. Location: Moerserstraße, | ||
+ | |||
+ | |||
+ | * **Using the LM393 Sound Sensor**: | ||
+ | |||
+ | The values were fed into the [[amc2021: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | //Figure 12: | ||
+ | |||
+ | ==== 3. Kamperdickstraße, | ||
+ | |||
+ | |||
+ | At 13:30, the measurement is taken on the balcony next to the main road and Postbank with some traffic. | ||
+ | |||
+ | * **Using the MQ135 Air Quality Sensor: | ||
+ | |||
+ | First the [[amc2021: | ||
+ | Using [[amc2021: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | //Figure 13: Screenshot of sample CO2 levels in ppm using Python. Location: Kamperdickstraße, | ||
+ | |||
+ | * **Using the LM393 Sound Sensor: | ||
+ | |||
+ | The values were fed into the [[amc2021: | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | |||
+ | //Figure 14: Screenshot of the sound intensity level in decibel using [[amc2021: | ||
+ | |||
+ | |||
+ | ===== 6. Discussion and Conclusion ===== | ||
+ | |||
+ | The LM393 sensor narrowly detected enough noise in a minimal range at one particular moment. Since it had only digital outputs (zeros or ones), selecting a specific sample time interval and collecting the digital results over that period helped obtain numerical readings to compare them between the three different locations. Additionally, | ||
+ | Considering the precision limitation, both Meisenweg and Kamperdickstraße showed the lowest sound intensity levels with only 30 dB detected over the time interval. Moerserstraße came second with around 54 dB sound intensity. However, all locations checked the criteria of having noise below the threshold value (90 dB), which means the three environments are suitable for the student' | ||
+ | The MQ135 sensor was able to produce analog values in the three locations, giving more valid values that continuously can vary over time. With the help of the MQ135 library, CO< | ||
+ | For a clearer comparison, we used [[amc2021: | ||
+ | |||
+ | Table 2: The mean measurement-to-standard clean air ratio at the three locations: | ||
+ | |||
+ | |||
+ | | Location | ||
+ | | Mean[ppm] | ||
+ | | Ratio(Mean/ | ||
+ | |||
+ | From table 2, the closest condition to the standard clean air condition is location 2, having the nearest value to 1, whereas the furthest would be location 1, having the furthest ratio from 1. Nevertheless, | ||
+ | |||
+ | **Limitations to the experiment: | ||
+ | |||
+ | 1. The sensor LM393 was not as sensitive to sounds as expected. An example is seen in location 2, albeit being the busiest street, the LM393 could only detect loud sounds like a truck' | ||
+ | |||
+ | 2. CO< | ||
+ | Nevertheless, | ||
+ | |||
+ | 3. The MQ-135 needed to heat up for over 24 hours to get a stable value. Due to the time limitations of testing in three different locations, the time to heat up was not achieved. So only a few hours of heating up could possibly cause the sensor to get odd values. | ||
+ | |||
+ | 4. Test results should have been taken simultaneously to overcome the limitation of difference in temperature and humidity conditions. | ||
+ | |||
+ | |||
+ | |||
+ | ===== 7. References ===== | ||
+ | |||
+ | -L. Petry, H. Herold, G. Meinel, T. Meiers , I. Müller , E. Kalusche , T. Erbertseder , H. Taubenböck 2, E. Zaunseder, V. Srinivasan, A. Osman, B. Weber, S. Jäger, C. Mayer, C. Gengenbach, “AIR QUALITY MONITORING AND DATA MANAGEMENT IN GERMANY – STATUS QUO AND SUGGESTIONS FOR IMPROVEMENT”, | ||
+ | -https:// | ||
+ | -https:// | ||
+ | -https:// | ||
+ | -https:// | ||
+ | -https:// | ||
+ | -https:// | ||
+ | -http:// | ||
+ | -https:// | ||
+ | -https:// | ||
+ | | ||
+ | Back to [[amc2021: | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
amc2021/groupl/report/start.1630938727.txt.gz · Last modified: 2023/01/05 14:38 (external edit)