The FDATool block defines the filter order and coefficients. The HDL blocks implement a filter. The Tools library in the HDL Blockset contains the FDATool block.
A simple Model Composer model, shown in the following figure, illustrates a standard FIR filter design using the FDATool and digital FIR filter block.
The design uses two sine wave sources. It adds them together and passes them separately through two low-pass filters.
- You can implement the first filter using the AMD HDL blockset. It is a digital low pass filter implemented using the Digital FIR filter block.
- The second filter is a reference filter. This is a low pass filter. You can implement this using a Direct-form FIR structure.
The frequency response of both filters visualized in Spectrum Analyzer block.
You can use the AMD version of the FDAtool to define the coefficients of the low-pass filter to eliminate high-frequency noise. The filter configuration parameters like Response Type, Filter Order, Frequency Specification, and Magnitude Specification can be modified from the Properties Editor of the FDATool. This is shown in the following figure.
The Design Filter option at the bottom of the tool window allows you to find out the filter order and observe the Magnitude Response. You can also view the Phase Response, Impulse Response, Coefficients, and more by selecting the appropriate icon at the top-right of the window. You can display the filter coefficients in the MATLABĀ® workspace by typing the following:
>> xlfda_numerator('FDATool')
The following functions help you find the maximum and minimum coefficient values to adequately specify the coefficient width and binary point:
>> max(xlfda_numerator('FDATool'))
>> min(xlfda_numerator('FDATool'))
Now, you can associate the filter parameters of the FDATool instance with the Digital FIR filter instance.
The AMD Filter response can be viewed and compared with the SimulinkĀ® response using the Spectrum Analyzer.
For a complete example along with steps to use the FDATool, refer to the Vitis Model Composer Tutorials.