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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • pcap.h_程序定义了多个入口点,使用/main

    pcap.h_程序定义了多个入口点,使用/main1、命名程序:要创建ABAP/4程序,步骤如下:在“SAPR/3”初始屏幕上选择“工具->ABAP/4工作台”。出现“ABAP/4开发工作台”屏幕选择“ABAP/4编辑器”,“ABAP/4编辑器初始屏幕”为在“程序”字段中创建的程序输入名称(关于创建程序名称的详细信息,参见《命名程序规则》)。选择“创建”。注意:不论在“对象组件”下选择什么,都出现“A…

    2022年9月14日
    0
  • vue跨域解决方案_vueaxios跨域请求

    vue跨域解决方案_vueaxios跨域请求vue跨域解决方案在浏览器里面只要域名,端口,ip地址,协议,有任何不同则为跨域如:A网站:http://localhost:8080/B网站:http://localhost:3030/已经跨域解决方案:JOSNP(只能处理get请求)cors(后端开启)axios服务器代理跨域只存在浏览器中服务器之间不存在跨域所以可以通过服务器代理(在后端不给配置的情况下)1.先下载axios2.先创建一个vue.config.js文

    2022年10月1日
    0
  • 浅谈辄止_java forkjoinpool

    浅谈辄止_java forkjoinpool文章目录一、ForkJoin是什么?它能用来实现什么功能?二、ForkJoin的实现原理三、ForkJoin的简单使用一、ForkJoin是什么?它能用来实现什么功能?二、ForkJoin的实现原理三、ForkJoin的简单使用在这里插入代码片…

    2022年9月20日
    0
  • MongoDB 3 分片集群安装配置「建议收藏」

    MongoDB 3 分片集群安装配置

    2022年3月2日
    36
  • git clone 解决Permission Denied (publickey)问题

    git clone 解决Permission Denied (publickey)问题原文地址:https://blog.csdn.net/sxg0205/article/details/81412921本地gitbash 使用gitclonegit@github.com:***.git方式下载github代码至本地时需要依赖sshkey,遇到权限不足问题时一般都是SSHkey失效或者SSHkey不存在,重新创建SSHkey一般就可以解决问题;步骤一、检查本地…

    2022年7月21日
    12
  • 浅谈正则表达式验证身份证号码(C# winform)

    浅谈正则表达式验证身份证号码(C# winform)

    2021年8月10日
    56

发表回复

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

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