Reference ID: MET-97CF | Process Engineering Reference Sheets Calculation Guide
Introduction & Context
The mass-average diameter, dm, is a single-number descriptor of a particulate system that weights each size class by its mass fraction.
It is the correct mean to use whenever the mass of particles in a given size interval is the primary experimental observation—by far the most common situation in process engineering because sieve analysis, laser-diffraction (mass optical model), and impactor devices all return mass-based distributions.
Typical unit operations that depend on dm include:
Comminution energy estimation (Bond, Kick, Rittinger)
Fluid–particle heat- and mass-transfer area evaluation
Solids classification and elutriation efficiency
Compaction and tableting endpoint determination in pharmaceuticals
Methodology & Formulas
From discrete sieve data, the algorithmic flow is identical to the supplied Python code; the equations transcribed algebraically are:
The last denominator is kept numerically stable by clamping to 1 × 10−9 if the sum of fractions rounds below zero.
Empirical Run-Time Criteria
Parameter
Symbol
Acceptance Range
Total sample mass on one sieve
mload
≤ 200 g
Sum of calculated mass fractions
Σxi
0.99 … 1.01
Violation of either limit triggers an exception in the automated routine and should be corrected before reporting any calculated dm.
The mass average diameter is generally preferred in industrial applications because it provides a more accurate representation of the total mass distribution within a particulate system. While the number average diameter treats all particles equally, the mass average diameter accounts for the fact that larger particles contribute significantly more to the total mass. This is critical for:
Predicting settling rates in sedimentation tanks.
Calculating heat and mass transfer surface areas.
Optimizing catalyst loading and reactor throughput.
To perform an accurate calculation, you must obtain a representative sample of the material and determine the mass fraction of each size interval. The necessary inputs include:
The mass or weight fraction of particles within specific size ranges.
The mean diameter of each size interval.
The total mass of the sample to ensure normalization of the distribution.
A broad particle size distribution increases the sensitivity of the mass average diameter to the presence of larger particles. In such cases, the mass average diameter will be significantly higher than the number average diameter. When dealing with high polydispersity, engineers should:
Ensure the sampling method captures the full range of particle sizes to avoid skewing the results.
Verify that the measurement technique, such as laser diffraction or sieve analysis, is calibrated for the expected range.
Consider calculating the span of the distribution to complement the mass average diameter value.
Worked Example: Mass Average Diameter of Flour from Sieve Analysis
A process engineer performs a sieve analysis on a flour sample from a milling line to calculate the mass average diameter, a critical parameter for ensuring consistent product quality in baking applications.
Known Input Parameters
Total sample mass, \( m_{\text{total}} \): 100.000 g
Mass fraction for size fraction 1, \( x_1 \): 0.100
Mass fraction for size fraction 2, \( x_2 \): 0.300
Mass fraction for size fraction 3, \( x_3 \): 0.400
Mass fraction for size fraction 4, \( x_4 \): 0.200
Mean diameter for fraction 1, \( d_1 \): 275.000 μm
Mean diameter for fraction 2, \( d_2 \): 225.000 μm
Mean diameter for fraction 3, \( d_3 \): 175.000 μm
Mean diameter for fraction 4, \( d_4 \): 125.000 μm
Sum of all mass fractions, \( \sum x_i \): 1.000
Step-by-Step Calculation
Calculate the weighted product for each size fraction using \( x_i \cdot d_i \).
For fraction 1: \( x_1 \cdot d_1 = 0.100 \cdot 275.000 = 27.500 \)
For fraction 2: \( x_2 \cdot d_2 = 0.300 \cdot 225.000 = 67.500 \)
For fraction 3: \( x_3 \cdot d_3 = 0.400 \cdot 175.000 = 70.000 \)
For fraction 4: \( x_4 \cdot d_4 = 0.200 \cdot 125.000 = 25.000 \)
Sum all weighted products: \( 27.500 + 67.500 + 70.000 + 25.000 = 190.000 \).
Apply the formula for mass average diameter: \( d_m = \frac{\sum (x_i \cdot d_i)}{\sum x_i} \).
Thus, \( d_m = \frac{190.000}{1.000} = 190.000 \).
Final Answer: The mass average diameter of the flour sample is 190.000 μm.
"Un projet n'est jamais trop grand s'il est bien conçu."— André Citroën
"La difficulté attire l'homme de caractère, car c'est en l'étreignant qu'il se réalise."— Charles de Gaulle