'SINR and SNR thresholds in Veins

I was trying to find the required SINR and SNR thresholds in order to process the signal in Veins, have searched for that through the .ned and input .xml files but couldn't find them. What are these thresholds and where I should look for them?



Solution 1:[1]

You can find the values calculated for SNIR and SNR at line no.123,124 in /src/veins/modules/phy/Decider80211p.cc

double sinrMin = SignalUtils::getMinSINR(start, end, frame, airFrames, noise);
double snrMin;

Refer online at https://github.com/sommer/veins/blob/c96edc2be25266300f73bd701ee33f4acb662631/src/veins/modules/phy/Decider80211p.cc

https://stackoverflow.com/a/71482303/7215379 gives more details on this.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1