Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
d6bd2d29
Commit
d6bd2d29
authored
Oct 29, 2025
by
Bartosz Podrygajlo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add beam section to RFSimulator README.md
parent
d6da7a56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
radio/rfsimulator/README.md
radio/rfsimulator/README.md
+51
-0
No files found.
radio/rfsimulator/README.md
View file @
d6bd2d29
...
@@ -209,3 +209,54 @@ to reduce the amount of transported samples:
...
@@ -209,3 +209,54 @@ to reduce the amount of transported samples:
A possible, unimplemented optimization would be to compress samples.
A possible, unimplemented optimization would be to compress samples.
You can further
[
tune your machine
](
../../doc/tuning_and_security.md
)
You can further
[
tune your machine
](
../../doc/tuning_and_security.md
)
# Beam simulation
RFsimulator supports beam domain simulation.
## Configuration
Several new CLI parameters were added
*
`--rfsimulator.enable_beams`
: enable beam domain simulation. Should match on server and all clients.
*
`--rfsimulator.beam_gains <comma separated list>`
: define a matrix of additional pathloss values (in dB)
to simulate the effect of different beam combinations in the RF simulator. You provide a comma-separated
list of numbers, which forms the first row of a square matrix. The rest of the matrix is filled by projecting
these values onto the diagonals, making it symmetric.
Example list:
`0,-2,-3`
Resulting matrix:
```
[[0,-2,-3],
[-2,0,-2],
[-3,-2,0]]
```
The beam gain matrix will be used during beam combining. RX beam selects the row and TX beam selects column.
Using the example above, if gNB is receiving in beam 1 and the UE is transmitting in beam 1, an additional
2 dB pathloss will be applied on top of the pathloss from the channel model (if present).
*
`--rfsimulator.beam_map <beam_map>`
: where
`<beam_map>`
is a
`uint64_t`
value where each bit is an enabled TX/RX beam.
For gNB: Initial beam_map, i.e. which beams gNB transmits/receives before calling beam APIs.
For UE: Beam position in beam space in the simulation. The UE is not expected to use the beam APIs for now.
## Runtime commands
### Moving the UE in beam space
Use telnet command
`rfsimu setbeams <beam_map>`
. It works similar to the CLI command
`--rfsimulator.beam_map <beam_map>`
.
Suggest to only use single bits here
### Modifying the gNB beam
It is possible to test the beam domain simulation without implementing the beam APIs. The same telnet command can be used
to modify the tx/rx beam of the gNB. The gNB does not need to be beam-aware and use the new APIs.
## Programming guide
RFsimulator is attempting to simulate hardware device operation, but there are differences. Like with real hardware,
it is expected that you provide the configured beams in
`set_beams`
function ahead of sample reception. This is due
to the fact that a hardware device will buffer received samples before the driver requests them.
For rfsimulator, as long as the call to
`set_beams`
with timestamp
`n`
is done before
`trx_read`
which is expected
to return sample
`n`
the beam switch command will apply to the received samples.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment