SlideShare a Scribd company logo
Cell Reference Signal and
Mapping
Yanuar T. Aditya N.
Cell Reference Signal are used for…
• Cell search and initial acquisition
• Downlink channel estimation at the UE
• Downlink channel quality measurements
Cell Search
Downlink RS (Reference Signals)
• Transmitted by each antenna (currently using
single antenna)
– Freq. domain spacing is 6 subcarrier
– Time domain spacing is 4 OFDM symbols
Screenshot #1
CELL ID = 0 ; B/W = 10 MHz
Screenshot #2
CELL ID = 1 ; B/W = 10 MHz
Screenshot #3
CELL ID = 6 ; B/W = 10 MHz
Cell RS Equation
• Shall be transmitted in all downlink subframes
• Shall be transmitted in one or several antennas
for number_of_slot=1:20
for ofdm_symbol=1:7
calculate rofdm_symbol,number_of_slot(m)
m = 0,1,…,2*N_RB - 1
Pseudo-Random Sequence Generator
• Initialized with
• Then, initialize the the Gold-Sequence m_seq1
and m_seq2. Each has 31-bit length.
for length=1:31
if length=1
m_seq1[length] = 1
else
m_seq1[length] = 0
…more
• m_seq2 denoted by (need cinit)
for length=1:31
m_seq2[length] = c_init mod 2
c_init = c_init / 2
So far…
for length=1:31
{
if length=1
m_seq1[length] = 1
else
m_seq1[length] = 0
}
for number_of_slot=1:20
for ofdm_symbol=1:7
{
calc_c_init()
for length=1:31
{
m_seq2[length] = c_init mod 2
c_init = c_init / 2
}
calc_pseudo_rand()
calc_cell_RS()
}
calc_pseudo_rand()
{
for n=1:M_pn+Nc
{
m_seq1[n+31]=m_seq1[n+3]^m_seq1[n]
m_seq2[n+31]=m_seq2[n+3]^m_seq2[n+2]^m_seq2[n+1]^m_seq2[n]
}
for n=1:M_pn
{
pseudo_rand[n]=m_seq1[n+Nc]^m_seq2[n+Nc]
}
}
The cell RS value
…init m_seq1
for number_of_slot=1:20
for ofdm_symbol=1:7
{
…init c_init
…init m_seq2
…calc_pseudo_rand()
for m_index=1:N_RB*2
{
out_signal[number_of_slot][ofdm_symbol][m_index].re =
(1-2*pseudo_rand_seq[2*m_index])/SQRT_2;
out_signal[number_of_slot][ofdm_symbol][m_index].im =
((1-2*pseudo_rand_seq[2*m_index+1])/SQRT_2);
}
}
Mapping
…more
Poured into code
for num_sub=1:2*N_RB /* 1 to 100 on 10 MHz */
for ofdm_sym=1:7
{
if antenna_port == 0 || antenna_port == 1
{
check_v01_value()
slot[6 * num_sub + (v + v_shift)][ofdm_symb] = cell_RS[l][num_sub]
}
else if antenna_port == 2 || antenna_port == 3
{
check_v23_value()
slot[6 * num_sub + (v + v_shift)][ofdm_symb] = cell_RS[l][num_sub]]
}
}
Result
Q & A

More Related Content

What's hot

All Digital Phase Lock Loop 03 12 09
All Digital Phase Lock Loop 03 12 09All Digital Phase Lock Loop 03 12 09
All Digital Phase Lock Loop 03 12 09
imranbashir
 
Design of all digital phase locked loop (d pll) with fast acquisition time
Design of all digital phase locked loop (d pll) with fast acquisition timeDesign of all digital phase locked loop (d pll) with fast acquisition time
Design of all digital phase locked loop (d pll) with fast acquisition time
eSAT Journals
 
Addressing mode and instruction set using 8051
Addressing mode and instruction set using 8051Addressing mode and instruction set using 8051
Addressing mode and instruction set using 8051
logesh waran
 
224698998 moshell-commands
224698998 moshell-commands224698998 moshell-commands
224698998 moshell-commands
Achmad Salsabil
 
3.a novel realization of reversible lfsr for its application in cryptography
3.a novel realization of reversible lfsr for its application in cryptography3.a novel realization of reversible lfsr for its application in cryptography
3.a novel realization of reversible lfsr for its application in cryptography
Pvrtechnologies Nellore
 
Ospf area types
Ospf area typesOspf area types
Ospf area types
Roger Perkin
 
Commands...
Commands...Commands...
Commands...
BRIJESH SINGH
 
L3 f10 2
L3 f10 2L3 f10 2
L3 f10 2
Nishanth P V
 
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
Passion Radio Amateur
 
PHASE LOCKED LOOP FOR GSM 900
PHASE LOCKED LOOP FOR  GSM 900PHASE LOCKED LOOP FOR  GSM 900
PHASE LOCKED LOOP FOR GSM 900
chirag2003
 
8051 experiments1
8051 experiments18051 experiments1
8051 experiments1
tt_aljobory
 
Docfoc.com ericsson commands
Docfoc.com ericsson commandsDocfoc.com ericsson commands
Docfoc.com ericsson commands
adel kaoubi
 
Ericsson commond list, bss+nss=oss
Ericsson commond list, bss+nss=ossEricsson commond list, bss+nss=oss
Ericsson commond list, bss+nss=oss
Hossein Abbasi
 
Robotics lec7
Robotics lec7Robotics lec7
Robotics lec7
Mahmoud Hussein
 
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
Hsien-Hsin Sean Lee, Ph.D.
 
D Belver FEE for Trasgos
D Belver  FEE for TrasgosD Belver  FEE for Trasgos
D Belver FEE for TrasgosMiguel Morales
 
Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)
Abdur Rehman
 

What's hot (20)

All Digital Phase Lock Loop 03 12 09
All Digital Phase Lock Loop 03 12 09All Digital Phase Lock Loop 03 12 09
All Digital Phase Lock Loop 03 12 09
 
Project lfsr
Project lfsrProject lfsr
Project lfsr
 
Design of all digital phase locked loop (d pll) with fast acquisition time
Design of all digital phase locked loop (d pll) with fast acquisition timeDesign of all digital phase locked loop (d pll) with fast acquisition time
Design of all digital phase locked loop (d pll) with fast acquisition time
 
Addressing mode and instruction set using 8051
Addressing mode and instruction set using 8051Addressing mode and instruction set using 8051
Addressing mode and instruction set using 8051
 
NT1065 LE DS v2.04
NT1065 LE DS v2.04NT1065 LE DS v2.04
NT1065 LE DS v2.04
 
224698998 moshell-commands
224698998 moshell-commands224698998 moshell-commands
224698998 moshell-commands
 
3.a novel realization of reversible lfsr for its application in cryptography
3.a novel realization of reversible lfsr for its application in cryptography3.a novel realization of reversible lfsr for its application in cryptography
3.a novel realization of reversible lfsr for its application in cryptography
 
Ospf area types
Ospf area typesOspf area types
Ospf area types
 
Commands...
Commands...Commands...
Commands...
 
L3 f10 2
L3 f10 2L3 f10 2
L3 f10 2
 
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
Es'hail2 1er satellite radioamateur géostationnaire QATAR OSCAR-100
 
FINISHED_CODE
FINISHED_CODEFINISHED_CODE
FINISHED_CODE
 
PHASE LOCKED LOOP FOR GSM 900
PHASE LOCKED LOOP FOR  GSM 900PHASE LOCKED LOOP FOR  GSM 900
PHASE LOCKED LOOP FOR GSM 900
 
8051 experiments1
8051 experiments18051 experiments1
8051 experiments1
 
Docfoc.com ericsson commands
Docfoc.com ericsson commandsDocfoc.com ericsson commands
Docfoc.com ericsson commands
 
Ericsson commond list, bss+nss=oss
Ericsson commond list, bss+nss=ossEricsson commond list, bss+nss=oss
Ericsson commond list, bss+nss=oss
 
Robotics lec7
Robotics lec7Robotics lec7
Robotics lec7
 
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
Lec14 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Se...
 
D Belver FEE for Trasgos
D Belver  FEE for TrasgosD Belver  FEE for Trasgos
D Belver FEE for Trasgos
 
Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)
 

Viewers also liked

Carrier Aggregation for LTE-A
Carrier Aggregation for LTE-ACarrier Aggregation for LTE-A
Carrier Aggregation for LTE-A
PT. Fusi Global Teknologi
 
Fusi PDSCH
Fusi PDSCHFusi PDSCH
A 01-quick-introduction-to-digital-communication-system
A 01-quick-introduction-to-digital-communication-systemA 01-quick-introduction-to-digital-communication-system
A 01-quick-introduction-to-digital-communication-system
PT. Fusi Global Teknologi
 
IoT in LTE
IoT in LTEIoT in LTE
IoT in LTE
Neha Katyal
 
LTE Essential Patent Analysis 1Q 2010
LTE Essential Patent Analysis 1Q 2010LTE Essential Patent Analysis 1Q 2010
LTE Essential Patent Analysis 1Q 2010
Alex G. Lee, Ph.D. Esq. CLP
 
