Z-Parameters Amplifier - Model nonlinear amplifier using Z-parameters

Library

Amplifiers sublibrary of the Physical library

Description

The Z-Parameters Amplifier block models the nonlinear amplifier described in the block dialog box, in terms of its frequency-dependent Z-parameters, the frequencies of the Z-parameters, noise data, and nonlinearity data

Network Parameters

In the Z-Parameters field of the block dialog box, provide the Z-parameters for each of M frequencies as a 2-by-2-by-M array. In the Frequency field, specify the frequencies for the Z-parameters as an M-element vector. The elements of the frequencies vector must be in the same order as the Z-parameters. All frequencies must be positive. For example, the following figure shows the correspondence between the Z-parameters array and the vector of frequencies.

The Z-Parameters Amplifier block uses the RF Toolbox™ z2s function to convert the Z-parameters to S-parameters, and then interpolates the resulting S-parameters to determine their values at the modeling frequencies. The modeling frequencies are determined by the Output Port block. See RF Blockset™ Algorithms for more details.

Nonlinearity

You can enter either OIP3 or IIP3 data as a scalar value for nonlinearity in the Z-Parameters Amplifier block dialog box. You can also specify the 1 dB gain compression power and the output saturation power in the Z-Parameters Amplifier block dialog box.

If you do not specify the 1 dB gain compression power, the block ignores the output saturation power specification. The block computes and adds the nonlinearity from the OIP3 or IIP3 value by:

  1. Converting the specified value into IIP3 (if needed)

  2. Using the third-order input intercept point value in dBm to compute the factor, f, that scales the input signal before the Z-Parameters Amplifier block applies the nonlinearity:

  3. Computing the scaled input signal by multiplying the amplifier input signal by f.

  4. Limiting the scaled input signal to a maximum value of 1.

  5. Applying an AM/AM conversion to the amplifier gain, according to the following cubic polynomial equation:

    where u is the magnitude of the scaled input signal, which is a unitless normalized input voltage.

If you specify the 1 dB gain compression power, the block computes and adds the nonlinearity to the input signal by:

  1. Converting the specified third-order intercept value into OIP3 (if needed).

  2. Converting the gain, OIP3, and 1dB compression data to linear, unitless values, normalized to 1 volt and the reference impedance Z0 (which is specified in the block dialog box):

    where

  3. Computing the coefficients of the polynomial, , that determines the AM/AM conversion for the input signal s:

  4. Computing the input power at which the output saturates, if it is not specified, according to the following function:

    This value is the input power above which the block replaces the AM/AM conversion model with a constant output power value Asat.

  5. Applying the AM/AM conversion to the input signal

Active Noise

You can specify active block noise in one of the following ways:

If you specify block noise as spot noise data, the block uses the data to calculate noise figure. The block first interpolates the noise data for the modeling frequencies, using the specified Interpolation method. It then calculates the noise figure using the resulting values.

Dialog Box

Main Tab

Z-Parameters

Z-parameters for a nonlinear amplifier in a 2-by-2-by-M array. M is the number of Z-parameters.

Frequency (Hz)

Frequencies of the Z-parameters as an M-element vector. The order of the frequencies must correspond to the order of the Z-parameters in Z-Parameters. All frequencies must be positive.

Interpolation method

The method used to interpolate the network parameters. The following table lists the available methods describes each one.

MethodDescription
Linear (default)Linear interpolation
SplineCubic spline interpolation
CubicPiecewise cubic Hermite interpolation

Noise Data Tab

Noise type

Type of noise data. The value can be Noise figure, Spot noise data, Noise factor, or Noise temperature.

Noise figure (dB)

Scalar ratio, in decibels, of the available signal-to-noise power ratio at the input to the available signal-to-noise power ratio at the output, (Si/Ni)/(So/No). This parameter is enabled if Noise type is set to Noise figure.

Minimum noise figure (dB)

Minimum scalar ratio of the available signal-to-noise power ratio at the input to the available signal-to-noise power ratio at the output, (Si/Ni)/(So/No). This parameter is enabled if Noise type is set to Spot noise data.

Optimal reflection coefficient

Optimal amplifier source impedance. This parameter is enabled if Noise type is set to Spot noise data.

Equivalent normalized resistance

Resistance normalized to the resistance used to take the noise measurement. This parameter is enabled if Noise type is set to Spot noise data.

Noise factor

Scalar ratio of the available signal-to-noise power ratio at the input to the available signal-to-noise power ratio at the output, (Si/Ni)/(So/No). This parameter is enabled if Noise type is set to Noise factor.

Noise temperature (K)

Equivalent temperature that produces the same amount of noise power as the amplifier. This parameter is enabled if Noise type is set to Noise temperature.

Nonlinearity Data Tab

IP3 type

Type of third-order intercept point. The value can be IIP3 (input intercept point) or OIP3 (output intercept point).

IP3 (dBm)

Scalar power value of third-order intercept point. Use the default value, Inf, if the IP3 value is unknown.

1 dB gain compression power (dBm)

Scalar output power value at which gain has decreased by 1 dB. Use the default value, Inf, if the 1 dB compression point is unknown.

Output saturation power (dBm)

Scalar output power value the amplifier produces when fully saturated. The value is only used if 1 dB gain compression power (dBm) is specified. Use the default value, Inf, if saturation power is unknown.

Visualization Tab

For information about plotting the amplifier parameters, see Plotting Model Data.

Examples

Plotting Parameters with the Z-Parameters Amplifier Block

The following example specifies Z-parameters [12.60+3.80i, 3.77-0.17i; 80.02+54.68i, 26.02+3.84i] and [15.12+3.55i, 4.14-0.92i; 92.10+23.67i, 27.59+2.71i] at frequencies 2.0 GHz and 2.1 GHz respectively. It uses the MATLAB® cat function to create the 2-by-2-by-2 Z-parameters array.

cat(3,...
   [12.60+3.80i, 3.77-0.17i; 80.02+54.68i, 26.02+3.84i],...
   [15.12+3.55i, 4.14-0.92i; 92.10+23.67i, 27.59+2.71i])
  1. Type the following command at the MATLAB prompt to create a variable called zparams that stores the values of the Z-parameters.

    zparams = cat(3,...
     [12.60+3.80i, 3.77-0.17i; 80.02+54.68i, 26.02+3.84i],...
     [15.12+3.55i, 4.14-0.92i; 92.10+23.67i, 27.59+2.71i])
  2. Set the Z-Parameters Amplifier block parameters on the Main tab as follows:

    Click Apply. This action applies the specified settings.

  3. Set the Z-Parameters Amplifier block parameters on the Visualization tab as follows:

    Click Plot. This action creates an X-Y Plane plot of the S11 parameters in the frequency range 1.9 to 2.2 GHz.

See Also

General Amplifier, Output Port, S-Parameters Amplifier, Y-Parameters Amplifier

z2s (RF Toolbox)

interp1 (MATLAB)

  


 © 1984-2008- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS