Skip to main content

What is Acid Rain - Definition, Causes, Effects of Acid Rain

Acid Rain - Definition, Causes, Effects of Acid Rain


What is Acid Rain?

Acid rain, as the name suggests, can be said as the precipitation of acid in the form of rain in the simplest way. When atmospheric pollutants like nitrogen and sulphur oxides react with rainwater and fall with the rain, this results in acid rain.

Acid Rain
(Credits: Google Images)

Definition of Acid Rain

Acid rain is made up of highly acidic water droplets due to emissions into the air, more specifically disproportionate levels of sulphur and nitrogen emitted by vehicles and manufacturing processes. It is often called acid rain as this concept contains many types of acid precipitation.

Acid deposition takes place in two ways: wet and dry. Wet deposition is any form of precipitation that removes acids from the atmosphere and places them on the earth's surface. In the absence of precipitation, the dry deposition of polluting particles and gases adheres to the ground through dust and smoke.

Causes of Acid Rain

The causes of acid rain are the sulphur and nitrogen particles that mix with the wet components of the rain. The sulphur and nitrogen particles that mix with the water are found in two ways, either by man, that is, as the emissions that industries emit, or by natural causes, such as lightning in the atmosphere that releases nitrogen oxides. and volcanic eruptions that release sulphur oxide.

According to the Royal Society of Chemistry, which considers him the "father of acid rain", the word acid rain was invented in 1852 by the Scottish chemist Robert Angus Smith. Smith settled on the word while studying the chemistry of rainwater near the industrial cities of England and Scotland.

The regular clean rain we experience, although not clean, means water and carbon dioxide react together to form weak carbonic acid which essentially by itself is not extremely harmful. The reaction that occurs is:

H2O (l) + CO2 (g) ⇌ H2CO3 (aq)

The pH value of regular rainwater is around 5.7, giving it an acidic nature. The oxides of nitrogen and sulphur are blown away by the wind along with the dust particles. They settle on the earth’s surface after coming down in the form of precipitation. Acid rain is essentially a by-product of human activities which emit oxides of nitrogen and sulphur into the atmosphere.  Examples – the burning of fossil fuels, and unethical waste emission disposal techniques.

The pH value of regular rainwater is around 5.7, which gives it an acidic nature. Nitrogen and sulphur oxides are carried by the wind along with dust particles. They settle on the earth's surface after falling as precipitation. Acid rain is essentially a byproduct of human activities that release nitrogen and sulphur oxides into the atmosphere. Example: burning of fossil fuels, unethical waste emission disposal techniques.

Sulfur dioxide and nitrogen dioxide are oxidized and then react with water resulting in the formation of sulphuric acid and nitric acid, respectively. The following reaction will clarify the acid formation reaction:

2SO2 (g) + O2 (g) + 2H2O (l) → 2H2SO4 (aq)
4NO2 (g) + O2 (g) + 2H2O (l) → 4HNO3 (aq)

Effects of Acid Rain
  • Acid rain is very harmful to agriculture, plants and animals. It removes all the nutrients necessary for plant growth and survival. Acid rain affects agriculture in the way it alters the composition of the soil.
  • Causes respiratory problems in animals and humans.
  • When acid rain falls and flows into rivers and ponds, it affects the aquatic ecosystem. It alters the chemical composition of the water, to a form that is actually detrimental for the aquatic ecosystem to survive and causes water pollution.
  • Acid rain also causes corrosion of water pipes, resulting in the leaching of heavy metals such as iron, lead, and copper into drinking water.
  • Damage buildings and monuments made of stones and metals.


FAQ's

What is acid rain and how is it produced?

Acid rain is caused by a chemical reaction that begins when compounds such as sulphur dioxide and nitrogen oxides are released into the air. These substances can rise very high into the atmosphere, where they mix and react with water, oxygen, and other chemicals to form more acidic pollutants called acid rain.

What are the effects of acid rain?

The ecological consequences of acid rain are seen most strongly in marine habitats, such as streams, lakes, and swamps (marshes), where fish and other wildlife can be toxic. Acid rainwater can leach aluminium from soil clay particles as it flows through the soil and then floods streams and lakes.

What will happen if we don’t stop acid rain?

Sulphur dioxide and nitrogen oxide are the main chemicals in acid rain. It can also influence humans as the acid gets into fruits, vegetables and animals. In other words, we can get very sick if the acid rain doesn't stop and we eat that stuff. In general, acid rain affects men, but not directly.

What is acid rain? What are its harmful effects?

Acid rain has been shown to have detrimental effects on trees, freshwaters and soils, destroys insects and aquatic life-forms, causes paint to peel, corrodes steel structures such as bridges, and erodes stone buildings and sculptures. as well as impacts on human health.

What are three ways to reduce acid rain?

Alternative energy sources, such as solar and wind power, should be used. Renewable energy sources are helping to reduce acid rain as they produce far fewer emissions. Other sources of electricity also exist, such as nuclear power, hydropower, and geothermal power. Among these, the most extensive use is between nuclear and hydroelectric power.


Comments

Popular posts from this blog

four methods overload these methods

Write a program in java which has the following classes and methods:  Class : OverloadDemo Methods : test() Declare four methods with the same name “test()” and overload these methods class OverloadDemo{  public void test(){  System.out.println("It's a test method for null.");  }  public void test(int n){  System.out.println("It's a test method for displaying the int value "+n);  }  public void test(double d){  System.out.println("It's a test method for displaying the double value "+d);  }  public void test(String s){  System.out.println("It's a test method for displaying the String "+s);  }  }  class overClass{  public static void main(String[] args) {  OverloadDemo old = new OverloadDemo();  old.test();  old.test(12);  old.test(25.35);  old.test("Subham");  }  } OUTPUT: It's a test method for null. It's a test method for displaying the int value 12 It's a test method for ...

DBMS Keys

DBMS Keys KEYS in DBMS is an attribute or set of attributes which helps you to identify a row (tuple) uniquely in a relation(table). They allow you to find the relation between two tables. Keys help you uniquely identify a row in a table by a combination of one or more columns in that table. Key is also helpful for finding unique record or row from the table. Database key is also helpful for finding unique record or row from the table. Example: Employee ID FirstName LastName 11 Andrew Johnson 22 Tom Wood 33 Alex Hale In the above-given example, employee ID is a primary key because it uniquely identifies an employee record. In this table, no other employee can have the same employee ID. Here are some reasons for using sql key in the DBMS system. Keys help you to identify any row of data in a table. In a real-world application, a table could contain thousands of records. Moreover, the records could be duplicated. Keys in RDBMS ensure that you can uniquely identify a table record despite ...

Computer Short Questions

Computer Short Questions & Answers: 1. What is any part of the computer that you can physically touch? – Hardware 2. Which generation of computers is still under development? – Fifth 3. What is the most common storage device for the personal computer? – Hard Disk Drive 4. Which key is used in combination with another key to perform a specific task? – Control 5. What is the pattern of printed lines on most products? – Barcodes 6. To make the number pad act as a directional arrow, we press which key? – Shift 7. Which devices let the computer communicate with you? – Input 8. What is the most frequently used piece of hardware for inputting data? – Hardware 9. What is the place where the computer stores programs and data? – Storage unit 10. What is the process of dividing the disk into tracks and sectors? – Formatting 11. What is the space in your computer that loads’ and works with data? – RAM memory 12. What is the storage which stores or retains data after power off? – Non-volatile s...