Throughput Calculation for LTE TDD and FDD System
Throughput Calculation for  LTE TDD and FDD SystemThroughput Calculation for  LTE TDD and FDD System
Throughput Calculation for LTE TDD and FDD System
Sukhvinder Singh Malik
 

Viewers also liked (7)

Carrier Aggregation for LTE-A
Carrier Aggregation for LTE-ACarrier Aggregation for LTE-A
Carrier Aggregation for LTE-A
 
Fusi PDSCH
Fusi PDSCHFusi PDSCH
Fusi PDSCH
 
A 01-quick-introduction-to-digital-communication-system
A 01-quick-introduction-to-digital-communication-systemA 01-quick-introduction-to-digital-communication-system
A 01-quick-introduction-to-digital-communication-system
 
IoT in LTE
IoT in LTEIoT in LTE
IoT in LTE
 
Milk powerpoint
Milk powerpointMilk powerpoint
Milk powerpoint
 
LTE Essential Patent Analysis 1Q 2010
LTE Essential Patent Analysis 1Q 2010LTE Essential Patent Analysis 1Q 2010
LTE Essential Patent Analysis 1Q 2010
 
Throughput Calculation for LTE TDD and FDD System
Throughput Calculation for  LTE TDD and FDD SystemThroughput Calculation for  LTE TDD and FDD System
Throughput Calculation for LTE TDD and FDD System
 

Similar to Cell Reference Signal and Mapping

Amplitude Modulation (AM)
Amplitude Modulation (AM)Amplitude Modulation (AM)
Amplitude Modulation (AM)
AbuBakar Siddique
 
Topic - NMR spectroscopy.ppt
Topic - NMR spectroscopy.pptTopic - NMR spectroscopy.ppt
Topic - NMR spectroscopy.ppt
SATISH KOLA
 
Digital communication
Digital communicationDigital communication
Digital communicationmeashi
 
Lecture intro to_wcdma
Lecture intro to_wcdmaLecture intro to_wcdma
Lecture intro to_wcdma
Gurpreet Singh
 
Chapter7_Lathi_4thed_JAN_2021.pptx
Chapter7_Lathi_4thed_JAN_2021.pptxChapter7_Lathi_4thed_JAN_2021.pptx
Chapter7_Lathi_4thed_JAN_2021.pptx
SubhanBihan1
 
NMR INSTRUMENTATION
NMR INSTRUMENTATIONNMR INSTRUMENTATION
NMR INSTRUMENTATION
ArpitSuralkar
 
Unit 3.pptx
Unit 3.pptxUnit 3.pptx
Rf coils smim_dks_2016
Rf coils smim_dks_2016Rf coils smim_dks_2016
Rf coils smim_dks_2016
Sairam Geethanath
 
Analysis of Space Time Codes Using Modulation Techniques
Analysis of Space Time Codes Using Modulation TechniquesAnalysis of Space Time Codes Using Modulation Techniques
Analysis of Space Time Codes Using Modulation Techniques
IOSR Journals
 
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
IDES Editor
 
Gps signals
Gps signalsGps signals
power point presentation of wireless communications
power point presentation of wireless communicationspower point presentation of wireless communications
power point presentation of wireless communications
ugenderacsegnitc
 
Interference cancellation in uwb systems
Interference cancellation in uwb systemsInterference cancellation in uwb systems
Interference cancellation in uwb systems
jayasheelamoses
 
Chapter 3 am receivers
Chapter 3 am receiversChapter 3 am receivers
Chapter 3 am receiversHattori Sidek
 
Progress seminar
Progress seminarProgress seminar
Progress seminarBarnali Dey
 

Similar to Cell Reference Signal and Mapping (20)

Amplitude Modulation (AM)
Amplitude Modulation (AM)Amplitude Modulation (AM)
Amplitude Modulation (AM)
 
Ssbsc
SsbscSsbsc
Ssbsc
 
Topic - NMR spectroscopy.ppt
Topic - NMR spectroscopy.pptTopic - NMR spectroscopy.ppt
Topic - NMR spectroscopy.ppt
 
Digital communication
Digital communicationDigital communication
Digital communication
 
Lecture intro to_wcdma
Lecture intro to_wcdmaLecture intro to_wcdma
Lecture intro to_wcdma
 
ltewp
ltewpltewp
ltewp
 
Chapter7_Lathi_4thed_JAN_2021.pptx
Chapter7_Lathi_4thed_JAN_2021.pptxChapter7_Lathi_4thed_JAN_2021.pptx
Chapter7_Lathi_4thed_JAN_2021.pptx
 
NMR INSTRUMENTATION
NMR INSTRUMENTATIONNMR INSTRUMENTATION
NMR INSTRUMENTATION
 
Ei unit 2
Ei unit 2Ei unit 2
Ei unit 2
 
