Research Article

Effects of Implementing Adaptable Channelization in Wi-Fi Networks

Algorithm 1

Channel width adaptation algorithm.
Require: Channel Width (CW), Modulation, Central Frequency (CF)
 Input = RW; TW
 CW = Get RW; TW
Ensure: Interference < Threshold
Ensure: Throughput > Threshold
 Compute TW − RW, Interference
if Interference && TW − RW > Threshold then
  Decrease CW by 6 Subcarriers
  Do this till TW − RW < Threshold
else
  Return CW and CF
end if
if Interference && TW − RW < Threshold then
  Increase CW by 6 Subcarriers
  Do this till TW − RW < LowerThreshold
else
  Return CW and CF
end if