uan: (fixes #1112) Fix Thorp attenuation formula (fix due to donghuiyong)

This commit is contained in:
Federico Guerra
2024-08-04 15:59:22 +02:00
committed by Tom Henderson
parent 4d11f2b3e1
commit 593c5401bf
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ been tested on Linux. As of this release, the latest known version to work with
- (wifi) Avoid firing WifiMac::DroppedMpdu trace twice in some cases
- (wifi) Fix assignment of AIDs to non-AP STAs/MLDs to ensure they are unique
- (wifi) Fix starting Sequence Number when ADDBA Response arrives after timeout
- (uan) !2087 - Fix Thorp attenuation formula
Release 3.42
------------

View File

@@ -93,7 +93,7 @@ UanPropModelThorp::GetAttenDbKm(double freqKhz)
}
else
{
atten = 0.002 + 0.11 * (freqKhz / (1 + freqKhz)) + 0.011 * freqKhz;
atten = 0.002 + 0.11 * (fsq / (1 + fsq)) + 0.011 * fsq;
}
return atten;