However, we still need to do this analysis given a particular atmospheric stability class (or can test across all). Let’s assume we’re in stability class C.
we have \[\sigma_y = 104x^{0.894}, \qquad \sigma_z = 61x^{0.911}.\]
Calculating Transmission Factors
# Δx, Δy should be in mfunctiontransmission_factor(Δx, Δy, u, H)if Δx <=0# check if source is upwind of receptor tf =0.0# ensure this is a Floatelse σy =104* (Δx /1000)^0.894 σz =61* (Δx /1000)^0.911 tf_coef =1/(pi* u * σy * σz) tf = tf_coef *exp(-0.5* (Δy / σy)^2) *exp(-0.5* (H / σz)^2)endreturn tfend