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

Windows Key Shortcuts

List of common keyboard shortcuts that can be used with the Windows key: (Image by - Sharma Guides | Subham232330) 1. Windows Key + D: Show the Desktop 2. Windows Key + E: Open File Explorer 3. Windows Key + I: Open Settings 4. Windows Key + L: Lock the computer 5. Windows Key + R: Open the Run Dialog 6. Windows Key + S: Open the search bar 7. Windows Key + Tab: Open Task View 8. Windows Key + Ctrl + D: Create a new virtual desktop 9. Windows Key + Ctrl + Left or Right arrow: Switch between virtual desktops 10. Windows Key + M: Minimize all windows 11. Windows Key + Shift + M: Undo minimize all windows 12. Windows Key + Up Arrow: Maximize the current window 13. Windows Key + Down Arrow: Minimize the current window 14. Windows Key + Right Arrow: Snap the current window to the right 15. Windows Key + Left Arrow: Snap the current window to the left 16. Windows Key + P: Project to a second screen 17. Windows Key + Home: Minimize all but the active window 18. Windows Key + ...

Indexing in DBMS

Indexing in DBMS Indexing is used to optimize the performance of a database by minimizing the number of disk accesses required when a query is processed.  The index is a type of data structure. It is used to locate and access the data in a database table quickly. Index structure: Indexes can be created using some database columns. The first column of the database is the search key that contains a copy of the primary key or candidate key of the table. The values of the primary key are stored in sorted order so that the corresponding data can be accessed easily.  The second column of the database is the data reference. It contains a set of pointers holding the address of the disk block where the value of the particular key can be found. Indexing Methods Ordered indices The indices are usually sorted to make searching faster. The indices which are sorted are known as ordered indices. Example: Suppose we have an employee table with thousands of record and each of which is 10 byte...

Normalization Types in DBMS

Normalization Types in DBMS First Normal Form (1NF) A relation will be 1NF if it contains an atomic value.  It states that an attribute of a table cannot hold multiple values. It must hold only single-valued attribute. First normal form disallows the multi-valued attribute, composite attribute, and their combinations. Example: Relation EMPLOYEE is not in 1NF because of multi-valued attribute EMP_PHONE. EMPLOYEE table: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385, 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389, 8589830302 Punjab The decomposition of the EMPLOYEE table into 1NF has been shown below: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385 UP 14 John 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389 Punjab 12 Sam 8589830302 Punjab Second Normal Form (2NF) In the 2NF, relational must be in 1NF.  In the second normal form, all non-key attributes are fully functional dependent on the primary key  Example: Let's assume, a school can ...