2
$\begingroup$

I'm trying to figure out how to simulate eye diagrams for communications systems using Python. I'm not sure I have the theory down completely, though. From what I could figure out using some old LabWindows C code, the process is something like this:

  1. Take an input pattern and convert it into a discrete signal with the same time step between points as the system's step data
  2. Perform an FFT on the input pattern and convert the system's step data to an S-parameter
  3. Multiply the transformed pattern and the S-parameter pointwise (equivalent to convolution in the time domain)
  4. Take the inverse FFT of product.

This is essentially all the old code seems to be doing, but unfortunately at the key steps there are calls to LabWindows functions that have poor online documentation, and I don't have access to the development libraries myself.

Any help or knowledge of eye diagram theory would be a tremendous help.

$\endgroup$
1
  • $\begingroup$ It seems to me that this should be migrated to Stack Overflow site. $\endgroup$ Commented Oct 3, 2011 at 21:22

2 Answers 2

1
$\begingroup$

I needed to ensure that the pattern itself was long enough to get the correct $\Delta f$ in the frequency domain, since $\Delta f = \frac{1}{N}$ where $N$ is the number of points in the pattern signal. If this $\Delta f$ does not match that of the transformed data, then there is no real way to combine the two.

$\endgroup$
0
$\begingroup$

I think the sequence of steps should be:

  1. convert input-data into analogue signal (modulation)

  2. apply distortion and noise to simulate the effects of the channel (e.g. using convolution with impulse response)

  3. demodulate the analogue signal into the out-data

Then you plot input-data against out-data.

$\endgroup$
3
  • $\begingroup$ My problem is that while there are plenty of software packages out there that can do the simulation, I need to integrate it into an automated test system. I can't seem to find any literature online detailing how to actually do this simulation. I was hoping that there would be someone who had worked with this sort of metric before and could aid me in my development. $\endgroup$
    – bheklilr
    Commented Aug 3, 2011 at 13:31
  • $\begingroup$ Do you have a coder and decoder? A long time ago I looked at linmodem, which is a software modem implementation for linux by the great Fabrice Bellard linmodems.org. $\endgroup$
    – whoplisp
    Commented Aug 3, 2011 at 13:47
  • $\begingroup$ I found the solution. I was not making my pattern long enough to get the frequency content necessary from the FFT. $\endgroup$
    – bheklilr
    Commented Aug 3, 2011 at 14:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.