V2Xgithub / WiLabV2Xsim

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

Questions about the meaning of input parameters #14

Closed Hui-yes closed 8 months ago

Hui-yes commented 1 year ago

Good afternoon! As shown in the following figure, image (1)Does this parameter represent the number of retransmissions? (2)The table shows "HARQ".How does this parameter relate to HARQ? I would be grateful if I could get an answer.

wzf-cn commented 1 year ago

Hi Hui-yes!

(1) Yes, the parameter cv2xNumberOfReplicasMax represent the number of retransmissions of CV2X;

(2) In the simulator, "HARQ" is also used to refer to retransmissions. When the retransmission was activated, the transmitter would retransmit the same message (broadcast) without feedback from the receiver. This was named "blind HARQ" in Qualcomm's document.

Furthermore, the two messages would be encoded somehow differently by the transmitter to increase the diversity. And the receiver would use maximum ratio combining (MRC) to jointly determine the received messages:

$$\text{SINR}\text{MRC}=\sum{i=1}^n\text{SINR}_i$$

Where $\text{SINR}_i$ is the $i$-th SINRs of the replicate message received from the same transmitter. Without the MRC, the $i$-th message could only determined by $\text{SINR}_i$

Hui-yes commented 1 year ago

Hello, I have a question. In the actual use of the Internet of vehicles, periodic data and aperiodic data exist at the same time, so how should we set this situation? OR we can only set one of them? I would be grateful if I could get an answer.

VittorioTodisco commented 8 months ago

At the moment in the available version of the simulator you can either simulate periodic or aperiodic traffic by specifying the parameters: "allocationPeriodc", "generationInterval" and "generationIntervalAverageRandomPart".