Hello. I am interested in creating a 5G simulation in which there are some base stations, each with 3 sectors. I would like to assign different carriers to each sector.
I have been trying to change the codes available in the examples available in launcherFiles, but I have not been successful. This happens because I did not see which interface can be used to change the parameters with:
parameters.basestation.antennas.ThreeSector;
Because such data, in the examples triggered by the simulation, receive the parameters using the params object.
the location itself that should receive the change is:
CCs(1).centerFrequencyGHz = 2.14;
CCs(1).bandwidthHz = 10e6;
CCs(1).carrierNo = 1;
BSs(1).antennaList.usedCCs = CCs(1);
However, despite knowing which location should receive the new data, I do not know how to pass the attribute using params.
Could someone indicate what such a change would be like in an example from the scenarios folder?
Thanks in advance for your help.