LTE以及OFDM中sample rate, fft size, channel bw, subcarrier, number of sample等概念的理解

LTE以及OFDM中sample rate, fft size, channel bw, subcarrier, number of sample等概念的理解因为对OFDM中时域和频域的处理有些困惑,查到网上有篇如下的问答,可以帮助理解,所以转载至此。问:Hello,IwasfollowingthechartbelowtounderstandthebasicsofLTEbandwidthconfigurationandputmeintotalconfusion.Couldyoup

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用



因为对OFDM中时域和频域的处理有些困惑,查到网上有篇如下的问答,可以帮助理解,所以转载至此。

问:

Hello,

I was following the chart below to understand the basics of LTE bandwidth configuration and put me in total confusion.

Could you please assist me in understanding the questions below. My apologizes if questions are too naive for experts in this community.

 I want to understand 20Mhz FDD to start with and hopefully the rest will be easily followed. As seen in the chart below

  1) what does sample rate( Mhz) mean/ signify?

   2) how does sampling rate 30.72( 2048*15Hz) fit within 20Mhz bandwidth ? 

  3) 100 Resource blocks = 1200*15khz = 18Mhz.. Where is the ramining 2 Mhz( 20-18mhz) gone ?

  4) 2048 IDFT size. Does it mean the total subcarriers as 2048 ?

  5) what is FFT /IFFT/DFT/IDFT size mean/signify ? 

  6) 1200 number of occupied subcarriers. what are the unoccupied carriers( is it 2048-1200 = 848 ?)

  7) if I imaging that the 20Mhz bandwidth allocated as 1760-1780(Rx) and 2160-2180( Tx).  The subcarriers generated by IFFT operation should be integral              multiples . Therefore what will be the individual frequencies in time domain if 2048 subcarriers are generated. 

LTE以及OFDM中sample rate, fft size, channel bw, subcarrier, number of sample等概念的理解

答:

Hello,

Let me try to answer the questions. Please correct me if needed.

 4) 2048 IDFT size. Does it mean the total subcarriers as 2048 ?

>> Yes total sub-carriers are 2048 but only 1200 are occupied. Rest are zero padded.

 5) what is FFT /IFFT/DFT/IDFT size mean/signify ?

>> IFFT size means number of sine waves the IFFT takes as input to construct the time domain signal. In case of 20 MHz the IFFT size is 2048 that means 2048 sub-carriers are used to construct the time domain signal. (Note: not all are occcupied).

 6) 1200 number of occupied subcarriers. what are the unoccupied carriers( is it 2048-1200 = 848 ?)

>> Occupied carriers correspond to number of Physical resource elements. In 20MHz there are 1200 PREs. Unoccupied sub-carriers are zero padded.

3) 100 Resource blocks = 100*180( 12*15khz) = 18Mhz.. Where is the ramining 2 Mhz( 20-18mhz) gone ?

>> I think 2 MHz is the guard band.

1) what does sample rate( Mhz) mean/ signify?

>> Sample rate calculation for 20 MHz.

Let me first give you the thumb rule of OFDM system: The symbol period is reciprocal of the sub-carrier spacing. So in case of LTE where 15KHz is sub-carrier spacing the symbol length is 1/(15KHz).

2048 time samples from IFFT module fit into symbol period of 1/(15KHz). The sampling frequency hence is (15KHz * 2048) for 20 MHz.

Similarly by changing the number of sub-carriers you will get the sampling freq for other band-widths.

2) how does sampling rate 30.72( 2048*15Hz) fit within 20Mhz bandwidth ?

>> Sampling rate is in time domain.

Regds,

Raj.

转载自 http://lteuniversity.com/ask_the_expert/f/59/t/2636.aspx

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/181319.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • QT QStringList 与 QString 常用方法

    QT QStringList 与 QString 常用方法本文汇集了QString与(QStringList|QByteArray)之间的转换,以及QString、QStringList的一些常用方法。

    2022年4月30日
    48
  • USB协议详解

    USB协议详解本博客整理自网络,仅供学习参考,如有侵权,联系删除。邮箱:rom100@163.com一个transfer(传输)由一个或多个transaction(事务)构成,一个transaction(事务)由一个或多个packet(包)构成,一个packet(包)由一个或多个sync(域)构成。1.传输数据通信USB的数据通讯首先是基于传输(transfer)的,传输的类型有:中断传输、批量传输…

    2022年6月29日
    44
  • String、StringBuffer与StringBuilder之间区别

    String、StringBuffer与StringBuilder之间区别String StringBuffer StringBuilder String的值是不可变的,这就导致每次对String的操作都会生成新的String对象,不仅效率低下,而且浪费大量优先的内存空间 StringBuffer是可变类,和线程安全的字符串操作类,任何对它指向的字符串的操作都不会产生新的对象。每个StringBuffer对象都有一定的缓冲区…

    2022年6月28日
    27
  • python读取文件如何去除空格_python读取txt文件时怎么去掉空格

    python读取文件如何去除空格_python读取txt文件时怎么去掉空格python属于什么型语言python通过什么实现映射Python读取TXT文件可以通过replace()函数来去除TXT文件中的空格,基本结构:replace(to_replace,value)前面是需要替换的值,后面是替换后的值。代码如下:importosimportsys#os.chdir(‘E:\\’)#跳到D盘#ifnotos.path.exists(‘1.txt’):…

    2022年5月8日
    406
  • redis锁实现_IDEA使用try

    redis锁实现_IDEA使用tryWeb全栈~35.显式锁上一期接口Lock显式锁接口的定义       lock()/unlock():就是普通的获取锁和释放锁方法,lock()会阻塞直到成功。       lockInterruptibly():与lock()的不同是,它可以响应中断,如果被其他线程中断了,则抛出InterruptedException。  &nbsp

    2022年10月15日
    4
  • 史上最全面的JTAG和SWD接口的定义/STM32/STM8工程师的福音/JTAG转SWD接口仿真/告别杂乱的仿真线/终于讲清楚了JTAG/SWD

    史上最全面的JTAG和SWD接口的定义/STM32/STM8工程师的福音/JTAG转SWD接口仿真/告别杂乱的仿真线/终于讲清楚了JTAG/SWD一、前言作为一名嵌入式工程师,相信大家都十分清楚MCU开发或者ARM开发都避免不了关键的研发过程,产品研发过程中的程序调试更是举足轻重般的存在。从8051内核到ARM内核,自己也接触了很多的调试工具和调试手段;今天在此给大家分享一下使用ST-LINK仿真调试器的一些基础知识和好物推荐。二、ST-LINK仿真器说明ST-Link是用于STM8和STM32微控制器在线调试器和编程器,ST-Link本身具有SWIM、JTAG/SWD通信接口,适用于STM8和STM32微控制器的软件调试仿真。

    2022年4月25日
    51

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号