Doubt on if this integrator out is correct?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have been designing a GMSK modulator and within that I encountered an issue within the integrator side. The transitions are very sharp. I have seen ideal curves to be different from this. This input to this block is bernoulli binary. Can someone just tell me if the scope output is correct or what all chnages to be made to achieve a proper one?
3 Commenti
Risposte (1)
Aravind
il 22 Ott 2024
From your question, it seems you are curious about whether the sharp transitions in the integrator section are typical for a GMSK modulator.
Upon reviewing your model, it appears you have implemented an integrator manually and are using a modulus operation to keep the integrator's output within the range [0,1]. This modulus operation is responsible for the sharp transitions you observe, and it alters the I (real) and Q (imaginary) parts of the modulated signal slightly.
I recommend using the built-in "Discrete Time Integrator" block in Simulink and setting the "Integrator method" parameter to "Accumulation: Forward Euler", instead of your custom integrator. In a GMSK modulator, a modulus operation is unnecessary in the integrator. By switching to the "Discrete Time Integrator" block, the I (real) and Q (imaginary) outputs of the modulated signal should be correct.
For more details on the "Discrete Time Integrator" block, you can refer to the MathWorks documentation: https://www.mathworks.com/help/releases/R2024a/simulink/slref/discretetimeintegrator.html.
I hope this helps clarify your question.
1 Commento
Souparnika
il 22 Ott 2024
Hi, Thank you for your response.
I tried using discrete time integrator, but the modulated output is getting abrupted. So, I tried a different method for integrator avoiding mod block. In the new design, I used an add block, delay block and a saturation block to make it in the range of 2*pi and -2*pi to get the phase information. And then multiplied it with pi*h/Tb, where h is the modulation index, Tb is the bit duration.
I am attaching the model file for the reference. Could you tell me if you find any insight from the new design.
Vedere anche
Categorie
Scopri di più su General Applications in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!