Interference modeling in simulink

54 次查看(过去 30 天)
Fumihiko Sato
Fumihiko Sato 2024-10-23,16:44
回答: Kothuri 2024-11-6,13:58
Hello everyone,
I am seeking your help with interference modeling in Simulink. I found two helpful examples on the MathWorks website: Adjacent and Co-Channel Interference and Interference Modeling. Both examples show that the primary transmitter and the interferer use the same sampling rate before being combined in the Matrix Concatenate block.
However, my case is a bit different, as my primary signal and the interferer have a significant difference in bandwidth. My primary signal has a bandwidth of 600 Hz with DBPSK modulation, while my interferer signal has a bandwidth of approximately 250 kHz.
From my understanding, the primary signal must be upsampled to match the highest sampling rate of the signals being combined, which is about 417 times. I have tried using the Rate Transition block, Upsample, and FIR Interpolator blocks in Simulink for this upsampling.
Unfortunately, the output spectrum now shows significant imaging/aliasing, and the receiver cannot decode the signal anymore (the BER has gone to 100%).
Is this the correct approach for interference modeling? Are there alternative methods I should consider?
Best regards,
Fumihiko Sato

回答(1 个)

Kothuri
Kothuri 2024-11-6,13:58
In interference modelling in Simulink in which the primary signal and the interferer signal are having different bandwidths, you can try the following steps:
  • Before upsampling, apply a low-pass filter to the primary signal to reduce spectral content near the Nyquist frequency. This can help minimize imaging artifacts after upsampling.
  • You can use a bandpass filter around the signal's bandwidth (600 Hz) after upsampling to remove unwanted spectral components.
  • Upsampling by a factor as high as 417 can introduce significant artifacts and is computationally intensive. You can try using multistage interpolation in which you upsample in smaller stages (e.g., by factors of 4, 8, etc., until you reach the required rate). This helps reduce aliasing at each stage, as each upsampling stage can have an anti-aliasing filter.
  • Simulink offers Multirate Filters, which can be configured to apply gradual interpolation and filtering across multiple stages.
  • You can use the “Sample-rate match” block
  • You can use MATLAB’s “resample” function outside Simulink for preprocessing the signals. The “resample” function in MATLAB applies an FIR anti-aliasing filter automatically and may yield better results. Once resampled, you can import the signal back into Simulink for interference modelling.
You can refer the below documentation links for more info on “resample” function and “sample-rate match” block
You can refer the below example for more info

产品


版本

R2024b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by