Hello, I have a question for the code in smallScaleFading/TR38901Container.
As for the calculation of parameters DS/ASD/ASA/ZSD/ZSA, function 1+log10(fc) is used in smallScaleFading/TR38901Container. However, I have checked ‘3GPP TR 38.901 version 17.0.0 Release 17’, it uses function log10(1+fc). Is it a mistake in smallScaleFading/TR38901Container?
Hello,
thank you for putting our attention to it! It is indeed a mistake - log10(1+fc) is correct.
Please replace all 24 occurrences of 1+log10(fc)
in the file smallScaleFading/TR38901Container
with log10(1+fc)
if you use release v1.4.
Hello, thank you very much for your attention and reply.