uan: (fixes #1112) Fix Thorp attenuation formula (fix due to donghuiyong)
This commit is contained in:
committed by
Tom Henderson
parent
4d11f2b3e1
commit
593c5401bf
@@ -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
|
||||
------------
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user