V2Xgithub / WiLabV2Xsim

V2X simulator
GNU General Public License v3.0
79 stars 32 forks source link

Consult #5

Closed LRayer closed 2 years ago

LRayer commented 2 years ago

How the code calls other resource allocation Algorithms. For example,BRreassignmentRandom

LRayer commented 2 years ago

Or input something on the command line to call other algorithms

wzf-cn commented 2 years ago

You could change the allocation algorithms by setting the parameter "BRAlgorithm" with integer number in the command line or config file. The mapping between the Int num. and the algorithm could be found in "initiateBRAssignmentAlgorithm.m".

Another related file is "mainCV2XttiEnds.m"

LRayer commented 2 years ago

Thank you very much. I want to know more about the simulator. Can I add your WeChat? My WeChat is 13849925260. And my qq is 2530674808.

LRayer commented 2 years ago

image image There are several mistakes I want to ask you in more detail

wzf-cn commented 2 years ago

Some BRAlgorithms were not been updated at the same pace as the main simulator because of lots of reasons, such as we are not focusing on that algorithm at the moment, sorry about that.

Of course, any contribution to improve this simulator is very welcome!

VittorioTodisco commented 2 years ago

BRAlgorithm = 101 refers to Random Resource allocation for LTE-V2X and NR-V2X, in that case, the sensing is de-activated as each vehicle chooses a resource randomly for each transmission, regardless of the status of the other resources.

Since the sensing is not active, the parameters regarding the sensing must not be specified or simply inactive. The error you are getting is due to the measurement of the CBR which cannot be calculated as the sensing is not active. Therefore the parameter 'CBRactive' must be set to false.

LRayer commented 2 years ago

BRAlgorithm = 101是指LTE-V2X和NR-V2X的随机资源分配,在这种情况下,当每辆车为每个传输随机选择一个资源时,无论其他资源的状态如何,传感都会被停用。

由于传感未激活,因此不得指定有关传感的参数或只是不激活。您获得的误差是由于CBR的测量引起的,由于传感未激活,因此无法计算。因此,参数“CBR 活动”必须设置为假。

Thank you for your reply