Main Content

measuredFilter

RF filter circuit model extraction

Since R2024a

    Description

    Use measuredFilter to create an object that accepts a measured s-parameter data file and extracts the Coupling Matrix and other properties of the filter as analysis results.

    Creation

    Description

    example

    mfilter = measuredFilter creates a default extracted filter model object with a filter order of 4..

    example

    mfilter = measuredFilter(name=value) sets Properties using one or more name-value arguments. For example, measuredFilter(FilterOrder = 4)

    Properties

    expand all

    2-port s-parameters specified as a sparameters object. It is recommended that the input data comes from a test setup using a calibrated 2-port network analyzer with calibration extended to the test cables. The s-parameter data must include the filter passband response along with sufficient out-of-band rejection for the extraction process to occur.

    Example: sparameters('Filter_6A.s2p')

    Data Types: sparameters object
    Complex Number Support: Yes

    Filter order of the filter under test specified as a real finite positive integer between [1, 14].

    Example: obj = measuredFilter(FilterOder = 5)

    Data Types: double

    Center frequency of the filter under test, specified as a scalar in Hz

    Example: obj = measuredFilter(CenterFrequency = 850e6)

    Data Types: double

    Bandwidth of the filter under test. specified as a scalar in Hz. measuredFilter uses a narrow-band approximation algorithm where:

    • The absolute upper fractional bandwidth limit should be set at 30%

    • It is preferred to limit the fractional bandwidth to less than 5%

    Example: obj = measuredFilter(BandWidth = 20e6)

    Data Types: double

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    This is a read-only property (analysis result).

    Object Functions

    residueExtract lowpass admittance residues and poles of a measuredFilter object
    transversalMatCalculate the transversal matrix of a measuredFilter object
    canonicalCouplingMatPerform canonical matrix rotation
    optimizeIsospectral optimization of a measuredFilter object
    sparametersCalculate S-parameters for RF PCB objects
    qualityfactorCalculates the unloaded quality factor of a measuredFilter object

    Examples

    collapse all

    This example shows how to input a measured data file and extract its s-parameters

    S_measured = sparameters(fullfile(matlabroot,'toolbox','rfpcb',...
    'rfpcb','rfpcbfilterfiles','FILTER_8.s2p'));
    rfplot(S_measured); hold on
    obj = measuredFilter(...
    Sparameters=S_measured,BandWidth=9.601e6,...
    CenterFrequency=2114.6528e6,FilterOrder=8);
    S_calc = sparameters(obj);
    rfplot(S_calc,'--')

    Version History

    Introduced in R2024a