In the previous tutorials, we learnt to answer the following questions:
How much is the pollution?
Where is the pollution? and
When is the pollution?
But it is also important that we know the sources of the pollution in a city. Only by knowing sources that we can think of reducing ways to reduce pollution. We know about sources of pollution by conducting source apportionment studies.
The source apportionment studies are not easy to conduct. They require a lot of skilled personnel for monitoring, data modeling, laboratory facilities and financial support. There are a few institutions that have the wherewithal to conduct source apportionment studies. There are two ways in which source apportionment can be done:
6.1 Top-down: Receptor Modeling (RM) based source apportionment
SA_topdown.png
The World Health Organisation (W.H.O) collected source apportionment studies performed in various cities across the world between 1990-2014. This is a good dataset to explore source apportionment.
We can also calculate the contributions of each source to PM2.5 in µg/m3 by multiplying the total PM2.5 concentration with source percentage.
pm25 =float(Beijing_2010_SA['PM2.5 µgm-3 *'].values[0])print(f"Beijing's annual PM2.5 concentration in 2010 is {pm25} µg/m3 \n Of which, the contribution of:")for source, contribution inzip(sources,source_contributions):print(f"{source[:-1]} is {round(contribution*pm25/100,2)} µg/m3")
Beijing's annual PM2.5 concentration in 2010 is 55.0 µg/m3
Of which, the contribution of:
DUST is 5.72 µg/m3
TRAFFIC is 16.34 µg/m3
INDUSTRY is 12.1 µg/m3
BIOM. BURN./RES. is 6.16 µg/m3
OTHER (unspecified-human origin) is 14.68 µg/m3
We know that W.H.O annual standard of PM2.5 is 5 µg/m3. Thus, the least contributive source DUST alone was responsible in Beijing to cross the W.H.O standard. This gives us some insight on where to focus in reducing pollution.
6.2 Bottom-up: Emissions based Source Apportionment
SA_bottomup.png
Another way to estimate source contributions is from sector specific emissions in a city. The advantage of using Emissions based approach is that we can forecast emissions of a city and thus forecast future sources of air pollution.
UrbanEmissions.Info performed emissions based PM2.5 source apportionment studies for various cities in India as part of the Air Pollution Knowledge Assessment (APnA) City Program. You can see the source apportionment pies of these cities, here: Link
We can note that this study identified more sources than the previous one: Transport, Residential, Dust, Waste, Diesel Genset, Brick Kiln, Sea Salt and External.
When we have source apportionment data, we can also build various scenarios of air pollution. We will build a scenario for the city of Mumbai. You can download the APnA leaflet for Mumbai from here: Mumbai APnA 2019.
In 2018, the annual average PM2.5 concentration in Mumbai was 51.5 µg/m3. We can obtain source contributions from the APnA dataset.
We can thus play with various scenarios and see when the city of Mumbai can meet the Air Quality Standards. The above is one such scenario when we can observe that Mumbai’s PM2.5 annual average met NAAQS of 40µg/m³. Ofcourse, if the specified reductions are practical or not is another debate. But with these scenario players we can start thinking about solutions to the air pollution problem
6.3 Summary
In this tutorial, we learnt what is source apportionment and various methods of performing source apportionment studies. We explored the database on source apportionment studies and worked with Beijing’s data to create a source apportionment pie. We then built a scenario player using Mumbai’s emission based source apportionment study and saw how Mumbai can reach NAAQS standard of 40 µg/m³.