Simulink Tutorial: Basics, Concepts, and Signal Processing Example

simulink
matlab
signal processing
wimax
simulation

This page covers Simulink basics, a quick guide to using Simulink, data types, Simulink concepts, a signal processing example, and WiMAX simulation using Simulink.

Simulink, a part of MATLAB from MathWorks Inc., is primarily designed for users to develop systems with graphical representations of modules. It’s a GUI-based drag-and-drop programming language. This tutorial focuses on Simulink concepts, library functions, source and sink functions, Simulink functions in signal processing, and implementing the WiMAX physical layer using the Simulink language.

You can start Simulink by typing simulink at the MATLAB command prompt or by clicking the Simulink icon in the menu bar.

>> simulink

Pressing Enter after typing simulink opens the Simulink window. Any Simulink model will have input and output ports for providing and extracting data for display or interfacing. Source and sink blocks are essential for the following reasons:

  1. Sources: These feed data to the model under implementation.
  2. Sinks: These plot the data processed by the model under implementation.
  3. Each model will have input and output ports to connect signals and interface different models.

Simulink supports the following data types:

  • double - Double-precision floating point
  • single - Single-precision floating point
  • int8 - Signed 8-bit integer
  • uint8 - Unsigned 8-bit integer
  • int16 - Signed 16-bit integer
  • uint16 - Unsigned 16-bit integer
  • int32 - Signed 32-bit integer
  • uint32 - Unsigned 32-bit integer

Simulink also supports processing complex signals. There are block sets for Real-Imag to Complex conversion and Complex to Real-Imag conversion functionality.

Data processing in Simulink happens in two ways:

  1. Sample-based Processing: Samples are processed one by one.
  2. Frame-based Processing: Frames are processed one by one.

Note that each frame comprises a sequence of samples forming a single vector. For example, the Sine Wave block allows setting the “Samples per frame.” If set to 100, each frame will have 100 samples, speeding up the simulation. Double lines between two blocks represent frame-based processing.

Let’s build a small system with a source and sink as shown below:

simulink tutorial

You can find the Sine Wave (DSP) block under the Signal Processing Blockset in DSP Sources and the Vector Scope block in DSP Sinks. The AWGN channel can be found in the Communication Blockset.

Save the file as examplesinewave.mdl. Set appropriate parameters to run the developed model easily.

  1. Select the “Simulation” option at the top of the model window.

  2. Click “Configuration Parameters” to open the configuration dialog window.

  3. Set the following parameters and press “OK”:

    • Simulation Time:
      • Start time: 0
      • Stop time: inf
    • Solver Options:
      • Type: Variable step
      • Max. Step Size: Auto
      • Solver: Discrete (No continuous states)

Sine Wave (DSP) Parameters

  1. Double-click the Sine Wave icon to open the configuration window and set the parameters.
  2. Set the following:
    • Amplitude to 10.
    • Frequency to 100.
    • Samples per frame to 1000.
  3. Click “OK.”

AWGN Parameters

  1. Double-click the AWGN channel icon to open the configuration window and set the parameters.
  2. Set the following:
    • Initial seed: 70
    • Mode: Signal to Noise Ratio SNR (dB)
    • SNR (dB): 25
    • Input signal power in watts: 1

You can expand the Signal Processing Blockset to view the supported library functions in Simulink. The following are available in the Simulink signal processing library:

  • Estimation modules
  • Filtering modules
  • Math functions
  • Signal management and signal processing modules
  • Signal processing sources and sinks
  • Transform functions (FFT)

Implementation of WiMAX Physical Layer using Simulink/MATLAB

wimax simulation using simulink

AWGN Impairment Simulation in MATLAB

AWGN Impairment Simulation in MATLAB

MATLAB code demonstrating Additive White Gaussian Noise (AWGN) impairment and its effect on constellation diagrams with BPSK, QPSK, 16QAM, and 64QAM modulation.

awgn
matlab
impairment