One source of SO2 is burning coal, used in homes, factories, and trains. How much sulfur dioxide is in the air in a given place is determined by how much SO2 is being produced, and how the wind blows the SO2 in and out of the area. For example: suppose a town has a smokestack on the west edge of the city and the wind almost always comes from the east. The sulfur dioxide gets blown out of the town. But if the wind comes from the west, the SO2 moves into the town and pollutes the center of town, even if the center of town doesn't produce any SO2. Similarly, if the wind is only a slight breeze, the pollutant will not move as fast or as much as it would with a strong wind. Towns can figure out how much of a pollutant is in a particular area by figuring out how much is produced where, and then where it moves. To determine how much pollution is created by different areas, a town will present data in a square grid of the city, with emissions source concentrations in each grid cell.
Environmental standards give a maximum concentration for SO2 in a three-hour average, and each city must stay within these restrictions. The average three hour concentration is calculated by:
The average hourly concentration of a pollutant is determined by
where Cij is the concentration in any grid square, and Qij is the source strength for the grid square. The variables i and j denote all the places for the squares, just like a map index that says a place is in square H4 on the map.
A concentration (Cij) grid is defined by
for the receptor square, and
for all other squares.
where f is the frequency of wind coming from that direction, u is the windspeed, x is the length of a grid square side, i is the upwind grid squares, and a and b are constants determined by the meteorological conditions.
Grinders Switch is a small railroad town that uses coal as its main source of energy. The state enviornmental authority has required the town to make an estimate of the maximum posible three hour average sulfur dioxide concentration caused by the town's use of coal in trains, homes, and the electric plant in the center of town. The town's estimated concentration must be below the National Ambient Air Quality Standard of 1300 micrograms per cubic meter.
It has been determined that the the worst meteorological conditions are a type called Pasquill D, where a = 0.15 and b = 0.75, with a windspeed (u) of 5 m/s. The town's sulfur production is at a highest in the fall, when the power plant is generating at the highest loads, and the trains are being used the most. The wind frequencies for this time of year are as follows:
N | NNE | NE | ENE | E | ESE | SE | SSE |
0.02 | 0.02 | 0.03 | 0.05 | 0.06 | 0.07 | 0.05 | 0.04 |
S | SSW | SW | WSW | W | WNW | NW | NNW |
0.03 | 0.02 | 0.02 | 0.08 | 0.23 | 0.20 | 0.05 | 0.03 |
The concentrations of produced pollutants have already been determined and put into a grid of the town's area. Each grid cell represents an square area of the town 1000 meters on each side. Because it is a 5x5 grid, i=2 in your Cij grid calculations (2 upwind squares from receptor square). The source strength in the hourly strength in micrograms/m2/sec
To work with the initial data, you must first reconcile the polar data of the wind frequencies to a grid like the Qij data. To do this, make a grid of (f/u)ij. To see which frequency belongs where in the grid, simply make a 5x5 grid and draw over it the polar lines coming out from the receptor square. The cells directly north receive the North frequency, the cells north east get the NE frequency, etc. Where multiple lines exist in a single cell, add up all the frequencies. For example, the cell directly above the receptor square is a sum of NNW, N, and NNE. The receptor square is the sum of all frequencies divided by the wind speed, or simply 1/u.
Now you have a grid of (f/u). Use this data and the equations in the background reading to make a Cij grid. Then, multiply each cell of the Cij grid with the corresponding cell of the given Qij grid. This is not matrix multiplication! This new grid is CijQij. Using this grid and the information in the background reading, determine the hourly and the three hour concentration of SO2 in Grinders Switch. Finally, determine whether it is within the National Ambient Air Quality Standard of a 3-h average SO2 concentration.