Skip to content

Max droplet volume calculation misses a factor of \pi

In the regionSizeDistribution function object Here,the calculation of the max droplet diameter misses a factor of \pi.

Instead of
maxDropletVol = 1.0/6.0*pow3(maxDiam_); it should be something like maxDropletVol = 1.0/6.0*mathematical::pi*pow3(maxDiam_);