Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to get throughput of network in lte using omnet++

Status
Not open for further replies.

achopra

Newbie level 1
Joined
Feb 17, 2018
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
31
Hello,

I am working on Omnet++ but getting difficulties with it. I am getting zero for channel,bitrate, snr and want to get throughput of network. I am attaching my omet.ini file here
please let me know if i need to do any changes here and attaching screenshot of result as well where i am getting zero values. I have copied omnet.ini file here. Please let me know if i need to do any changes in it.


Code dot - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[General]
#image-path=../../images
tkenv-plugin-path = ../../../inet/etc/plugins
output-scalar-file-append = false
debug-on-errors = false
print-undisposed = true
tkenv-default-config = 
sim-time-limit=5s
warmup-period=2s
repeat = 5
**.routingRecorder.enabled = false
 
############### Statistics ##################
output-scalar-file = ${resultdir}/${configname}/${repetition}.sca
output-vector-file = ${resultdir}/${configname}/${repetition}.vec
seed-set = ${repetition}
**.vector-recording = true
 
################ PhyLayer parameters #####################
**.nic.phy.channelModel=xmldoc("config_channel.xml")
**.feedbackComputation = xmldoc("config_channel.xml")
 
# UEs attached to eNB
**.fbDelay = 1
 
############### AMC MODULE PARAMETERS ###############
**.rbAllocationType = "localized"
**.deployer.numRbDl = 6
**.deployer.numRbUl = 6
**.numBands = 6
 
# ----------------------------------------------------------------------------- #
# In this configuration, a transmitting UE sends periodic alert messages to two 
# users, located close to it.
#
[Config SingleCell]
network = lte.simulations.networks.SingleCell
*.numUe = ${numUEs=5}
 
 
#============= Amount of applications ================
*.ue[*].numUdpApps = 1
*.server.numUdpApps = ${numUEs}
 
# connect each UE to the eNB
**.ue[*].macCellId = 1
**.ue[*].masterId = 1
 
################ Channel parameters #####################
**.channelControl.pMax = 20W
**.channelControl.alpha = 3
**.channelControl.carrierFrequency = 2100e+6Hz
 
#============= Positioning and mobility ============
*.eNodeB.mobility.initFromDisplayString = false
*.eNodeB.mobility.initialX = 300m
*.eNodeB.mobility.initialY = 300m
*.ue[*].mobility.constraintAreaMaxX = 1000m
*.ue[*].mobility.constraintAreaMaxY = 1000m
*.ue[*].mobility.constraintAreaMinX = 0m
*.ue[*].mobility.constraintAreaMinY = 0m
*.ue[*].mobility.initFromDisplayString = false
*.ue[*].mobility.initialX = uniform(0m,1000m)
*.ue[*].mobility.initialY = uniform(0m,1000m)
*.ue[*].mobility.speed = 1mps
*.ue[*].mobilityType = "LinearMobility"
#------------------------------------#
#
#
**.ue*.udpApp[0].typename = "UDPVideoStreamCli"
 
**.ue*.udpApp[0].serverAddress = "server"
 
**.ue*.udpApp[0].localPort = 9999
 
**.ue*.udpApp[0].serverPort = 3088+ancestorIndex(0)
 
**.ue*.udpApp[0].startTime = 0.01s
 
 
# Video Server Configuration
 
**.server.udpApp[*].typename = "UDPVideoStreamSvr"
 
**.server.udpApp[*].videoSize = 107MiB
 
**.server.udpApp[*].localPort = 3088+ancestorIndex(0) 
 
**.server.udpApp[*].sendInterval = 10ms
 
**.server.udpApp[*].packetLen = 1000B

 

Attachments

  • packets.jpg
    packets.jpg
    168.4 KB · Views: 197
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top