Channel,Band

频带(Band)

所谓的频带就是指分配给特定应用的频率范围.

无线设备被限定在某个特定的频带(Frequency Band) 上操作.每个频带都有相应的带宽(Bandwidth),即该频带可供使用的频率总和.带宽是评断链路(Link)数据传输能力的基准.种种理论证明较的带宽可以传输更多的信息.

ISM 频带(2.4GHZ)即工业(Industrial),科学(Scientific),医疗(Medical):不需要申请许可证(License Free)即可使用.

IEE802.11a 设置使用5GHZ频带,IEE802.11b/g 设备使用ISM 2.4GHZ 频带,IEE802.11n使用 ISM 2.4GHZ 频带 及5GHZ频带

Channel 

2.4 GHz (802.11b/g/n)

 

 

802.11 divides each of the above-described bands into channels, analogously to how radio and TV broadcast bands are sub-divided but with greater channel width and overlap. For example the 2.4000–2.4835 GHz band is divided into 13 channels each of width 22 MHz but spaced only 5 MHz apart, with channel 1 centered on 2.412 GHz and 13 on 2.472 GHz to which Japan adds a 14th channel 12 MHz above channel 13.

This chart is only provides a general view, and there may be variations between different countries. For example some countries within the European zone Spain have restrictions on the channels that may be used (France: channels 10 - 13 and Spain channels 10 and 11) use of Wi-Fi and do not allow many of the channels that might be thought to be available, although the position is likely to change.

The channels used for WiFI are separated by 5 MHz in most cases but have a bandwidth of 22 MHz. As a result channels overlap and it can be seen that it is possible to find a maximum of three non-overlapping channels. Therefore if there are adjacent pieces of WLAN equipment that need to work on non-interfering channels, there is only a possibility of three. There are five combinations of available non overlapping channels are given below:

 

From the diagram above, it can be seen that Wi-Fi channels 1, 6, 11, or 2, 7, 12, or 3, 8, 13 or 4, 9, 14 (if allowed) or 5, 10 (and possibly 14 if allowed) can be used together as sets. Often WiFi routers are set to channel 6 as the default, and therefore the set of channels 1, 6 and 11 is possibly the most widely used.

The 802.11 WLAN standards specify a bandwidth of 22 MHz and a 25 MHz channel separation, although nominal figures for the bandwidth of 20 MHz are often given. The 20 / 22 MHz bandwidth and channel separation of 5 MHz means that adjacent channels overlap and signals on adjacent channels will interfere with each other.

 

802.11占位:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在5G网络中,不再使用ARFCN(Absolute Radio Frequency Channel Number)这个概念。相反,5G NR(New Radio)网络使用了SSB(Synchronization Signal Block)和C-RS(Cell-specific Reference Signal)等概念来定义频率资源。 如果您需要在4G LTE网络中根据ARFCN值推算出Band值,可以使用以下公式: - FDL_Low = 0.1 * (ARFCN - DL_Offset) + FDL_Offset - FDL_High = FDL_Low + Bandwidth 其中: - ARFCN:需要转换的ARFCN值 - DL_Offset:下行频点偏移量 - FDL_Offset:下行频点起始值 - FDL_Low:下行频点最低值 - FDL_High:下行频点最高值 - Bandwidth:带宽,单位为MHz 然后,根据下面的表格可以判断ARFCN所在的Band值: | Band | 下行频点范围 | |------|-------------| | 1 | 0-599 | | 2 | 600-1199 | | 3 | 1200-1949 | | 4 | 1950-2399 | | 5 | 2400-2649 | | 7 | 2750-3449 | | 8 | 3450-3799 | | 12 | 5010-5179 | | 13 | 5180-5279 | | 20 | 6300-6599 | | 25 | 8050-8599 | | 26 | 8600-8939 | | 28 | 9210-9659 | | 38 | 37750-38249 | | 39 | 38250-38649 | | 40 | 38650-39649 | | 41 | 39650-41589 | 代码示例: ```c #include <stdio.h> int main() { int arfcn; printf("请输入ARFCN值:"); scanf("%d", &arfcn); // 计算下行频点最低值 double fdl_low = 0.1 * (arfcn - 0) + 2110.0; // 计算下行频点最高值 double fdl_high = fdl_low + 10.0; // 根据下行频点范围判断Band值 int band; if (fdl_low >= 600.0 && fdl_low <= 1199.0) { band = 2; } else if (fdl_low >= 1200.0 && fdl_low <= 1949.0) { band = 3; } else if (fdl_low >= 1950.0 && fdl_low <= 2399.0) { band = 4; } else if (fdl_low >= 2400.0 && fdl_low <= 2649.0) { band = 5; } else if (fdl_low >= 2750.0 && fdl_low <= 3449.0) { band = 7; } else if (fdl_low >= 3450.0 && fdl_low <= 3799.0) { band = 8; } else if (fdl_low >= 5010.0 && fdl_low <= 5179.0) { band = 12; } else if (fdl_low >= 5180.0 && fdl_low <= 5279.0) { band = 13; } else if (fdl_low >= 6300.0 && fdl_low <= 6599.0) { band = 20; } else if (fdl_low >= 8050.0 && fdl_low <= 8599.0) { band = 25; } else if (fdl_low >= 8600.0 && fdl_low <= 8939.0) { band = 26; } else if (fdl_low >= 9210.0 && fdl_low <= 9659.0) { band = 28; } else if (fdl_low >= 37750.0 && fdl_low <= 38249.0) { band = 38; } else if (fdl_low >= 38250.0 && fdl_low <= 38649.0) { band = 39; } else if (fdl_low >= 38650.0 && fdl_low <= 39649.0) { band = 40; } else if (fdl_low >= 39650.0 && fdl_low <= 41589.0) { band = 41; } else { band = -1; // 无法判断的情况 } printf("ARFCN %d 所在的Band值为 %d\n", arfcn, band); return 0; } ``` 注意:以上代码仅适用于FDD(Frequency Division Duplex)制式的LTE网络,对于TDD(Time Division Duplex)制式的LTE网络,计算公式和频段划分有所不同。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值