No history yet

Port Fundamentals and Z-Parameters

The Black Box Approach

In circuit analysis, we often encounter complex networks of components. Instead of analyzing every resistor, capacitor, and inductor inside, we can treat the entire network as a single unit with a set of terminals for input and output. This simplifies things greatly.

A two-port network is a common way to model these systems. It's an electrical network with two pairs of terminals, forming two ports: an input port and an output port. We treat what's inside the network as a "black box." We don't need to know its internal structure, only how the voltages and currents at the ports relate to each other.

Lesson image

We define four key variables:

  • V1V_1: Voltage at the input port (Port 1)
  • I1I_1: Current entering the input port
  • V2V_2: Voltage at the output port (Port 2)
  • I2I_2: Current entering the output port

By convention, currents I1I_1 and I2I_2 are defined as flowing into the network. The goal is to find a set of equations that describe the behavior of this black box using only these four external variables.

Defining Z-Parameters

One of the most direct ways to characterize a two-port network is by expressing the port voltages (V1V_1, V2V_2) as functions of the port currents (I1I_1, I2I_2). This relationship is defined by a set of constants called impedance parameters, or Z-parameters.

V1=z11I1+z12I2V2=z21I1+z22I2\begin{aligned} \\ V_1 &= z_{11}I_1 + z_{12}I_2 \\ V_2 &= z_{21}I_1 + z_{22}I_2 \\ \end{aligned}

These linear equations show that the voltage at each port is a combination of the effects of the currents at both ports. The zz terms tell us the strength of these relationships. We can also write this relationship more compactly using matrix notation.

[V1V2]=[z11z12z21z22][I1I2]\begin{bmatrix} V_1 \\ V_2 \end{bmatrix} = \begin{bmatrix} z_{11} & z_{12} \\ z_{21} & z_{22} \end{bmatrix} \begin{bmatrix} I_1 \\ I_2 \end{bmatrix}

Finding the Parameters

To find the value of each Z-parameter, we can cleverly simplify the defining equations by setting one of the currents to zero. Setting a current to zero is the same as creating an open circuit at that port.

Let's find z11z_{11} and z21z_{21} by making the output port an open circuit (I2=0I_2 = 0).

When I2=0I_2 = 0, our two main equations become:

V1=z11I1+z12(0)    V1=z11I1V_1 = z_{11}I_1 + z_{12}(0) \implies V_1 = z_{11}I_1

V2=z21I1+z22(0)    V2=z21I1V_2 = z_{21}I_1 + z_{22}(0) \implies V_2 = z_{21}I_1

From here, we can solve for z11z_{11} and z21z_{21}.

z11=V1I1I2=0z_{11} = \left. \frac{V_1}{I_1} \right|_{I_2=0}
z21=V2I1I2=0z_{21} = \left. \frac{V_2}{I_1} \right|_{I_2=0}

Now, let's find z12z_{12} and z22z_{22} by making the input port an open circuit (I1=0I_1 = 0).

This time, our equations simplify to:

V1=z11(0)+z12I2    V1=z12I2V_1 = z_{11}(0) + z_{12}I_2 \implies V_1 = z_{12}I_2

V2=z21(0)+z22I2    V2=z22I2V_2 = z_{21}(0) + z_{22}I_2 \implies V_2 = z_{22}I_2

Solving gives us the remaining parameters.

z12=V1I2I1=0z_{12} = \left. \frac{V_1}{I_2} \right|_{I_1=0}
z22=V2I2I1=0z_{22} = \left. \frac{V_2}{I_2} \right|_{I_1=0}

By making two simple measurements (one with the output open, one with the input open), we can fully characterize the linear behavior of our black box.

The T-Equivalent Circuit

The Z-parameters aren't just abstract numbers; they can be used to build an equivalent circuit that behaves identically to our original black box. The most common model for Z-parameters is the T-equivalent circuit.

Let's revisit the Z-parameter equations. We can interpret them as Kirchhoff's Voltage Law (KVL) equations for two loops.

V1=z11I1+z12I2V2=z21I1+z22I2\begin{aligned} \\ V_1 &= z_{11}I_1 + z_{12}I_2 \\ V_2 &= z_{21}I_1 + z_{22}I_2 \\ \end{aligned}

The terms z12I2z_{12}I_2 and z21I1z_{21}I_1 represent dependent voltage sources. They show how the current in one loop creates a voltage in the other. We can build a circuit that directly represents these equations.

This model is valid for any linear two-port network. The components in the T-circuit are expressed in terms of the Z-parameters. The dependent voltage source (z21z12)I1(z_{21} - z_{12})I_1 accounts for any non-symmetrical behavior between the input and output.

Reciprocity and Symmetry

The values of the Z-parameters can tell us important things about the internal nature of the black box.

Reciprocity A network is reciprocal if the relationship between the voltage at one port and the current at the other is the same regardless of which is the input and which is the output. In other words, if you swap the voltage source and the ammeter, you get the same reading. For passive networks made only of resistors, capacitors, and inductors, this is always true. This property is reflected in the Z-parameters.

z12=z21z_{12} = z_{21}

When a network is reciprocal, the dependent voltage source in the T-equivalent circuit disappears, since (z21z12)I1=0(z_{21} - z_{12})I_1 = 0. The model simplifies to just three impedance elements.

Symmetry A network is symmetrical if its input and output ports can be interchanged without changing the electrical behavior. This means the impedance looking into Port 1 (with Port 2 open) is the same as looking into Port 2 (with Port 1 open).

z11=z22z_{11} = z_{22}

If a network is both reciprocal and symmetrical, then z12=z21z_{12} = z_{21} and z11=z22z_{11} = z_{22}. This greatly simplifies analysis.

Time to test your understanding of Z-parameters.

Quiz Questions 1/5

What do the Z-parameters of a two-port network fundamentally describe?

Quiz Questions 2/5

To experimentally determine the value of the parameter z21z_{21}, what condition must be created at the ports?

By defining, measuring, and modeling with Z-parameters, we can analyze complex circuits without needing to know every detail of their construction. This black box approach is a powerful tool in electrical engineering.