Simulating a 450 MHz LTE Cell with Simu5G #298
Replies: 1 comment
-
|
AI answer (unverified): Can Simu5G Simulate a 450 MHz LTE Network?Short answer: Yes, with caveats. Simu5G can be configured to approximate this scenario, but there are important limitations to understand. 1. Frequency ConfigurationSimu5G uses a single carrier frequency per For 450 MHz, you would configure: # Component Carrier — use the DL center frequency
*.carrierAggregation.componentCarrier[0].carrierFrequency = 0.463GHz
*.carrierAggregation.componentCarrier[0].numBands = 25The 2. Path Loss Model & Frequency ValiditySimu5G ships three channel model classes, each implementing different 3GPP specifications:
450 MHz (0.45 GHz) is slightly below all three models' intended ranges. The closest is TR 38.901 which starts at 0.5 GHz. However:
Recommendation: Use 3. Distance Limits for RURAL_MACROCELLFrom the source code at
For a 10 km cell radius, UEs beyond 5 km in NLOS will trigger an error unless you set 4. Example INI Configuration[General]
# --- Component Carrier ---
*.carrierAggregation.numComponentCarriers = 1
*.carrierAggregation.componentCarrier[0].carrierFrequency = 0.463GHz # DL center: (461+466)/2
*.carrierAggregation.componentCarrier[0].numBands = 25 # 5 MHz = 25 RBs
# --- Channel Model (use TR 38.901) ---
*.gnb.cellularNic.channelModel[0].typename = "NRChannelModel_3GPP38_901"
*.gnb.cellularNic.channelModel[0].scenario = "RURAL_MACROCELL"
*.gnb.cellularNic.channelModel[0].nodeb_height = 40m # typical rural tower
*.gnb.cellularNic.channelModel[0].ue_height = 1.5m
*.gnb.cellularNic.channelModel[0].building_height = 5m # low rural buildings
*.gnb.cellularNic.channelModel[0].street_wide = 20m
*.gnb.cellularNic.channelModel[0].dynamic_los = true # probabilistic LOS/NLOS
*.gnb.cellularNic.channelModel[0].tolerateMaxDistViolation = true # allow NLOS > 5km
*.gnb.cellularNic.channelModel[0].shadowing = true
*.gnb.cellularNic.channelModel[0].fading = true
# Repeat for UE side
*.ue[*].cellularNic.channelModel[0].typename = "NRChannelModel_3GPP38_901"
*.ue[*].cellularNic.channelModel[0].scenario = "RURAL_MACROCELL"
*.ue[*].cellularNic.channelModel[0].nodeb_height = 40m
*.ue[*].cellularNic.channelModel[0].ue_height = 1.5m
*.ue[*].cellularNic.channelModel[0].building_height = 5m
*.ue[*].cellularNic.channelModel[0].street_wide = 20m
*.ue[*].cellularNic.channelModel[0].dynamic_los = true
*.ue[*].cellularNic.channelModel[0].tolerateMaxDistViolation = true
*.ue[*].cellularNic.channelModel[0].shadowing = true
*.ue[*].cellularNic.channelModel[0].fading = true
# --- Thermal noise adjustment for 5 MHz bandwidth ---
# Default is -104.5 dBm (10 MHz). For 5 MHz: -104.5 - 3 = -107.5 dBm
*.gnb.cellularNic.channelModel[0].thermalNoise = -107.5dBm
*.ue[*].cellularNic.channelModel[0].thermalNoise = -107.5dBm
# --- TX power (typical for 450 MHz rural eNB) ---
*.gnb.cellularNic.phy.txPower = 46dBm5. Key Caveats
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I’m working on a project to simulate an eNodeB cell tower for a simulation of the German 450 MHz LTE network (runs on a subset of the 3GPP Band 72). My goal is to configure the simulation to match the following requirements:
Frequency Bands:
Coverage Area:
Question:
Is it possible to simulate this scenario with Simu5G? If so, how should I configure the frequency bands, path loss model, and other parameters to achieve this setup?
Beta Was this translation helpful? Give feedback.
All reactions