MakeMieTable.f95: DO_SIZE_DIST - minor bug with deltaR
Opened this issue · 0 comments
StuartRussant commented
In the subroutine DO_SIZE_DIST in TOOLS/MakeMieTable.f95
I believe there is a mistake where it says:
delta(1) = sqrt( radii(2) * radii(3) ) - radii(1)
It should be:
delta(1) = sqrt( radii(1) * radii(2) ) - radii(1)
This way, the sum of all deltaR is: radii(nsize) - radii(1)
Stuart