Unit 3.pptx
Unit 3.pptxUnit 3.pptx
Unit 3.pptx
 
Rf coils smim_dks_2016
Rf coils smim_dks_2016Rf coils smim_dks_2016
Rf coils smim_dks_2016
 
Analysis of Space Time Codes Using Modulation Techniques
Analysis of Space Time Codes Using Modulation TechniquesAnalysis of Space Time Codes Using Modulation Techniques
Analysis of Space Time Codes Using Modulation Techniques
 
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
Analysis and Simulation of Pseudo Ranging Noise codes for Geo-Stationary Sate...
 
Gps signals
Gps signalsGps signals
Gps signals
 
power point presentation of wireless communications
power point presentation of wireless communicationspower point presentation of wireless communications
power point presentation of wireless communications
 
Interference cancellation in uwb systems
Interference cancellation in uwb systemsInterference cancellation in uwb systems
Interference cancellation in uwb systems
 
Chapter 3 am receivers
Chapter 3 am receiversChapter 3 am receivers
Chapter 3 am receivers
 
Progress seminar
Progress seminarProgress seminar
Progress seminar
 
IMT Advanced
IMT AdvancedIMT Advanced
IMT Advanced
 
OFDM Basics.ppt
OFDM Basics.pptOFDM Basics.ppt
OFDM Basics.ppt
 

Recently uploaded

GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
Fwdays
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
Abida Shariff
 

Recently uploaded (20)

GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 

Cell Reference Signal and Mapping

  • 1. Cell Reference Signal and Mapping Yanuar T. Aditya N.
  • 2. Cell Reference Signal are used for… • Cell search and initial acquisition • Downlink channel estimation at the UE • Downlink channel quality measurements
  • 4. Downlink RS (Reference Signals) • Transmitted by each antenna (currently using single antenna) – Freq. domain spacing is 6 subcarrier – Time domain spacing is 4 OFDM symbols
  • 5. Screenshot #1 CELL ID = 0 ; B/W = 10 MHz
  • 6. Screenshot #2 CELL ID = 1 ; B/W = 10 MHz
  • 7. Screenshot #3 CELL ID = 6 ; B/W = 10 MHz
  • 8. Cell RS Equation • Shall be transmitted in all downlink subframes • Shall be transmitted in one or several antennas for number_of_slot=1:20 for ofdm_symbol=1:7 calculate rofdm_symbol,number_of_slot(m) m = 0,1,…,2*N_RB - 1
  • 9. Pseudo-Random Sequence Generator • Initialized with • Then, initialize the the Gold-Sequence m_seq1 and m_seq2. Each has 31-bit length. for length=1:31 if length=1 m_seq1[length] = 1 else m_seq1[length] = 0
  • 10. …more • m_seq2 denoted by (need cinit) for length=1:31 m_seq2[length] = c_init mod 2 c_init = c_init / 2
  • 11. So far… for length=1:31 { if length=1 m_seq1[length] = 1 else m_seq1[length] = 0 } for number_of_slot=1:20 for ofdm_symbol=1:7 { calc_c_init() for length=1:31 { m_seq2[length] = c_init mod 2 c_init = c_init / 2 } calc_pseudo_rand() calc_cell_RS() } calc_pseudo_rand() { for n=1:M_pn+Nc { m_seq1[n+31]=m_seq1[n+3]^m_seq1[n] m_seq2[n+31]=m_seq2[n+3]^m_seq2[n+2]^m_seq2[n+1]^m_seq2[n] } for n=1:M_pn { pseudo_rand[n]=m_seq1[n+Nc]^m_seq2[n+Nc] } }
  • 12. The cell RS value …init m_seq1 for number_of_slot=1:20 for ofdm_symbol=1:7 { …init c_init …init m_seq2 …calc_pseudo_rand() for m_index=1:N_RB*2 { out_signal[number_of_slot][ofdm_symbol][m_index].re = (1-2*pseudo_rand_seq[2*m_index])/SQRT_2; out_signal[number_of_slot][ofdm_symbol][m_index].im = ((1-2*pseudo_rand_seq[2*m_index+1])/SQRT_2); } }
  • 15. Poured into code for num_sub=1:2*N_RB /* 1 to 100 on 10 MHz */ for ofdm_sym=1:7 { if antenna_port == 0 || antenna_port == 1 { check_v01_value() slot[6 * num_sub + (v + v_shift)][ofdm_symb] = cell_RS[l][num_sub] } else if antenna_port == 2 || antenna_port == 3 { check_v23_value() slot[6 * num_sub + (v + v_shift)][ofdm_symb] = cell_RS[l][num_sub]] } }
  • 17. Q & A