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


相关推荐

  • QQ群关系数据库处理

    QQ群关系数据库处理1.附加数据库1EXECsp_attach_single_file_db@dbname='GroupData1_Data',@physname='/media/

    2022年7月3日
    26
  • 一阶倒立摆的PID_简单旋转装置

    一阶倒立摆的PID_简单旋转装置  我做PID算法的背景和经历:本人电子信息科学与技术专业,现在是一名大三的学生,对控制方向颇感兴趣,刚上大学时听到实验室老师说PID算法,那年在暑假集训准备全国电子设计竞赛,我正在练习做一个以前专科的题目,帆板角度控制系统,还不懂PID是个什么玩意,老师让我把PID加到这个题目里。当时给了一些电子版的一些教程,但是没看懂。。。。。。。后来对四旋翼很感兴趣,想弄一架玩玩再亲自写程序做一架,买了PI…

    2022年8月18日
    9
  • python屏幕文字识别_python识别图片文字

    python屏幕文字识别_python识别图片文字因为学校要求要刷一门叫《包装世界》的网课,而课程里有200多道选择题,而且只能在手机完成,网页版无法做题,而看视频是不可能看视频的,这辈子都不可能看…所以写了几行代码来进行百度搜答案。思路如下:手机屏幕投影到电脑上;截图并识别图片文字;调用百度来进行搜索;提取html关键字。环境配置:python3.6、第三方库:pyautogui、PIL、pytesseract、识别引擎tesseract-…

    2022年6月6日
    75
  • siege 用户登录_Siege详解[通俗易懂]

    siege 用户登录_Siege详解[通俗易懂]Siege是一款开源的压力测试工具,设计用于评估WEB应用在压力下的承受能力。可以根据配置对一个WEB站点进行多用户的并发访问,记录每个用户所有请求过程的相应时间,并在一定数量的并发访问下重复进行。Siege可以从您选择的预置列表中请求随机的URL。所以siege可用于仿真用户请求负载,而ab则不能。但不要使用siege来执行最高性能基准调校测试,这方面ab就准确很多。一、安装编译安装tar-z…

    2025年8月6日
    4
  • RFC2616-HTTP1.1-Header Field Definitions(头字段规定部分—单词注释版)[通俗易懂]

    partof HypertextTransferProtocol–HTTP/1.1RFC2616Fielding,etal.14 HeaderFieldD

    2022年3月25日
    36
  • Editormd的使用——在线编辑和查看文章

    Editormd的使用——在线编辑和查看文章使用Editormd可以方便地在界面上嵌入markdown编辑器,并能够实时预览。先看一下实现效果:编辑文章界面:展示文章界面:用法:首先,到https://pandao.github.io/editor.md/下载Editormd的压缩包,解压到自己的静态资源文件夹下。第二步,引入必要的文件: <linkrel=”stylesheet”href=”/resource/assets/editormd/css/editormd.css”/><linkrel=

    2025年5月27日
    2

发表回复

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

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