Aerosol Particle Diffusion Coefficient

Anshuman Lall
Predmatic
Published in
1 min readDec 26, 2020

--

Before pursuing a career in data science, I was an aerosol researcher (mainly computational research). Although I entered a new world of data science, I found that the concepts (such as random numbers, distributions, modeling) and the best practices of scientific computing are the same across two disciplines. I picked up Python because it is open source (free) and widely used in the data science industry. Thus I thought of compiling a set of Python code that might give a headstart to future aerosol researchers.

Below is a code of computing particle diffusion coefficient as a function of particle diameter. The theory is taken from my Ph.D. advisor’s book: “Smoke, Dust, and Haze: Fundamentals of Aerosol Dynamics” (SDH) by Sheldon K. Friedlander. The output of this code is comparable to SDH Table 2.1 on page 34.

In addition to the diffusion coefficient, other parameters that are calculated are:

  • Slip correction factor
  • Friction coefficient
  • Relaxation time

Further Readings

Please free to reach out to me if you have any questions, suggestions, code requests, or if you found any errors in the above code. I will be happy to provide (free) consultation on aerosol computational research.

Contact: https://www.linkedin.com/in/anshumanlall/

--

--