Add 802.11bd NGV support - #85
Open
corrado113 wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
802.11bd support
This patch adds an 802.11bd/NGV vehicular Wi-Fi path to the automotive module.
It is intended for V2X simulations that already use the ns-3 WAVE/OCB stack and
need to compare 802.11p, 802.11bd native NGV transmissions, and 802.11bd
legacy-compatible fallback modes.
What is available
WIFI_STANDARD_80211bdWi-Fi standard entry for the vehicular OCB path.midamble periodicity, NGV-LTF type, LDPC, and
NON_NGV_10repetitions.NON_NGV_10andNON_NGV_20_DUPLICATEfallback modes.metrics consistently.
non-NGV 20 MHz fallback, and primary-only non-NGV 10 MHz fallback.
reuse the same SNR-threshold policy shape for 802.11p OFDM data rates.
The implementation is a network-simulation model integrated into the existing
Yans/WAVE-style automotive stack. It does not attempt to provide a full
waveform-level 802.11bd PHY.
Helper API
Use
VehicularWifiProfilefromns3/vehicular-wifi-helper.hto configurecommon vehicular Wi-Fi profiles:
Useful factory methods include:
VehicularWifiProfile::Ieee80211p()VehicularWifiProfile::Ieee80211bd()VehicularWifiProfile::Ieee80211bd20()VehicularWifiProfile::Ieee80211bdNonNgv10()VehicularWifiProfile::Ieee80211bdNonNgv20Duplicate()For explicit fallback selection, use
VehicularWifiFallbackController:auto mode = VehicularWifiFallbackController::SelectForLinkQuality (policy); VehicularWifiProfile profile = VehicularWifiFallbackController::MakeProfile (mode);For MCS/rate decisions, use
VehicularWifiRateController:The default 802.11bd rate policy selects native NGV MCS 7, 3, or 0 according to
explicit SNR thresholds, then falls back to
NON_NGV_20_DUPLICATEorNON_NGV_10through the fallback controller.Examples
The following examples exercise the new 802.11bd path:
v2v-simple-cam-exchange-80211bdv2v-congestion-80211bdv2v-marginal-snr-80211bdv2v-nss2-comparison-80211bdv2v-runtime-fallback-80211bdv2v-link-quality-fallback-80211bdv2v-observed-fallback-80211bdv2v-trace-observed-fallback-80211bdv2v-rate-control-80211bdv2v-coexistence-80211bd-nrv2xExample runs:
Tests
The
vehicular-wifi-profiletest suite covers the core 802.11bd behavior:The suite includes tests for:
NON_NGV_10repetition behavior;Modeling limitations
The current model uses static NGV PER and midamble/Doppler parameters in
src/automotive/model/SignalInfo/WiFi/ngv/ngv-calibration.h. These values aremodeling assumptions, not a calibrated link-level reference.
The following items are intentionally left for future work: